mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
minor fix for recurring numbers
This commit is contained in:
parent
2384e3d3e8
commit
5ecd4da153
@ -364,6 +364,7 @@ trait GenerateMigrationResources
|
|||||||
$export_invoices = Invoice::where('account_id', $this->account->id)
|
$export_invoices = Invoice::where('account_id', $this->account->id)
|
||||||
->where('amount', '>=', '0')
|
->where('amount', '>=', '0')
|
||||||
->where('invoice_type_id', '=', INVOICE_TYPE_STANDARD)
|
->where('invoice_type_id', '=', INVOICE_TYPE_STANDARD)
|
||||||
|
->where('is_recurring', false)
|
||||||
->withTrashed()
|
->withTrashed()
|
||||||
->get();
|
->get();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user