From ca88da8944d6b95af754b20234686a757b49b0c6 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Tue, 07 May 2024 16:00:20 +0800
Subject: [PATCH] 商品的新增和修改
---
src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
index 9e7f9e6..d2f0556 100644
--- a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
+++ b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml
@@ -458,12 +458,12 @@
select IFNULL(sum(IFNULL(a.amount,0)),0) from mall_order_info a
inner join mall_member b on a.member_id=b.ID
<where>
- a.status in (2,3,4)
+ a.status = 4
<if test="type == 1">
and b.invite_id=#{inviteId}
</if>
<if test="type == 2">
- and FIND_IN_SET(#{inviteId},b.referrer_ids)
+ and b.referrer_id=#{inviteId}
</if>
</where>
</select>
--
Gitblit v1.9.1