Merge pull request #2272 from CihanSenturk/master
Fixed duplicated issue when importing items
This commit is contained in:
commit
cc21a62ae7
@ -4,6 +4,7 @@ namespace App\Imports\Common\Sheets;
|
|||||||
|
|
||||||
use App\Abstracts\Import;
|
use App\Abstracts\Import;
|
||||||
use App\Http\Requests\Common\ItemTax as Request;
|
use App\Http\Requests\Common\ItemTax as Request;
|
||||||
|
use App\Models\Common\Item;
|
||||||
use App\Models\Common\ItemTax as Model;
|
use App\Models\Common\ItemTax as Model;
|
||||||
|
|
||||||
class ItemTaxes extends Import
|
class ItemTaxes extends Import
|
||||||
@ -17,7 +18,12 @@ class ItemTaxes extends Import
|
|||||||
{
|
{
|
||||||
$row = parent::map($row);
|
$row = parent::map($row);
|
||||||
|
|
||||||
$row['item_id'] = $this->getItemIdFromName($row);
|
$row['item_id'] = (int) Item::where('name', $row['item_name'])->value('id');
|
||||||
|
|
||||||
|
if ($this->isEmpty($row, 'item_id')) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
$row['tax_id'] = $this->getTaxId($row);
|
$row['tax_id'] = $this->getTaxId($row);
|
||||||
|
|
||||||
return $row;
|
return $row;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user