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

39 lines
811 B
PHP
Raw Normal View History

<?php
namespace App\Exports\Purchases\Bills\Sheets;
use App\Abstracts\Export;
use App\Models\Document\DocumentHistory as Model;
2024-05-22 16:26:16 +00:00
use App\Interfaces\Export\WithParentSheet;
2024-05-22 16:26:16 +00:00
class BillHistories extends Export implements WithParentSheet
{
public function collection()
{
2021-06-27 08:40:46 +00:00
return Model::with('document')->bill()->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',
'status',
'notify',
'description',
];
}
}