2020-12-25 16:25:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
2023-08-14 14:21:40 +00:00
|
|
|
namespace App\Exports\Purchases\Bills\Sheets;
|
2020-12-25 16:25:38 +00:00
|
|
|
|
|
|
|
|
use App\Abstracts\Export;
|
|
|
|
|
use App\Models\Document\DocumentHistory as Model;
|
2024-05-22 16:26:16 +00:00
|
|
|
use App\Interfaces\Export\WithParentSheet;
|
2020-12-25 16:25:38 +00:00
|
|
|
|
2024-05-22 16:26:16 +00:00
|
|
|
class BillHistories extends Export implements WithParentSheet
|
2020-12-25 16:25:38 +00:00
|
|
|
{
|
|
|
|
|
public function collection()
|
|
|
|
|
{
|
2021-06-27 08:40:46 +00:00
|
|
|
return Model::with('document')->bill()->collectForExport($this->ids, null, 'document_id');
|
2020-12-25 16:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|