人员收支总汇删除人员展示问题

This commit is contained in:
liux 2025-11-19 15:43:51 +08:00
parent c11feff965
commit f70d26252c
1 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join sys_dept sd on
su.dept_id = sd.dept_id
where
1 = 1
1 = 1 and su.del_flag = '0'
<if test="param.deptIdList != null and param.deptIdList.size() > 0">
and su.dept_id in
<foreach collection="param.deptIdList" item="deptId" separator="," open="(" close=")">
@ -202,7 +202,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join sys_dept sd on
su.dept_id = sd.dept_id
where
1 = 1
1 = 1 and su.del_flag ='0'
<if test="param.deptIdList != null and param.deptIdList.size() > 0">
and su.dept_id in
<foreach collection="param.deptIdList" item="deptId" separator="," open="(" close=")">
@ -230,7 +230,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
awi.user_id ) a
on a.user_id = su.user_id
where
1 = 1
1 = 1 and su.del_flag ='0'
<if test="param.deptIdList != null and param.deptIdList.size() > 0">
and su.dept_id in
<foreach collection="param.deptIdList" item="deptId" separator="," open="(" close=")">
@ -251,4 +251,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if>
order by outcome desc
</select>
</mapper>
</mapper>