38 lines
768 B
PHP
38 lines
768 B
PHP
<?php
|
|
|
|
namespace App\Exports\Purchases\RecurringBills\Sheets;
|
|
|
|
use App\Abstracts\Export;
|
|
use App\Models\Document\DocumentHistory as Model;
|
|
|
|
class RecurringBillHistories 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',
|
|
'status',
|
|
'notify',
|
|
'description',
|
|
];
|
|
}
|
|
}
|