91 lines
2.3 KiB
PHP
91 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Events\Document\DocumentReminded;
|
|
use App\Models\Common\Company;
|
|
use App\Models\Document\Document;
|
|
use App\Notifications\Sale\Invoice as Notification;
|
|
use App\Utilities\Overrider;
|
|
use Date;
|
|
use Illuminate\Console\Command;
|
|
|
|
class InvoiceReminder extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'reminder:invoice';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Send reminders for invoices';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
// Disable model cache
|
|
config(['laravel-model-caching.enabled' => false]);
|
|
|
|
// Get all companies
|
|
$companies = Company::enabled()->withCount('invoices')->cursor();
|
|
|
|
foreach ($companies as $company) {
|
|
// Has company invoices
|
|
if (!$company->invoices_count) {
|
|
continue;
|
|
}
|
|
|
|
$this->info('Sending invoice reminders for ' . $company->name . ' company.');
|
|
|
|
// Set company
|
|
$company->makeCurrent();
|
|
|
|
// Don't send reminders if disabled
|
|
if (!setting('schedule.send_invoice_reminder')) {
|
|
$this->info('Invoice reminders disabled by ' . $company->name . '.');
|
|
|
|
continue;
|
|
}
|
|
|
|
$days = explode(',', setting('schedule.invoice_days'));
|
|
|
|
foreach ($days as $day) {
|
|
$day = (int) trim($day);
|
|
|
|
$this->remind($day);
|
|
}
|
|
}
|
|
|
|
Company::forgetCurrent();
|
|
}
|
|
|
|
protected function remind($day)
|
|
{
|
|
// Get due date
|
|
$date = Date::today()->subDays($day)->toDateString();
|
|
|
|
// Get upcoming invoices
|
|
$invoices = Document::invoice()->with('contact')->accrued()->notPaid()->due($date)->cursor();
|
|
|
|
foreach ($invoices as $invoice) {
|
|
try {
|
|
event(new DocumentReminded($invoice, Notification::class));
|
|
} catch (\Exception | \Throwable | \Swift_RfcComplianceException | \Illuminate\Database\QueryException $e) {
|
|
$this->error($e->getMessage());
|
|
|
|
logger('Invoice reminder:: ' . $e->getMessage());
|
|
}
|
|
}
|
|
}
|
|
}
|