From 57936e11434f6614f818a0a0a495918dc1af6dd6 Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期一, 02 十二月 2024 08:07:01 +0800 Subject: [PATCH] 单据出库完成 --- src/main/resources/mapper/OrderDetlMapper.xml | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/OrderDetlMapper.xml b/src/main/resources/mapper/OrderDetlMapper.xml index 74ebaf0..8c855f7 100644 --- a/src/main/resources/mapper/OrderDetlMapper.xml +++ b/src/main/resources/mapper/OrderDetlMapper.xml @@ -199,5 +199,20 @@ </otherwise> </choose> </update> + <update id="increaseWorkQtyByOrderNo"> + update man_order_detl + set work_qty = work_qty + #{qty} + where 1=1 + and order_no = #{orderNo} + and matnr = #{matnr} + <choose> + <when test="batch != null and batch != ''"> + and batch = #{batch} + </when> + <otherwise> + and (batch IS NULL OR batch = '') + </otherwise> + </choose> + </update> </mapper> -- Gitblit v1.9.1