mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
109 lines
3.6 KiB
PHP
109 lines
3.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://opensource.org/licenses/AAL
|
||
|
*/
|
||
|
|
||
|
namespace App\Jobs\Cron;
|
||
|
|
||
|
use App\Jobs\RecurringInvoice\SendRecurring;
|
||
|
use App\Libraries\MultiDB;
|
||
|
use App\Models\Invoice;
|
||
|
use App\Models\RecurringInvoice;
|
||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||
|
use Illuminate\Support\Carbon;
|
||
|
|
||
|
class AutoBillCron
|
||
|
{
|
||
|
use Dispatchable;
|
||
|
|
||
|
public $tries = 1;
|
||
|
|
||
|
/**
|
||
|
* Create a new job instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Execute the job.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function handle() : void
|
||
|
{
|
||
|
set_time_limit(0);
|
||
|
|
||
|
/* Get all invoices where the send date is less than NOW + 30 minutes() */
|
||
|
nlog("Performing Autobilling ".Carbon::now()->format('Y-m-d h:i:s'));
|
||
|
|
||
|
if (! config('ninja.db.multi_db_enabled')) {
|
||
|
|
||
|
$auto_bill_partial_invoices = Invoice::whereDate('partial_due_date', '<=', now())
|
||
|
->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
|
||
|
->where('auto_bill_enabled', true)
|
||
|
->where('balance', '>', 0)
|
||
|
->with('company')
|
||
|
->cursor();
|
||
|
|
||
|
$auto_bill_partial_invoices->each(function ($invoice){
|
||
|
$this->runAutoBiller($invoice);
|
||
|
});
|
||
|
|
||
|
$auto_bill_invoices = Invoice::whereDate('due_date', '<=', now())
|
||
|
->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
|
||
|
->where('auto_bill_enabled', true)
|
||
|
->where('balance', '>', 0)
|
||
|
->with('company')
|
||
|
->cursor();
|
||
|
|
||
|
$auto_bill_invoices->each(function ($invoice){
|
||
|
$this->runAutoBiller($invoice);
|
||
|
});
|
||
|
|
||
|
|
||
|
} else {
|
||
|
//multiDB environment, need to
|
||
|
foreach (MultiDB::$dbs as $db) {
|
||
|
MultiDB::setDB($db);
|
||
|
|
||
|
$auto_bill_partial_invoices = Invoice::whereDate('partial_due_date', '<=', now())
|
||
|
->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
|
||
|
->where('auto_bill_enabled', true)
|
||
|
->where('balance', '>', 0)
|
||
|
->with('company')
|
||
|
->cursor();
|
||
|
|
||
|
$auto_bill_partial_invoices->each(function ($invoice){
|
||
|
$this->runAutoBiller($invoice);
|
||
|
});
|
||
|
|
||
|
$auto_bill_invoices = Invoice::whereDate('due_date', '<=', now())
|
||
|
->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
|
||
|
->where('auto_bill_enabled', true)
|
||
|
->where('balance', '>', 0)
|
||
|
->with('company')
|
||
|
->cursor();
|
||
|
|
||
|
$auto_bill_invoices->each(function ($invoice){
|
||
|
$this->runAutoBiller($invoice);
|
||
|
});
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private function runAutoBiller(Invoice $invoice)
|
||
|
{
|
||
|
$invoice->service()->autoBill()->save();
|
||
|
}
|
||
|
}
|