Akaunting/app/Exports/Purchases/Bills/Sheets/BillItemTaxes.php

41 lines
920 B
PHP
Raw Normal View History

2020-12-23 22:28:38 +00:00
<?php
namespace App\Exports\Purchases\Bills\Sheets;
2020-12-23 22:28:38 +00:00
use App\Abstracts\Export;
use App\Models\Document\DocumentItemTax as Model;
2024-05-22 16:26:16 +00:00
use App\Interfaces\Export\WithParentSheet;
2020-12-23 22:28:38 +00:00
2024-05-22 16:26:16 +00:00
class BillItemTaxes extends Export implements WithParentSheet
2020-12-23 22:28:38 +00:00
{
public function collection()
{
2021-06-27 08:40:46 +00:00
return Model::with('document', 'item', 'tax')->bill()->collectForExport($this->ids, null, 'document_id');
2020-12-23 22:28:38 +00:00
}
public function map($model): array
{
$document = $model->document;
if (empty($document)) {
return [];
}
$model->bill_number = $document->document_number;
2020-12-23 22:28:38 +00:00
$model->item_name = $model->item->name;
$model->tax_rate = $model->tax->rate;
return parent::map($model);
}
public function fields(): array
{
return [
'bill_number',
2020-12-23 22:28:38 +00:00
'item_name',
'tax_rate',
'amount',
];
}
}