修改商品创建的错误

This commit is contained in:
luofei 2023-06-05 14:21:08 +08:00
parent f80bbcd2d8
commit 5a9fd1b8c4

@ -13,9 +13,9 @@ class ProductCreate
public function handle($event)
{
$merchant=Db::name('merchant')->where('status',1)->where('mer_state',1)->where('mer_id',$event['product']['mer_id'])->find();
if ($merchant['type_id']==11){
$this->CloudMerchanSpu($merchant,$event);
$merchant=Db::name('merchant')->where('status',1)->where('is_del',0)->where('mer_id',$event['product']['mer_id'])->find();
if (empty($merchant)) {
return false;
}
if ($merchant['type_id']==13 ||$merchant['type_id']==11){
return false;