1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Fixes for migrations - autobilling

This commit is contained in:
David Bomba 2022-02-03 11:12:11 +11:00
parent a369e017c9
commit 1979eccadd

View File

@ -799,8 +799,8 @@ trait GenerateMigrationResources
'due_date_days' => $this->transformDueDate($invoice),
'remaining_cycles' => $this->getRemainingCycles($invoice),
'invitations' => $this->getResourceInvitations($invoice->invitations, 'recurring_invoice_id'),
'auto_bill_enabled' => $this->calcAutoBillEnabled($invoice),
'auto_bill' => $this->calcAutoBill($invoice),
'auto_bill_enabled' => $this->calcAutoBill($invoice),
'auto_bill' => $this->calcAutoBillEnabled($invoice),
];
}