1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Fixes for auto billing

This commit is contained in:
David Bomba 2021-09-02 09:26:09 +10:00
parent f473dbd0e2
commit 64d0d34a27
2 changed files with 9 additions and 2 deletions

View File

@ -69,6 +69,7 @@ class AutoBillCron
} else {
//multiDB environment, need to
foreach (MultiDB::$dbs as $db) {
MultiDB::setDB($db);
$auto_bill_partial_invoices = Invoice::whereDate('partial_due_date', '<=', now())
@ -96,6 +97,12 @@ class AutoBillCron
private function runAutoBiller(Invoice $invoice)
{
info("Firing autobill for {$invoice->company_id} - {$invoice->number}");
$invoice->service()->autoBill()->save();
try{
$invoice->service()->autoBill()->save();
}
catch(\Exception $e) {
nlog("Failed to capture payment for {$invoice->company_id} - {$invoice->number} ->" . $e->getMessage());
}
}
}

View File

@ -129,7 +129,7 @@ class SendRecurring implements ShouldQueue
}
});
if ($invoice->client->getSetting('auto_bill_date') == 'on_send_date' && $this->recurring_invoice->auto_bill_enabled) {
if ($invoice->client->getSetting('auto_bill_date') == 'on_send_date' && $invoice->auto_bill_enabled) {
nlog("attempting to autobill {$invoice->number}");
$invoice->service()->autoBill()->save();
}