mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Clarify cron output
This commit is contained in:
parent
8e37d063fa
commit
9cf72b5f0c
@ -116,8 +116,10 @@ class SendRecurringInvoices extends Command
|
||||
try {
|
||||
$invoice = $this->invoiceRepo->createRecurringInvoice($recurInvoice);
|
||||
if ($invoice && ! $invoice->isPaid()) {
|
||||
$this->info('Sending Invoice');
|
||||
$this->info('Not billed - Sending Invoice');
|
||||
$this->mailer->sendInvoice($invoice);
|
||||
} elseif ($invoice) {
|
||||
$this->info('Successfully billed invoice');
|
||||
}
|
||||
} catch (Exception $exception) {
|
||||
$this->info('Error: ' . $exception->getMessage());
|
||||
|
Loading…
x
Reference in New Issue
Block a user