added import and export recurring invoices

This commit is contained in:
Cihan Şentürk
2023-08-14 17:23:01 +03:00
parent 0bbbe25d7f
commit bd15a1cd0e
31 changed files with 687 additions and 29 deletions

View File

@@ -0,0 +1,44 @@
<?php
namespace App\Exports\Sales\RecurringInvoices\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentItem as Model;
class RecurringInvoiceItems extends Export
{
public function collection()
{
return Model::with('document', 'item')->invoiceRecurring()->collectForExport($this->ids, null, 'document_id');
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->invoice_number = $document->document_number;
$model->item_name = $model->item->name;
$model->item_description = $model->item->description;
$model->item_type = $model->item->type;
return parent::map($model);
}
public function fields(): array
{
return [
'invoice_number',
'item_name',
'item_description',
'item_type',
'quantity',
'price',
'total',
'tax',
];
}
}