From 2f6502b1ac9e1a979a8e01c9c9763d9c327e522b Mon Sep 17 00:00:00 2001
From: zhangc <zc@123>
Date: 星期五, 20 十二月 2024 08:52:34 +0800
Subject: [PATCH] 切换环境至dev并优化单据处理逻辑
---
src/main/resources/mapper/LocRuleMapper.xml | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/LocRuleMapper.xml b/src/main/resources/mapper/LocRuleMapper.xml
index 781ad78..5a1f5bb 100644
--- a/src/main/resources/mapper/LocRuleMapper.xml
+++ b/src/main/resources/mapper/LocRuleMapper.xml
@@ -37,9 +37,17 @@
</select>
<select id="selectByMixed" resultMap="BaseResultMap">
- select top 1 * from asr_loc_rule
+ select * from asr_loc_rule
where mixed = #{mixed}
and status = 1
</select>
+ <update id="updateKeepGoByMatnr">
+ update asr_loc_rule set keep_go = #{keepGo} where matnr = #{matnr}
+ </update>
+
+ <update id="updateKeepGoByMixed">
+ update asr_loc_rule set keep_go = #{keepGo} where mixed = 1
+ </update>
+
</mapper>
--
Gitblit v1.9.1