From 4289c5a85c5022933f081c8bdaed681df9f3eada Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期六, 25 十一月 2023 17:25:57 +0800
Subject: [PATCH] 17:25 案卷查询BUG修改

---
 ycl-platform/src/main/resources/mapper/caseHandler/DisposeRecordMapper.xml |   43 ++++++++++++++++++++++++++++++++++++-------
 1 files changed, 36 insertions(+), 7 deletions(-)

diff --git a/ycl-platform/src/main/resources/mapper/caseHandler/DisposeRecordMapper.xml b/ycl-platform/src/main/resources/mapper/caseHandler/DisposeRecordMapper.xml
index c47e565..48e4729 100644
--- a/ycl-platform/src/main/resources/mapper/caseHandler/DisposeRecordMapper.xml
+++ b/ycl-platform/src/main/resources/mapper/caseHandler/DisposeRecordMapper.xml
@@ -24,43 +24,72 @@
     </sql>
 
     <select id="selectMyBackList" resultType="com.ycl.vo.MyBacklogVO">
+        select distinct * from (
         SELECT
         t3.event_source,
+        t5.region_name source,
         t3.category,
         t2.step_name,
+        t3.`id` caseId,
         t3.`code`,
         t2.create_time,
-        t2.limit_time
+        t2.limit_time,
+        t4.url picture
         FROM
         ums_admin_role_relation t1
         left JOIN ums_dispose_record t2 ON t1.role_id = t2.handler_role_id
         left JOIN ums_base_case t3 ON t2.base_case_id=t3.id
+        left JOIN ums_image_resources t4 ON t2.base_case_id=t4.belong_to_id
+        inner join ums_sccg_region t5 on t5.id = t3.community_id
         <where>
-            t1.admin_id = #{id}
-            AND ISNULL( t2.end_time )
+            t1.admin_id = #{id} and t3.`code` is not null
+            AND t2.state = 0
             <if test="code!='' and code!=null">
                 and t3.`code` LIKE CONCAT('%',#{code},'%')
+            </if>
+            <if test="alarmTimeStart!=null and alarmTimeEnd!=null">
+                and t3.alarm_time <![CDATA[ <= ]]> #{alarmTimeEnd} and t3.alarm_time >= #{alarmTimeStart}
+            </if>
+            <if test="type !=null">
+                and t3.category = #{type}
+            </if>
+            <if test="source !=null">
+                and t5.parent_id = #{source}
             </if>
         </where>
         union all
         SELECT
         t3.event_source,
+        t5.region_name source,
         t3.category,
         t2.step_name,
+        t3.`id` caseId,
         t3.`code`,
         t2.create_time,
-        t2.limit_time
+        t2.limit_time,
+        t4.url picture
         FROM
         ums_dispose_record t2
         LEFT JOIN ums_base_case t3 ON t2.base_case_id = t3.id
+        left JOIN ums_image_resources t4 ON t2.base_case_id=t4.belong_to_id
+        inner join ums_sccg_region t5 on t5.id = t3.community_id
         <where>
             t2.handler_id = #{id}
-            AND ISNULL(
-            t2.end_time
-            )
+            AND t2.state = 0
             <if test="code!='' and code!=null">
                 and t3.`code` LIKE CONCAT('%',#{code},'%')
             </if>
+            <if test="alarmTimeStart!=null and alarmTimeEnd!=null">
+                and t3.alarm_time <![CDATA[ <= ]]> #{alarmTimeEnd} and t3.alarm_time >= #{alarmTimeStart}
+            </if>
+            <if test="type !=null">
+                and t3.category = #{type}
+            </if>
+            <if test="source !=null">
+                and t5.parent_id = #{source}
+            </if>
         </where>
+        ) as t
+         order by create_time desc
     </select>
 </mapper>

--
Gitblit v1.8.0