From be1b426b7d765a546f4a26b60e80aa49a57079b9 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期六, 13 一月 2024 16:25:11 +0800
Subject: [PATCH] 1、优化采购模块数量不能为小数点问题2、新增客服巡查巡楼记录功能模块3、新增页面导出功能4、优化记录查询条件新增时间段查询条件5、其他界面性调整
---
java110-db/src/main/resources/mapper/community/ActivitiesServiceDaoImplMapper.xml | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/community/ActivitiesServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/ActivitiesServiceDaoImplMapper.xml
index a6818ea..1899b94 100755
--- a/java110-db/src/main/resources/mapper/community/ActivitiesServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/ActivitiesServiceDaoImplMapper.xml
@@ -251,8 +251,9 @@
<select id="queryActivitiessCount" parameterType="Map" resultType="Map">
select count(1) count
from activities t
+ left join activities_type act on t.type_cd = act.type_cd and t.community_id = act.community_id
where 1 =1
- and t.status_cd= '0'
+ and t.status_cd= '0' and act.status_cd = '0'
<if test="collectCount !=null and collectCount != ''">
and t.collect_count= #{collectCount}
</if>
--
Gitblit v1.8.0