fixed import export
This commit is contained in:
@@ -21,8 +21,8 @@ class Items implements WithMultipleSheets
|
||||
public function sheets(): array
|
||||
{
|
||||
return [
|
||||
'items' => new Base($this->ids),
|
||||
'item_taxes' => new ItemTaxes($this->ids),
|
||||
new Base($this->ids),
|
||||
new ItemTaxes($this->ids),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user