mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
Fix for creating plan renewal invoices
This commit is contained in:
parent
257a5688c7
commit
0a1849e126
@ -50,7 +50,7 @@ class SendRenewalInvoices extends Command
|
||||
$this->info(date('Y-m-d').' Running SendRenewalInvoices...');
|
||||
|
||||
// get all accounts with plans expiring in 10 days
|
||||
$companies = Company::whereRaw('datediff(plan_expires, curdate()) = 10')
|
||||
$companies = Company::whereRaw("datediff(plan_expires, curdate()) = 10 and (plan = 'pro' or plan = 'enterprise')")
|
||||
->orderBy('id')
|
||||
->get();
|
||||
$this->info(count($companies).' companies found renewing in 10 days');
|
||||
|
Loading…
Reference in New Issue
Block a user