From 518121d2718b87d99b12c1b29601dd2c07f6f42d Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期二, 21 十月 2025 15:03:14 +0800
Subject: [PATCH] #
---
src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml b/src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml
index b9df3d0..ca9d29b 100644
--- a/src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml
+++ b/src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml
@@ -53,10 +53,10 @@
<result column="box_type1" property="boxType1" />
<result column="box_type2" property="boxType2" />
<result column="box_type3" property="boxType3" />
+ <result column="cstateid" property="cstateid" />
</resultMap>
<sql id="standbyAll">
-
<choose>
<when test="batch != null and batch != ''">
and batch = #{batch}
@@ -233,6 +233,13 @@
<include refid="standbyAll"></include>
</update>
+ <update id="increaseQtyById">
+ update man_order_detl_pakout
+ set qty = qty + #{qty}
+ where id = #{id}
+ </update>
+
+
<update id="increaseWorkQty">
update man_order_detl_pakout
set work_qty = work_qty + #{workQty}
@@ -242,4 +249,12 @@
<include refid="standbyAll"></include>
</update>
+ <update id="increaseWorkQtyById">
+ update man_order_detl_pakout
+ set work_qty = work_qty + #{workQty}
+ where 1=1
+ and id = #{id}
+ </update>
+
+
</mapper>
--
Gitblit v1.9.1