1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00

Fix for auto-billing delayed invoices

This commit is contained in:
Hillel Coren 2016-07-31 21:27:46 +03:00
parent 5b2f8fd4d4
commit 7ce829ccf6

View File

@ -95,7 +95,7 @@ class SendRecurringInvoices extends Command
}
if ($invoice->getAutoBillEnabled() && $invoice->client->autoBillLater()) {
$this->info('Processing Invoice '.$invoice->id.' - Should bill '.($billNow ? 'YES' : 'NO'));
$this->info('Processing Autobill-delayed Invoice ' . $invoice->id);
$this->paymentService->autoBillInvoice($invoice);
}
}