From fe9c6432b0b6eea428bbb856fabe4f7d1e84f0cb Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Wed, 27 Oct 2021 17:16:01 +0800
Subject: [PATCH] 保安员资格审查查询修改

---
 src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml |   35 ++++++++++++++++++++++++++++++-----
 1 files changed, 30 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml b/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
index bac3c75..d1ff6bd 100644
--- a/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
@@ -395,7 +395,29 @@
         WHERE parent_id = #{id}
           and is_deleted = 0
     </select>
+
+    <!--保安公司树-->
     <select id="securityLazyTree" resultMap="treeNodeResultMap">
+        (
+        SELECT
+        id,
+        parent_id,
+        dept_name AS title,
+        id AS "value",
+        id AS "key",
+        0 AS "has_children"
+        FROM
+        blade_dept
+        where is_deleted = 0
+        and
+        (id = 1413470343230877697
+        or id = 1425366663452196865
+        or id = 1418458374477549569
+        or id = 1420222768149966850
+        or id = 1426354978959691778)
+        )
+        union
+        (
         SELECT
         DISTINCT
         dept.id,
@@ -417,14 +439,17 @@
         sys_information si
         on
         si.departmentid = dept.id
+        left join
+        sys_jurisdiction sj
+        on
+        sj.id = si.jurisdiction
         WHERE
         1=1
-        and dept_category = 1
+        and si.stats != 4
         AND dept.is_deleted = 0
-        and dept.id !=1420222961377357825
-        and dept.parent_id!=1420222961377357825
-        <if test="param1!=null and param1!='' and param1!='1123598813738675201'">
-            and si.jurisdiction = #{param1}
+        <if test="jurisdiction!=null and jurisdiction!='' and jurisdiction!='1372091709474910209'">
+            and (sj.id = #{jurisdiction} or sj.parent_id = #{jurisdiction})
         </if>
+        )
     </select>
 </mapper>

--
Gitblit v1.9.3