From 7eefafa8056e4eeec6ba0b2616f7bd2a544e662f Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sat, 14 Mar 2026 14:10:33 +0500 Subject: [PATCH] wip --- app/Imports/Ecommerce/Product/ProductImport.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Imports/Ecommerce/Product/ProductImport.php b/app/Imports/Ecommerce/Product/ProductImport.php index b1fc6b9..fc90186 100644 --- a/app/Imports/Ecommerce/Product/ProductImport.php +++ b/app/Imports/Ecommerce/Product/ProductImport.php @@ -48,8 +48,8 @@ class ProductImport implements OnEachRow, WithHeadingRow [ 'channel_id' => $this->channel_id, 'ynamdyr_product_code' => $row['product_code'], - 'ynamdyr_brand_id' => $row['brand_id'], - 'ynamdyr_category_id' => $row['category_id'], + // 'ynamdyr_brand_id' => $row['brand_id'], + // 'ynamdyr_category_id' => $row['category_id'], ] ) ), @@ -113,7 +113,7 @@ class ProductImport implements OnEachRow, WithHeadingRow 'old_price_amount' => $row['old_price'], 'cost_amount' => $row['sale_price'], 'price_amount' => $row['sale_price'], - 'is_visible' => false, + 'is_visible' => true, ]; } }