From d963031435c593b761436d819268f5493923c41d Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 22 九月 2026 18:37:52 +0800
Subject: [PATCH] 1.导出新增图表

---
 smartor/src/main/resources/mapper/smartor/PatArchiveOutMapper.xml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/PatArchiveOutMapper.xml b/smartor/src/main/resources/mapper/smartor/PatArchiveOutMapper.xml
index ed9d355..ecb4b41 100644
--- a/smartor/src/main/resources/mapper/smartor/PatArchiveOutMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/PatArchiveOutMapper.xml
@@ -120,12 +120,12 @@
         <if test="orgid != null and orgid != ''">
             AND orgid = #{orgid}
         </if>
-        <if test="deptcodes != null ">and deptcode in
+        <if test="deptcodes != null and deptcodes.size() > 0">and deptcode in
             <foreach collection="deptcodes" item="deptcode" open="(" separator="," close=")">
                 #{deptcode}
             </foreach>
         </if>
-        <if test="drCodes != null ">and drcode in
+        <if test="drCodes != null and drCodes.length > 0">and drcode in
             <foreach collection="drCodes" item="drCode" open="(" separator="," close=")">
                 #{drCode}
             </foreach>
@@ -137,12 +137,12 @@
         <if test="orgid != null and orgid != ''">
             AND orgid = #{orgid}
         </if>
-        <if test="deptcodes != null ">and leaveldeptcode in
+        <if test="deptcodes != null and deptcodes.size() > 0">and leaveldeptcode in
             <foreach collection="deptcodes" item="deptcode" open="(" separator="," close=")">
                 #{deptcode}
             </foreach>
         </if>
-        <if test="drCodes != null ">and drcode in
+        <if test="drCodes != null and drCodes.length > 0">and drcode in
             <foreach collection="drCodes" item="drCode" open="(" separator="," close=")">
                 #{drCode}
             </foreach>

--
Gitblit v1.9.3