From 0927dceed8e5504ec0b5eeaa446f5423ddc74ec3 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期三, 26 十一月 2025 13:04:05 +0800
Subject: [PATCH] 1.完善验布组托 2.修复销售订单默认勾选数据对不上
---
src/main/resources/mapper/third/ExdInstockSourceMapper.xml | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/third/ExdInstockSourceMapper.xml b/src/main/resources/mapper/third/ExdInstockSourceMapper.xml
index 7cf04df..8d77a0f 100644
--- a/src/main/resources/mapper/third/ExdInstockSourceMapper.xml
+++ b/src/main/resources/mapper/third/ExdInstockSourceMapper.xml
@@ -52,12 +52,18 @@
<select id="listOrderNo" resultType="java.lang.String">
select distinct fbillno
from Exd_Instock_Source
- where status = 0
+ where status in(0,4)
+ </select>
+
+ <select id="deletelistOrderNo" resultType="com.zy.third.entity.ExdInstockSource">
+ select *
+ from Exd_Instock_Source
+ where status = 5
</select>
<select id="listAll" resultType="com.zy.third.entity.ExdInstockSource">
- select * from Exd_Instock_Source where fbillno = #{orderNo}
+ select * from Exd_Instock_Source where fbillno = #{orderNo} and Status in(0,1,2,3,4)
</select>
--
Gitblit v1.9.1