From 31d5a68c2148203eca8883d90e010bb01d155f52 Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Thu, 22 Feb 2024 16:09:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B4=AD=E7=89=A9=E5=8D=A1?= =?UTF-8?q?=E8=B4=AD=E4=B9=B0=E6=AC=A1=E6=95=B0=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../order/StoreOrderCreateRepository.php | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/app/common/repositories/store/order/StoreOrderCreateRepository.php b/app/common/repositories/store/order/StoreOrderCreateRepository.php index 38e54070..0f485c72 100755 --- a/app/common/repositories/store/order/StoreOrderCreateRepository.php +++ b/app/common/repositories/store/order/StoreOrderCreateRepository.php @@ -7,6 +7,7 @@ use app\common\dao\store\order\StoreCartDao; use app\common\dao\store\StoreActivityDao; use app\common\model\store\order\StoreGroupOrder; use app\common\model\store\order\StoreOrder; +use app\common\model\store\product\ProductCate; use app\common\model\system\merchant\Merchant; use app\common\repositories\community\CommunityRepository; use app\common\repositories\store\coupon\StoreCouponRepository; @@ -81,6 +82,25 @@ class StoreOrderCreateRepository extends StoreOrderRepository //检查商品类型, 活动商品只能单独购买 $allowDelivery = true; $activityProductCount = 0; + //判断是否是平台购物卡,购物卡不允许使用任何优惠券 + $merchantCate = $merchantCartList[0]['list'][0]->product->merCateId; + $isPlatformCard = false; + if (!empty($merchantCate) && in_array(env('PLATFORM_CARD_CATE_ID'), array_column($merchantCate->toArray(), 'mer_cate_id'))) { + $isPlatformCard = true; + } + if ($isPlatformCard) { + //平台购物卡仅能购买一次 + $productIds = ProductCate::where('mer_cate_id', env('PLATFORM_CARD_CATE_ID'))->column('product_id'); + $orderRecord = StoreOrder::alias('t1') + ->leftJoin('store_order_product t2', 't1.order_id = t2.order_id') + ->whereIn('product_id', $productIds) + ->where('paid', 1) + ->where('is_refund', 0) + ->count(); + if ($orderRecord > 0) { + throw new ValidateException('大礼包仅能购买一次'); + } + } foreach ($merchantCartList as $merchantCart) { if (($merchantCart['type_id'] != Merchant::TypeSupplyChain) && $address && $merchantCart['list'][0]['product_type'] != 2 && $merchantCart['list'][0]['product']['type'] != 1) { if ($merchantCart['street_id'] != $address['street_code'] && $createOrder && !in_array($merchantCart['mer_id'], $takes)) { @@ -168,12 +188,8 @@ class StoreOrderCreateRepository extends StoreOrderRepository } $order_total_postage = 0; $platformCoupon = []; - //判断是否是平台购物卡,购物卡不允许使用任何优惠券 - $merchantCate = $merchantCartList[0]['list'][0]->product->merCateId; - $isPlatformCard = false; - if (!empty($merchantCate) && in_array(env('PLATFORM_CARD_CATE_ID'), array_column($merchantCate->toArray(), 'mer_cate_id'))) { + if ($isPlatformCard) { $enabledPlatformCoupon = false; - $isPlatformCard = true; }