fixed report console code..

This commit is contained in:
Cüneyt Şentürk 2021-06-15 11:03:15 +03:00
parent f9e6edcf6d
commit c005e21738

View File

@ -5,8 +5,6 @@ namespace App\Console\Commands;
use App\Models\Common\Company; use App\Models\Common\Company;
use App\Models\Common\Report; use App\Models\Common\Report;
use App\Utilities\Reports as Utility; use App\Utilities\Reports as Utility;
use App\Utilities\Overrider;
use Date;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Cache;
@ -45,7 +43,7 @@ class ReportReminder extends Command
continue; continue;
} }
$this->info('Sending invoice reminders for ' . $company->name . ' company.'); $this->info('Calculate report reminders for ' . $company->name . ' company.');
// Set company // Set company
$company->makeCurrent(); $company->makeCurrent();
@ -61,10 +59,6 @@ class ReportReminder extends Command
$reports = Report::orderBy('name')->get(); $reports = Report::orderBy('name')->get();
foreach ($reports as $report) { foreach ($reports as $report) {
if (!Utility::canShow($report->class)) {
continue;
}
$class = Utility::getClassInstance($report, false); $class = Utility::getClassInstance($report, false);
if (empty($class)) { if (empty($class)) {