60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Imports\Purchases\Sheets;
|
|
|
|
use App\Abstracts\Import;
|
|
use App\Http\Requests\Document\DocumentItemTax as Request;
|
|
use App\Models\Common\Item;
|
|
use App\Models\Document\Document;
|
|
use App\Models\Document\DocumentItem;
|
|
use App\Models\Document\DocumentItemTax as Model;
|
|
|
|
class BillItemTaxes extends Import
|
|
{
|
|
public $request_class = Request::class;
|
|
|
|
public function model(array $row)
|
|
{
|
|
return new Model($row);
|
|
}
|
|
|
|
public function map($row): array
|
|
{
|
|
if ($this->isEmpty($row, 'bill_number')) {
|
|
return [];
|
|
}
|
|
|
|
$row['bill_number'] = (string) $row['bill_number'];
|
|
|
|
$row = parent::map($row);
|
|
|
|
$row['document_id'] = (int) Document::bill()->number($row['bill_number'])->pluck('id')->first();
|
|
|
|
if (empty($row['document_item_id']) && !empty($row['item_name'])) {
|
|
$item_id = Item::name($row['item_name'])->pluck('id')->first();
|
|
$row['document_item_id'] = DocumentItem::bill()->where('item_id', $item_id)->pluck('id')->first();
|
|
}
|
|
|
|
$row['tax_id'] = $this->getTaxId($row);
|
|
|
|
if (empty($row['name']) && !empty($row['item_name'])) {
|
|
$row['name'] = $row['item_name'];
|
|
}
|
|
|
|
$row['amount'] = (double) $row['amount'];
|
|
|
|
$row['type'] = Document::BILL_TYPE;
|
|
|
|
return $row;
|
|
}
|
|
|
|
public function prepareRules(array $rules): array
|
|
{
|
|
$rules['bill_number'] = 'required|string';
|
|
|
|
unset($rules['bill_id']);
|
|
|
|
return $rules;
|
|
}
|
|
}
|