From 1151b8fb4e1d487a9a049173b22ffcf6237ddcf3 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 2 Aug 2024 20:38:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(OrderLogic):=20=E6=9B=B4=E6=96=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E9=80=BB=E8=BE=91=EF=BC=8C=E4=BC=98=E5=8C=96=E5=95=86?= =?UTF-8?q?=E5=93=81=E5=A4=84=E7=90=86=E6=B5=81=E7=A8=8B=EF=BC=8C=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E5=95=86=E5=93=81=E5=AD=97=E6=AE=B5=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/logic/order/OrderLogic.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index b7967434..36690433 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -83,13 +83,24 @@ class OrderLogic extends BaseLogic self::$fresh_price = 0; //生鲜金额 /** 计算价格 */ $off_activity = Config::where('name', 'off_activity')->value('value'); - $field = 'id,store_name,image,unit,price,vip_price,cost,purchase,top_cate_id,store_info,rose'; + $field = 'id,store_name,image,unit,price,vip_price,cost,purchase,cate_id,store_info,rose'; foreach ($cart_select as $k => $v) { $find = StoreProduct::where(['id' => $v['product_id']])->field($field)->find(); if (!$find) { self::setError('商品不存在'); return false; } + $StoreCategory=StoreCategory::where('id',$find['cate_id'])->find(); + $find['top_cate_id']=$find['cate_id']; + if($StoreCategory && $StoreCategory['pid']>0){ + $StoreCategory2=StoreCategory::where('id',$StoreCategory['pid'])->find(); + if($StoreCategory2 && $StoreCategory['pid']>0){ + $find['top_cate_id']=$StoreCategory2['pid']; + }else{ + $find['top_cate_id']=$StoreCategory['pid']; + } + + } unset($cart_select[$k]['id']); $cart_select[$k]['total_price'] = bcmul($v['cart_num'], $find['price'], 2); //订单总价 if ($off_activity == 1 || ($user != null && in_array($user['user_ship'], [4, 6, 7]))) {