From c37f9c7ea859926a359b2f18fb9c98613e9ec1a0 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 27 Jul 2022 10:38:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=AE=A2=E5=8D=95=E8=B4=AD?= =?UTF-8?q?=E4=B9=B0=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/data/controller/api/auth/Order.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/data/controller/api/auth/Order.php b/app/data/controller/api/auth/Order.php index c41446918..05e39e018 100644 --- a/app/data/controller/api/auth/Order.php +++ b/app/data/controller/api/auth/Order.php @@ -88,10 +88,10 @@ class Order extends Auth if ($truckType < 0) $truckType = $goodsInfo['truck_type']; if ($truckType !== $goodsInfo['truck_type']) $this->error('不能混合下单'); // 限制购买数量 - if (isset($goods['limit_max_num']) && $goods['limit_max_num'] > 0) { - $map = [['a.uuid', '=', $this->uuid], ['a.status', 'in', [2, 3, 4, 5]], ['b.goods_code', '=', $goods['code']]]; + if (isset($goodsInfo['limit_max_num']) && $goodsInfo['limit_max_num'] > 0) { + $map = [['a.uuid', '=', $this->uuid], ['a.status', 'in', [2, 3, 4, 5]], ['b.goods_code', '=', $goodsInfo['code']]]; $buys = ShopOrder::mk()->alias('a')->join('store_order_item b', 'a.order_no=b.order_no')->where($map)->sum('b.stock_sales'); - if ($buys + $count > $goods['limit_max_num']) $this->error('超过限购数量'); + if ($buys + $count > $goodsInfo['limit_max_num']) $this->error('超过限购数量'); } // 限制购买身份 if ($goodsInfo['limit_low_vip'] > $this->user['vip_code']) $this->error('用户等级不够');