From a9325d1f1913890dd53296abc4490d9ef95a4e53 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期二, 26 十一月 2024 09:53:13 +0800
Subject: [PATCH] 发货前核对功能

---
 src/main/resources/mapper/OrderMapper.xml |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/mapper/OrderMapper.xml b/src/main/resources/mapper/OrderMapper.xml
index be78b61..6aed376 100644
--- a/src/main/resources/mapper/OrderMapper.xml
+++ b/src/main/resources/mapper/OrderMapper.xml
@@ -79,7 +79,7 @@
                 mo.doc_type = mt.doc_id
         where
             mt.pakout = 1
-          and mo.settle = 4
+          and mo.settle = 5
           and mo.status = 1
         order by
             mo.create_time asc
@@ -110,5 +110,8 @@
           and md.inspect = 0
           and mo.settle = 1
     </select>
+    <select id="selectOrderNosByOrderNoLike" resultType="java.lang.String">
+        select order_no from man_order where settle = 4 and order_no like '%' + #{orderNo} + '%'
+    </select>
 
 </mapper>

--
Gitblit v1.9.1