From 6e421cf8627f8fbf0e1653bd5c2692c74b8da73c Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Tue, 23 Jan 2024 17:18:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=95=86=E5=93=81=E9=99=90?= =?UTF-8?q?=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store/order/StoreOrderCreateRepository.php | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/app/common/repositories/store/order/StoreOrderCreateRepository.php b/app/common/repositories/store/order/StoreOrderCreateRepository.php index 73f704a2..d97078f6 100644 --- a/app/common/repositories/store/order/StoreOrderCreateRepository.php +++ b/app/common/repositories/store/order/StoreOrderCreateRepository.php @@ -102,17 +102,15 @@ class StoreOrderCreateRepository extends StoreOrderRepository $order_type = $cart['product_type']; } $source = $cart['source']; - if($source==103){ - $canBuy = (new StoreActivityDao())->canBuy($cart['uid'], $cart['product_id']); - if ($canBuy['is_true']==false) { + $canBuy = (new StoreActivityDao())->canBuy($cart['uid'], $cart['product_id']); + if ($canBuy['is_true']==false) { + throw new ValidateException('活动商品限购1个'); + } + if ($canBuy['activityId']== 2) { + $activityProductCount += $cart['cart_num']; + if ($activityProductCount > 1){ throw new ValidateException('活动商品限购1个'); } - if ($canBuy['activityId']== 2) { - $activityProductCount += $cart['cart_num']; - if ($activityProductCount > 1){ - throw new ValidateException('活动商品限购1个'); - } - } } if ($cart['product_type'] <= 97 && $cart['product_type'] > 0 && (($cart['product_type'] != 10 && count($merchantCart['list']) != 1) || count($merchantCartList) != 1)) { throw new ValidateException('活动商品必须单独购买');