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 Bills implements WithMultipleSheets
public function sheets(): array
{
return [
'bills' => new Base($this->ids),
'bill_items' => new BillItems($this->ids),
'bill_item_taxes' => new BillItemTaxes($this->ids),
'bill_histories' => new BillHistories($this->ids),
'bill_totals' => new BillTotals($this->ids),
'bill_transactions' => new BillTransactions($this->ids),
new Base($this->ids),
new BillItems($this->ids),
new BillItemTaxes($this->ids),
new BillHistories($this->ids),
new BillTotals($this->ids),
new BillTransactions($this->ids),
];
}
}