From 8386b526a6b0b2e0b2d47d983e7b44460cbdbce4 Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Tue, 23 Jan 2024 11:43:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=B4=BB=E5=8A=A8=E5=95=86?= =?UTF-8?q?=E5=93=81=E9=99=90=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/dao/store/StoreActivityDao.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/dao/store/StoreActivityDao.php b/app/common/dao/store/StoreActivityDao.php index aea07da9..b3f9628b 100644 --- a/app/common/dao/store/StoreActivityDao.php +++ b/app/common/dao/store/StoreActivityDao.php @@ -119,7 +119,7 @@ class StoreActivityDao extends BaseDao public function canBuy($userId, $productId) { $activityId = Db::name('cloud_product')->where('product_id', $productId)->value('activity_id'); - $find = Db::name('store_activity_order_product')->where('user_id', $userId)->where('product_id', $productId)->where('status', 1)->find(); + $find = Db::name('store_activity_order_product')->where('user_id', $userId)->where('status', 1)->find(); if ($find && $activityId == 2) { return false; }