refactor(StoreOrderCartInfoLogic): 移除不必要的店铺配置验证

- 注释掉了用于验证店铺配置的代码块
- 删除了多余的错误提示代码
- 优化了代码结构,提高了代码可读性
This commit is contained in:
mkm 2025-01-15 15:00:54 +08:00
parent 99499f3334
commit 88bb49563b

View File

@ -35,13 +35,13 @@ class StoreOrderCartInfoLogic extends BaseLogic
if($cart_info['is_pay']==1){
throw new BusinessException('已支付订单无法追加');
}
$value=DictData::where('type_value','vendors_store')->column('value');
if(!$value){
throw new BusinessException('请先配置店铺');
}
if(!in_array($cart_info['store_id'],$value)){
throw new BusinessException('该订单不属于可设置店铺');
}
// $value=DictData::where('type_value','vendors_store')->column('value');
// if(!$value){
// throw new BusinessException('请先配置店铺');
// }
// if(!in_array($cart_info['store_id'],$value)){
// throw new BusinessException('该订单不属于可设置店铺');
// }
foreach($params['product_arr'] as $k=>$v){
$find=StoreProduct::where('id',$v['product_id'])->find();
@ -86,7 +86,6 @@ class StoreOrderCartInfoLogic extends BaseLogic
return true;
} catch (\Throwable $e) {
Db::rollback();
d($e);
throw new BusinessException('编辑商品失败' . $e->getMessage());
}
}