fix(order): 检查订单商品是否下架

- 在处理订单时,增加对商品是否下架的检查
- 如果发现商品已下架,抛出异常并提示用户更换商品后重新下单
- 针对不同来源的商品(source 为 2 时),分别检查 StoreBranchProduct 和 StoreProduct 表中的数据
This commit is contained in:
mkm 2024-12-11 16:36:06 +08:00
parent 36c7aa2d5a
commit 7d6049fbf7

View File

@ -100,11 +100,17 @@ class OrderLogic extends BaseLogic
if ($source == 2) {
$field = 'product_id,product_id id,store_name,image,unit,price,vip_price,cost,purchase,cate_id,store_info,rose';
$find = StoreBranchProduct::where(['product_id' => $v['product_id'], 'store_id' => $params['store_id']])->field($field)->find();
if($find && $find['is_show']==0){
throw new BusinessException('订单存在下架商品请更换后下单');
}
} else {
$find = StoreProduct::where(['id' => $v['product_id']])->field($field)->find();
if (!empty($user['user_ship'])) {
$find = StoreProductGroupPrice::resetProductPrice($find, $user['user_ship']);
}
if($find && $find['status']==0){
throw new BusinessException('订单存在下架商品请更换后下单');
}
}
if (!$find) {
throw new BusinessException('商品不存在');