added import and export recurring invoices
This commit is contained in:
37
app/Exports/Sales/Invoices/Sheets/InvoiceHistories.php
Normal file
37
app/Exports/Sales/Invoices/Sheets/InvoiceHistories.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Sales\Invoices\Sheets;
|
||||
|
||||
use App\Abstracts\Export;
|
||||
use App\Models\Document\DocumentHistory as Model;
|
||||
|
||||
class InvoiceHistories extends Export
|
||||
{
|
||||
public function collection()
|
||||
{
|
||||
return Model::with('document')->invoice()->collectForExport($this->ids, null, 'document_id');
|
||||
}
|
||||
|
||||
public function map($model): array
|
||||
{
|
||||
$document = $model->document;
|
||||
|
||||
if (empty($document)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$model->invoice_number = $document->document_number;
|
||||
|
||||
return parent::map($model);
|
||||
}
|
||||
|
||||
public function fields(): array
|
||||
{
|
||||
return [
|
||||
'invoice_number',
|
||||
'status',
|
||||
'notify',
|
||||
'description',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user