From 1e51f33490015a769197c448e02c11f95e721c9f Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Thu, 21 Dec 2023 16:43:28 +0800
Subject: [PATCH] 富文本框输入版本变化

---
 src/main/resources/mapper/modules/MallMoneyFlowMapper.xml |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
index b827e24..bb1a982 100644
--- a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
+++ b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
@@ -138,7 +138,7 @@
     </select>
 
     <select id="selectAmountByFlowtypeAndType" resultType="java.math.BigDecimal">
-        select ifnull(sum(amount),0) from mall_money_flow
+        select ifnull(sum(a.amount),0) from mall_money_flow a
         <where>
             a.member_id = #{memberId}
             <if test="flowType!=null and flowType!=''">
@@ -150,6 +150,12 @@
             <if test="status!=null and status!=''">
                 and  a.status = #{status}
             </if>
+            <if test="dateDay!=null">
+                and date_format(a.created_time, '%Y-%m-%d') = date_format(#{dateDay}, '%Y-%m-%d')
+            </if>
+            <if test="dateMonth!=null">
+                and date_format(a.created_time, '%Y-%m') = date_format(#{dateMonth}, '%Y-%m')
+            </if>
         </where>
     </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1