From 65f3f3033ec7b8da30c732b694e532d058348a47 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期五, 18 九月 2026 14:30:46 +0800
Subject: [PATCH] 【市一】随访增加院区限制
---
smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml | 71 +++++++++++++++++++++++------------
1 files changed, 47 insertions(+), 24 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml b/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
index 8d227ba..a381b3d 100644
--- a/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
@@ -30,6 +30,7 @@
<result property="isupload" column="isupload"/>
<result property="uploadTime" column="upload_time"/>
<result property="orgid" column="orgid"/>
+ <result property="campusid" column="campusid"/>
<result property="pid" column="pid"/>
<result property="guid" column="guid"/>
<result property="preachform" column="preachform"/>
@@ -115,6 +116,7 @@
leavehospitaldistrictcode,
leavehospitaldistrictname,
orgid,
+ campusid,
nexttaskflag,
nexttaskid,
nexttaskname,
@@ -161,6 +163,7 @@
<if test="isupload != null ">and isupload = #{isupload}</if>
<if test="uploadTime != null ">and upload_time = #{uploadTime}</if>
<if test="orgid != null and orgid != ''">and orgid = #{orgid}</if>
+ <if test="campusid != null and campusid != ''">and campusid = #{campusid}</if>
<if test="compensateDate != null and compensateDate != ''">and compensate_date = #{compensateDate}</if>
<if test="hospType != null and hospType != ''">and hosp_type = #{hospType}</if>
<if test="libtemplateid != null ">and libtemplateid = #{libtemplateid}</if>
@@ -252,7 +255,8 @@
service_task.nexttaskflag,
service_task.nexttaskid,
service_task.nexttaskname,
- service_task.orgid from service_task
+ service_task.orgid,
+ service_task.campusid from service_task
where 1=1
and service_task.del_flag = 0
<!-- and taskid in (-->
@@ -343,6 +347,7 @@
<if test="isupload != null ">and service_task.isupload = #{isupload}</if>
<if test="uploadTime != null ">and service_task.upload_time = #{uploadTime}</if>
<if test="orgid != null and orgid != ''">and service_task.orgid = #{orgid}</if>
+ <if test="campusid != null and campusid != ''">and service_task.campusid = #{campusid}</if>
<if test="compensateDate != null and compensateDate != ''">and service_task.compensate_date =
#{compensateDate}
</if>
@@ -370,6 +375,7 @@
<if test="isupload != null ">and service_task.isupload = #{isupload}</if>
<if test="uploadTime != null ">and service_task.upload_time = #{uploadTime}</if>
<if test="orgid != null and orgid != ''">and service_task.orgid = #{orgid}</if>
+ <if test="campusid != null and campusid != ''">and service_task.campusid = #{campusid}</if>
<if test="compensateDate != null and compensateDate != ''">and service_task.compensate_date =
#{compensateDate}
</if>
@@ -389,20 +395,34 @@
<if test="leavehospitaldistrictname != null ">and service_task.leavehospitaldistrictname =
#{leavehospitaldistrictname}
</if>
- <if test="leavehospitaldistrictcodes!=null and leavehospitaldistrictcodes.size()>0">
- AND service_task.leavehospitaldistrictcode IN
- <foreach collection="leavehospitaldistrictcodes" item="leavehospitaldistrictcode" open="(" separator=","
- close=")">
- #{leavehospitaldistrictcode}
- </foreach>
- </if>
- <if test="leaveldeptcodes!=null and leaveldeptcodes.size()>0">
- AND service_task.deptcode IN
- <foreach collection="leaveldeptcodes" item="deptcode" open="(" separator=","
- close=")">
- #{deptcode}
- </foreach>
- </if>
+ <choose>
+ <when test="(leavehospitaldistrictcodes!=null and leavehospitaldistrictcodes.size()>0) and (leaveldeptcodes!=null and leaveldeptcodes.size()>0)">
+ AND (
+ service_task.leavehospitaldistrictcode IN
+ <foreach collection="leavehospitaldistrictcodes" item="leavehospitaldistrictcode" open="(" separator="," close=")">
+ #{leavehospitaldistrictcode}
+ </foreach>
+ OR service_task.deptcode IN
+ <foreach collection="leaveldeptcodes" item="deptcode" open="(" separator="," close=")">
+ #{deptcode}
+ </foreach>
+ )
+ </when>
+ <otherwise>
+ <if test="leavehospitaldistrictcodes!=null and leavehospitaldistrictcodes.size()>0">
+ AND service_task.leavehospitaldistrictcode IN
+ <foreach collection="leavehospitaldistrictcodes" item="leavehospitaldistrictcode" open="(" separator="," close=")">
+ #{leavehospitaldistrictcode}
+ </foreach>
+ </if>
+ <if test="leaveldeptcodes!=null and leaveldeptcodes.size()>0">
+ AND service_task.deptcode IN
+ <foreach collection="leaveldeptcodes" item="deptcode" open="(" separator="," close=")">
+ #{deptcode}
+ </foreach>
+ </if>
+ </otherwise>
+ </choose>
<if test="leavehospitaldistrictcode != null ">and service_task.leavehospitaldistrictcode =
#{leavehospitaldistrictcode}
</if>
@@ -441,6 +461,7 @@
<if test="isupload != null">isupload,</if>
<if test="uploadTime != null">upload_time,</if>
<if test="orgid != null">orgid,</if>
+ <if test="campusid != null and campusid != ''">campusid,</if>
<if test="pid != null">pid,</if>
<if test="guid != null">guid,</if>
<if test="preachform != null">preachform,</if>
@@ -494,6 +515,7 @@
<if test="isupload != null">#{isupload},</if>
<if test="uploadTime != null">#{uploadTime},</if>
<if test="orgid != null">#{orgid},</if>
+ <if test="campusid != null and campusid != ''">#{campusid},</if>
<if test="nexttaskflag != null">#{nexttaskflag},</if>
<if test="nexttaskid != null">#{nexttaskid},</if>
<if test="nexttaskname != null">#{nexttaskname},</if>
@@ -531,21 +553,21 @@
<update id="updateServiceTask" parameterType="com.smartor.domain.ServiceTask">
update service_task
<trim prefix="SET" suffixOverrides=",">
- <if test="taskName != null">task_name = #{taskName},</if>
+ <if test="taskName != null and taskName != ''">task_name = #{taskName},</if>
<if test="templateid != null">templateid = #{templateid},</if>
- <if test="templatename != null">templatename = #{templatename},</if>
+ <if test="templatename != null and templatename != ''">templatename = #{templatename},</if>
<if test="labelinfo != null">labelinfo = #{labelinfo},</if>
<if test="count != null">count = #{count},</if>
<if test="executed != null">executed = #{executed},</if>
<if test="unexecuted != null">unexecuted = #{unexecuted},</if>
<if test="fail != null">fail = #{fail},</if>
<if test="checkuserid != null">checkuserid = #{checkuserid},</if>
- <if test="checkusername != null">checkusername = #{checkusername},</if>
+ <if test="checkusername != null and checkusername != ''">checkusername = #{checkusername},</if>
<if test="checktime != null">checktime = #{checktime},</if>
<if test="type != null">type = #{type},</if>
<if test="typename != null">typename = #{typename},</if>
- <if test="deptcode != null">deptcode = #{deptcode},</if>
- <if test="deptname != null">deptname = #{deptname},</if>
+ <if test="deptcode != null and deptcode != ''">deptcode = #{deptcode},</if>
+ <if test="deptname != null and deptname != ''">deptname = #{deptname},</if>
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
@@ -554,13 +576,14 @@
<if test="isupload != null">isupload = #{isupload},</if>
<if test="uploadTime != null">upload_time = #{uploadTime},</if>
<if test="orgid != null">orgid = #{orgid},</if>
+ <if test="campusid != null and campusid != ''">campusid = #{campusid},</if>
<if test="nexttaskflag != null">nexttaskflag = #{nexttaskflag},</if>
<if test="nexttaskid != null">nexttaskid = #{nexttaskid},</if>
- <if test="nexttaskname != null">nexttaskname = #{nexttaskname},</if>
+ <if test="nexttaskname != null and nexttaskname!=''">nexttaskname = #{nexttaskname},</if>
<if test="pid != null">pid = #{pid},</if>
<if test="guid != null">guid = #{guid},</if>
<if test="preachform != null">preachform = #{preachform},</if>
- <if test="preachformDesc != null">preachform_desc = #{preachformDesc},</if>
+ <if test="preachformDesc != null and preachformDesc!=''">preachform_desc = #{preachformDesc},</if>
<if test="sendType != null">send_type = #{sendType},</if>
<if test="sendState != null">send_state = #{sendState},</if>
<if test="hospType != null and hospType != ''">hosp_type = #{hospType},</if>
@@ -578,9 +601,9 @@
<if test="longTask != null and longTask != ''">long_task = #{longTask},</if>
<if test="kcb != null and kcb != ''">kcb = #{kcb},</if>
<if test="jsy != null and jsy != ''">jsy = #{jsy},</if>
- <if test="leavehospitaldistrictname != null ">leavehospitaldistrictname = #{leavehospitaldistrictname},
+ <if test="leavehospitaldistrictname != null and leavehospitaldistrictname != ''">leavehospitaldistrictname = #{leavehospitaldistrictname},
</if>
- <if test="leavehospitaldistrictcode != null ">leavehospitaldistrictcode = #{leavehospitaldistrictcode},
+ <if test="leavehospitaldistrictcode != null and leavehospitaldistrictcode != ''">leavehospitaldistrictcode = #{leavehospitaldistrictcode},
</if>
<if test="compensateDate != null and compensateDate != ''">compensate_date = #{compensateDate},</if>
<if test="sendDay != null ">send_day = #{sendDay},</if>
--
Gitblit v1.9.3