From abe51c2213ed96f3c09e69333538f0d7b9a92ec0 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sun, 04 Feb 2024 10:26:53 +0800
Subject: [PATCH] 行政区查询修改,整改情况关联查询调整

---
 src/main/java/org/springblade/modules/taskPlaceRectification/mapper/TaskPlaceRectificationMapper.xml |  100 +++++++++++++++++++++++++++++++++++++------------
 1 files changed, 75 insertions(+), 25 deletions(-)

diff --git a/src/main/java/org/springblade/modules/taskPlaceRectification/mapper/TaskPlaceRectificationMapper.xml b/src/main/java/org/springblade/modules/taskPlaceRectification/mapper/TaskPlaceRectificationMapper.xml
index 87fcd62..1cdcf2e 100644
--- a/src/main/java/org/springblade/modules/taskPlaceRectification/mapper/TaskPlaceRectificationMapper.xml
+++ b/src/main/java/org/springblade/modules/taskPlaceRectification/mapper/TaskPlaceRectificationMapper.xml
@@ -118,7 +118,25 @@
 
     <select id="selectTaskPlaceRectificationById" parameterType="long" resultMap="TaskPlaceRectificationDTOResult">
         SELECT
-        jtpr.*,
+        jtpr.id,
+        jtpr.place_check_id,
+        jtpr.task_id,
+        jtpr.STATUS,
+        jtpr.task_name,
+        jtpr.remark,
+        jtpr.update_time,
+        jtpr.create_time,
+        jtpr.house_code,
+        jtpr.rectification_notice_flag,
+        jtpr.rectification_end_time,
+        jtpr.rectification_complete_time,
+        jtpr.rectification_flag,
+        jtpr.punish_flag,
+        jtpr.police_station,
+        jtpr.rectification_notice_img_url,
+        jtpr.signature_path,
+        jtpr.create_user,
+        jtpr.image_urls,
         jp.id jpid,
         jp.place_name,
         jp.location,
@@ -130,7 +148,8 @@
         bu.`name`,
         jpe.legal_tel,
         jpe.legal_person,
-        jt.remark reasonFailure
+        jt.remark reasonFailure,
+        jda.address_name
     FROM
         jczz_task_place_rectification jtpr
         LEFT JOIN jczz_task jt on jt.id = jtpr.task_id
@@ -139,6 +158,7 @@
         LEFT JOIN blade_region br ON br.`code` = jg.community_code
         LEFT JOIN jczz_place_ext jpe ON jpe.place_id = jp.id
         LEFT JOIN blade_user bu ON bu.id = jtpr.create_user
+        LEFT JOIN jczz_doorplate_address jda on jda.address_code=jtpr.house_code
     WHERE jtpr.task_id = #{taskId}
     </select>
 
@@ -165,7 +185,7 @@
         jtpr.signature_path,
         jtpr.create_user,
         jtpr.image_urls,
-        bd.dept_name,
+        jpag.pcs_name deptName,
         jp.id jpid,
         jp.place_name,
         jp.location,
@@ -186,14 +206,21 @@
         LEFT JOIN blade_region br ON br.`code` = jg.community_code
         LEFT JOIN jczz_place_ext jpe ON jpe.place_id = jp.id
         LEFT JOIN blade_user bu ON bu.id = jtpr.create_user
-        LEFT JOIN blade_dept bd ON bu.dept_id = bd.id
-        LEFT JOIN jczz_doorplate_address jda on jda.address_code=jp.house_code
+        LEFT JOIN jczz_doorplate_address jda on jda.address_code=jtpr.house_code
+        LEFT JOIN jczz_police_affairs_grid jpag on jp.jw_grid_code= jpag.jw_grid_code
         <where>
             <if test="taskPalce.id != null ">and id = #{taskPalce.id}</if>
             <if test="taskPalce.placeCheckId != null ">and place_check_id = #{taskPalce.placeCheckId}</if>
             <if test="taskPalce.taskId != null ">and task_id = #{taskPalce.taskId}</if>
             <if test="taskPalce.status != null ">and status = #{taskPalce.status}</if>
             <if test="taskPalce.taskName != null  and taskPalce.taskName != ''">and task_name = #{taskPalce.taskName}
+            </if>
+
+            <if test="taskPalce.startTime!=null and taskPalce.startTime!=''">
+                and jtpr.create_time&gt;=#{taskPalce.startTime}
+            </if>
+            <if test="taskPalce.endTime!=null and taskPalce.endTime!=''">
+                and jtpr.create_time&lt;=#{taskPalce.endTime}
             </if>
 
             <if test="taskPalce.placeName!=null and taskPalce.placeName!=''">
@@ -249,17 +276,29 @@
             <if test="isAdministrator==2">
                 <choose>
                     <when test="regionChildCodesList !=null and regionChildCodesList.size()>0">
-                        and jg.grid_code in
+                        and
+                        (
+                        jg.grid_code in
                         <foreach collection="regionChildCodesList" item="code" open="(" close=")" separator=",">
                             #{code}
                         </foreach>
+                        or
+                        jpag.community_code in
+                        <foreach collection="regionChildCodesList" item="code" open="(" close=")" separator=",">
+                            #{code}
+                        </foreach>
+                        )
                     </when>
+                    <otherwise>
+                        and
+                        (
+                        jg.grid_code in ('') or jpag.community_code in ('')
+                        )
+                    </otherwise>
                 </choose>
             </if>
-            and jtpr.create_time=(
-            SELECT MAX(create_time) FROM jczz_task_place_rectification where jtpr.house_code=house_code
-            )
         </where>
+        order by jtpr.create_time desc
     </select>
 
 
@@ -303,12 +342,13 @@
         bd.dict_value,
         (
         SELECT
-        IFNULL(sum( jpc.hidden_danger_number ) ,0)
+        count(jpr.id)
         FROM
-        jczz_place_check jpc
+        jczz_patrol_record jpr
+        LEFT JOIN jczz_place_check jpc ON jpr.place_check_id = jpc.id
         LEFT JOIN jczz_place jp ON jpc.house_code = jp.house_code
         LEFT JOIN jczz_grid jg ON jg.grid_code = jp.grid_code
-        left join blade_region br on br.code = jg.community_code
+        LEFT JOIN blade_region br ON br.CODE = jg.community_code
         <where>
             <if test="isAdministrator==2">
                 <choose>
@@ -320,18 +360,15 @@
                     </when>
                 </choose>
             </if>
+            and jpr.state = '0'
             and jp.nine_type = bd.dict_key
             and br.town_code =#{code}
-            and jpc.create_time=(
-            SELECT MAX(create_time) FROM jczz_place_check where jpc.house_code=house_code
-
             <if test="taskPlaceRectification.startTime!=null and taskPlaceRectification.startTime!=''">
-                and create_time&gt;=#{taskPlaceRectification.startTime}
+                and jpc.create_time&gt;=#{taskPlaceRectification.startTime}
             </if>
             <if test="taskPlaceRectification.endTime!=null and taskPlaceRectification.endTime!=''">
-                and create_time&lt;=#{taskPlaceRectification.endTime}
+                and jpc.create_time&lt;=#{taskPlaceRectification.endTime}
             </if>
-            )
         </where>
         ) number
         FROM
@@ -343,8 +380,23 @@
         order by bd.sort asc
 
     </select>
+
+    <resultMap type="org.springblade.modules.taskPlaceRectification.excel.TaskPlaceRectificationExcel"
+               id="TaskPlaceRectificationExcelResult">
+        <result property="placeName" column="place_name"/>
+        <result property="createTime" column="create_time"/>
+        <result property="rectificationNoticeFlag" column="rectification_notice_flag"/>
+        <result property="rectificationEndTime" column="rectification_end_time"/>
+        <result property="rectificationFlag" column="rectification_flag"/>
+
+        <collection property="patrolRecordVOList" column="place_check_id" select="selectPatrolRecordList"
+                    javaType="java.util.List" ofType="org.springblade.modules.patrol.vo.PatrolRecordVO"
+                    autoMapping="true">
+        </collection>
+    </resultMap>
+
     <select id="export"
-            resultType="org.springblade.modules.taskPlaceRectification.excel.TaskPlaceRectificationExcel">
+            resultMap="TaskPlaceRectificationExcelResult">
 
         SELECT
         jtpr.id,
@@ -366,7 +418,7 @@
         jtpr.signature_path,
         jtpr.create_user,
         jtpr.image_urls,
-        bd.dept_name,
+        jpag.pcs_name deptName,
         jp.id jpid,
         jp.place_name,
         jp.location,
@@ -387,8 +439,8 @@
         LEFT JOIN blade_region br ON br.`code` = jg.community_code
         LEFT JOIN jczz_place_ext jpe ON jpe.place_id = jp.id
         LEFT JOIN blade_user bu ON bu.id = jtpr.create_user
-        LEFT JOIN blade_dept bd ON bu.dept_id = bd.id
-        LEFT JOIN jczz_doorplate_address jda on jda.address_code=jp.house_code
+        LEFT JOIN jczz_doorplate_address jda on jda.address_code=jtpr.house_code
+        LEFT JOIN jczz_police_affairs_grid jpag on jpag.community_code= jg.community_code
         <where>
             <if test="taskPalce.id != null ">and id = #{taskPalce.id}</if>
             <if test="taskPalce.placeCheckId != null ">and place_check_id = #{taskPalce.placeCheckId}</if>
@@ -457,9 +509,7 @@
                     </when>
                 </choose>
             </if>
-            and jtpr.create_time=(
-            SELECT MAX(create_time) FROM jczz_task_place_rectification where jtpr.house_code=house_code
-            )
+
         </where>
 
 

--
Gitblit v1.9.3