From 564bf7ab6a639c2c4557d35b8fd9b51dca60a738 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期二, 22 八月 2023 13:32:34 +0800
Subject: [PATCH] #规则完善

---
 src/main/resources/mapper/OrderMapper.xml |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/src/main/resources/mapper/OrderMapper.xml b/src/main/resources/mapper/OrderMapper.xml
index 20f3343..92140e8 100644
--- a/src/main/resources/mapper/OrderMapper.xml
+++ b/src/main/resources/mapper/OrderMapper.xml
@@ -57,6 +57,19 @@
         <choose>
             <when test="deptId != null and deptId != ''">
                 AND (CHARINDEX(','+#{deptId}+',', ','+sd.path+',') > 0 OR sd.id = #{deptId})
+                or
+                (
+                    user_id = #{userId}
+                    or
+                    mo.id in
+                    (
+                        select
+                        order_id
+                        from man_order_foll
+                        where 1=1
+                        and user_id = #{userId}
+                    )
+                )
             </when>
             <otherwise>
                 and
@@ -81,10 +94,7 @@
             and (
             mo.uuid like concat('%',#{condition},'%')
             or mo.name like concat('%',#{condition},'%')
-            or mo.tel like concat('%',#{condition},'%')
-            or mo.contacts like concat('%',#{condition},'%')
             or mo.remarks like concat('%',#{condition},'%')
-            or mo.director like concat('%',#{condition},'%')
             or mo.addr like concat('%',#{condition},'%')
             )
         </if>

--
Gitblit v1.9.1