added import and export recurring bills

This commit is contained in:
Cihan Şentürk
2023-08-14 17:21:40 +03:00
parent 09baf1991f
commit 0bbbe25d7f
31 changed files with 685 additions and 29 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace App\Exports\Purchases\RecurringBills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentTotal as Model;
class RecurringBillTotals extends Export
{
public function collection()
{
return Model::with('document')->billRecurring()->collectForExport($this->ids, null, 'document_id');
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->bill_number = $document->document_number;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
'code',
'name',
'amount',
'sort_order',
];
}
}