From f8a5192aa2797e83f5000ff9035f149b0a1b00a1 Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期一, 28 十月 2024 15:42:58 +0800
Subject: [PATCH] #更新接口

---
 zy-asrs-common/src/main/resources/mapper/wms/OrderDetlMapper.xml |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/zy-asrs-common/src/main/resources/mapper/wms/OrderDetlMapper.xml b/zy-asrs-common/src/main/resources/mapper/wms/OrderDetlMapper.xml
index e83d06c..35f7e18 100644
--- a/zy-asrs-common/src/main/resources/mapper/wms/OrderDetlMapper.xml
+++ b/zy-asrs-common/src/main/resources/mapper/wms/OrderDetlMapper.xml
@@ -24,6 +24,13 @@
         and qty &lt; anfme
     </select>
 
+    <select id="selectDetls" resultType="com.zy.asrs.common.wms.entity.OrderDetl">
+        select * from wms_order_detl
+        where 1=1
+          and order_id = #{orderId}
+          and host_id = #{hostId}
+    </select>
+
     <select id="selectItem" resultType="com.zy.asrs.common.wms.entity.OrderDetl">
         select * from wms_order_detl
         where 1=1
@@ -137,7 +144,7 @@
     </update>
 
     <update id="increaseWorkQty">
-        update man_order_detl
+        update wms_order_detl
         set work_qty = work_qty + #{workQty}
         where 1=1
         and order_id = #{orderId}

--
Gitblit v1.9.1