From d9aab59e3d4c8688eaf00c0d98f6926a218ff57f Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期一, 28 四月 2025 15:28:11 +0800
Subject: [PATCH] 拣货单出库完成,但是库存没减,日志埋点

---
 src/main/resources/mapper/PlaMapper.xml |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/mapper/PlaMapper.xml b/src/main/resources/mapper/PlaMapper.xml
index 7aa3286..ea2d216 100644
--- a/src/main/resources/mapper/PlaMapper.xml
+++ b/src/main/resources/mapper/PlaMapper.xml
@@ -25,10 +25,22 @@
             <if test="etime != null">
                 and pakin_time &lt;= #{etime}
             </if>
+            <if test="status == null or status.trim() == ''">
+                and status in ('宸插叆搴�','閮ㄥ垎鍑哄簱','寰呭嚭搴�')
+            </if>
             <if test="status != null and status != ''">
                 and status = #{status}
             </if>
+            <if test="type != null and type != ''">
+                and type = #{type}
+            </if>
+            <if test="workshop != null and workshop != ''">
+                and workshop = #{workshop}
+            </if>
+            <if test="transfer != null and transfer != ''">
+                and transfer = #{transfer}
+            </if>
         </where>
-        GROUP BY brand,matnr,workshop ORDER BY matnr,workshop
+        GROUP BY brand,matnr,workshop HAVING SUM(weight_anfme) > 0 ORDER BY matnr,workshop
     </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1