From 06d6b563f01636476c48aae5cbb01f06b24c0e36 Mon Sep 17 00:00:00 2001
From: whycq <10027870+whycq@user.noreply.gitee.com>
Date: 星期五, 21 七月 2023 11:03:28 +0800
Subject: [PATCH] # 客户名称长度限制
---
src/main/resources/mapper/CstmrMapper.xml | 30 +++++++++++++++++++++++++++++-
1 files changed, 29 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/CstmrMapper.xml b/src/main/resources/mapper/CstmrMapper.xml
index b7cbd48..72b1611 100644
--- a/src/main/resources/mapper/CstmrMapper.xml
+++ b/src/main/resources/mapper/CstmrMapper.xml
@@ -60,9 +60,34 @@
<choose>
<when test="deptId != null and deptId != ''">
AND (CHARINDEX(','+#{deptId}+',', ','+sd.path+',') > 0 OR sd.id = #{deptId})
+ or
+ (
+ user_id = #{userId}
+ or
+ mc.id in
+ (
+ select
+ cstmr_id
+ from man_cstmr_foll
+ where 1=1
+ and user_id = #{userId}
+ )
+ )
</when>
<otherwise>
- AND mc.user_id = #{userId}
+ and
+ (
+ user_id = #{userId}
+ or
+ mc.id in
+ (
+ select
+ cstmr_id
+ from man_cstmr_foll
+ where 1=1
+ and user_id = #{userId}
+ )
+ )
</otherwise>
</choose>
<if test="hostId != null">
@@ -84,5 +109,8 @@
ORDER BY mc.create_time DESC
</select>
+ <update id="updateDeptIdByUserId">
+ update man_cstmr set dept_id = #{deptId} where user_id = #{userId}
+ </update>
</mapper>
--
Gitblit v1.9.1