From 8896a0841940bac10c17b9a02f8d1cd76dd52084 Mon Sep 17 00:00:00 2001
From: skyouc <creaycat@gmail.com>
Date: 星期五, 16 一月 2026 14:19:51 +0800
Subject: [PATCH] 出库查询及任务档流程优化
---
src/main/resources/mapper/OrderDetlPakoutMapper.xml | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/main/resources/mapper/OrderDetlPakoutMapper.xml b/src/main/resources/mapper/OrderDetlPakoutMapper.xml
index 78c72e1..96844e9 100644
--- a/src/main/resources/mapper/OrderDetlPakoutMapper.xml
+++ b/src/main/resources/mapper/OrderDetlPakoutMapper.xml
@@ -60,12 +60,15 @@
<if test="brand != null and brand != ''">
and brand = #{brand}
</if>
- and standby1 = #{standby1}
- and standby2 = #{standby2}
- and standby3 = #{standby3}
- and box_type1 = #{boxType1}
- and box_type2 = #{boxType2}
- and box_type3 = #{boxType3}
+<!-- <if test="standby1 != null and standby1 != ''">-->
+<!-- and standby1 = #{standby1}-->
+<!-- </if>-->
+ <if test="standby2 != null and standby2 != ''">
+ and standby2 = #{standby2}
+ </if>
+ <if test="standby3 != null and standby3 != ''">
+ and standby3 = #{standby3}
+ </if>
</sql>
<sql id="standbyAllMemo">
-- and line_number = #{lineNumber}
--
Gitblit v1.9.1