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 {