From 7102e9faca7b1cc6da94be325831c13d0301d7f6 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期一, 09 二月 2026 14:42:43 +0800
Subject: [PATCH] #
---
src/main/resources/mapper/third/ExdInstockSourceMapper.xml | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/third/ExdInstockSourceMapper.xml b/src/main/resources/mapper/third/ExdInstockSourceMapper.xml
index 7cf04df..65c51dd 100644
--- a/src/main/resources/mapper/third/ExdInstockSourceMapper.xml
+++ b/src/main/resources/mapper/third/ExdInstockSourceMapper.xml
@@ -37,6 +37,7 @@
<result property="reador" column="Reador" />
<result property="writormsg" column="WritorMsg" />
<result property="readormsg" column="ReadorMsg" />
+ <result property="prodinkind" column="ProdInKind" />
</resultMap>
<sql id="Base_Column_List">
@@ -52,12 +53,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