From 80cd1569120416b096d28ebbe9a8e6e1d867f6e0 Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期四, 19 九月 2024 14:19:45 +0800 Subject: [PATCH] 盘点异常处理 --- src/main/resources/mapper/OrderDetlMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/OrderDetlMapper.xml b/src/main/resources/mapper/OrderDetlMapper.xml index 8c94d80..dede67e 100644 --- a/src/main/resources/mapper/OrderDetlMapper.xml +++ b/src/main/resources/mapper/OrderDetlMapper.xml @@ -231,5 +231,11 @@ and order_no = #{orderNo} and brand = #{brand} </update> + <update id="updateCheckExceptionByGroup"> + update man_order_detl set source = 1 where 1 = 1 and brand in + <foreach collection="groups" item="item" separator="," open="(" close=")"> + #{item} + </foreach> + </update> </mapper> -- Gitblit v1.9.1