fixed import export

This commit is contained in:
Denis Duliçi
2021-05-23 02:27:44 +03:00
parent 35e29c2140
commit 21e14f1191
12 changed files with 112 additions and 34 deletions

View File

@@ -25,12 +25,12 @@ class Invoices implements WithMultipleSheets
public function sheets(): array
{
return [
'invoices' => new Base($this->ids),
'invoice_items' => new InvoiceItems($this->ids),
'invoice_item_taxes' => new InvoiceItemTaxes($this->ids),
'invoice_histories' => new InvoiceHistories($this->ids),
'invoice_totals' => new InvoiceTotals($this->ids),
'invoice_transactions' => new InvoiceTransactions($this->ids),
new Base($this->ids),
new InvoiceItems($this->ids),
new InvoiceItemTaxes($this->ids),
new InvoiceHistories($this->ids),
new InvoiceTotals($this->ids),
new InvoiceTransactions($this->ids),
];
}
}