From 37b29b9f82aadc4cb8185f4d9a8192a9c9db1b8c Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Sat, 10 Jun 2023 10:37:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B8=82=E7=BA=A7=E4=BA=91?= =?UTF-8?q?=E4=BB=93=E5=95=86=E5=93=81=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/listener/ProductCreate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/listener/ProductCreate.php b/app/listener/ProductCreate.php index 609382e3..f5c5e833 100644 --- a/app/listener/ProductCreate.php +++ b/app/listener/ProductCreate.php @@ -26,7 +26,7 @@ class ProductCreate //市级云仓 $cityMerchant = Db::name('merchant')->where('status', 1)->where('mer_state', 1)->where('category_id', $merchant['category_id'])->where('type_id', Merchant::TypePlatform)->find(); if ($cityMerchant) { - $where = ['mer_id' => $cityMerchant['mer_id']]; + $where = ['mer_id' => $cityMerchant['mer_id'], 'is_del' => 0]; if ($product['bar_code'] != '' && in_array($product['product_type'], [0, 98]) && $product['spec_type'] == 0) { $where['bar_code'] = $product['bar_code']; } else {