From e4058f9203159b81a271de9ba99771acf8dbdb6c Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 31 Jul 2016 21:27:11 +0300 Subject: [PATCH] Fix for auto-billing delayed invoices --- app/Console/Commands/SendRecurringInvoices.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SendRecurringInvoices.php b/app/Console/Commands/SendRecurringInvoices.php index 38f8b1afdc9d..89e08bf582ba 100644 --- a/app/Console/Commands/SendRecurringInvoices.php +++ b/app/Console/Commands/SendRecurringInvoices.php @@ -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); } }