diff --git a/app/Traits/GenerateMigrationResources.php b/app/Traits/GenerateMigrationResources.php index e9d0191d22..72fbb220f5 100644 --- a/app/Traits/GenerateMigrationResources.php +++ b/app/Traits/GenerateMigrationResources.php @@ -364,6 +364,7 @@ trait GenerateMigrationResources $export_invoices = Invoice::where('account_id', $this->account->id) ->where('amount', '>=', '0') ->where('invoice_type_id', '=', INVOICE_TYPE_STANDARD) + ->where('is_recurring', false) ->withTrashed() ->get();