added import and export recurring invoices
This commit is contained in:
36
app/Exports/Sales/Invoices/Invoices.php
Normal file
36
app/Exports/Sales/Invoices/Invoices.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Sales\Invoices;
|
||||
|
||||
use App\Exports\Sales\Invoices\Sheets\Invoices as Base;
|
||||
use App\Exports\Sales\Invoices\Sheets\InvoiceItems;
|
||||
use App\Exports\Sales\Invoices\Sheets\InvoiceItemTaxes;
|
||||
use App\Exports\Sales\Invoices\Sheets\InvoiceHistories;
|
||||
use App\Exports\Sales\Invoices\Sheets\InvoiceTotals;
|
||||
use App\Exports\Sales\Invoices\Sheets\InvoiceTransactions;
|
||||
use Maatwebsite\Excel\Concerns\Exportable;
|
||||
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
|
||||
|
||||
class Invoices implements WithMultipleSheets
|
||||
{
|
||||
use Exportable;
|
||||
|
||||
public $ids;
|
||||
|
||||
public function __construct($ids = null)
|
||||
{
|
||||
$this->ids = $ids;
|
||||
}
|
||||
|
||||
public function sheets(): array
|
||||
{
|
||||
return [
|
||||
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