From 986b3c86ef060071ebd27811473e559ed46dd53a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 11 Apr 2023 11:22:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AE=A2=E5=8D=95=E6=95=B0?= =?UTF-8?q?=E9=87=8F=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/data/controller/api/auth/Order.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/data/controller/api/auth/Order.php b/app/data/controller/api/auth/Order.php index e7969db34..3dcd05576 100644 --- a/app/data/controller/api/auth/Order.php +++ b/app/data/controller/api/auth/Order.php @@ -106,7 +106,8 @@ class Order extends Auth // 限制购买数量 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'); + $table = ShopOrderItem::mk()->getTable(); + $buys = ShopOrder::mk()->alias('a')->join("{$table} b", 'a.order_no=b.order_no')->where($map)->sum('b.stock_sales'); if ($buys + $count > $goodsInfo['limit_max_num']) $this->error('超过限购数量'); } // 限制购买身份