From 401da88caef79968c8c0b1cb15487c4a554761ec Mon Sep 17 00:00:00 2001
From: zhangchao <zc857179121@qq.com>
Date: 星期三, 23 十月 2024 14:37:04 +0800
Subject: [PATCH] 测试环境暂时注释
---
src/main/resources/mapper/LocMastMapper.xml | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/LocMastMapper.xml b/src/main/resources/mapper/LocMastMapper.xml
index 5d6b2cc..81f5acf 100644
--- a/src/main/resources/mapper/LocMastMapper.xml
+++ b/src/main/resources/mapper/LocMastMapper.xml
@@ -119,7 +119,18 @@
<if test="locType1 != null">
and loc_type1 = #{locType1}
</if>
- ORDER BY lev1,bay1,row1
+ ORDER BY row1,bay1,lev1
+ </select>
+
+ <select id="selectAreaEmptyByLev" resultMap="BaseResultMap">
+ select * from asr_loc_mast
+ where loc_sts in ('O')
+ and loc_type3 = #{locType3}
+ <if test="locType1 != null">
+ and loc_type1 = #{locType1}
+ </if>
+ and lev1 = #{lev}
+ ORDER BY row1,bay1,lev1
</select>
<select id="selectEmptyByLocNos" resultMap="BaseResultMap">
@@ -144,4 +155,11 @@
and (bay1 >= #{startBay} and bay1 <= #{endBay})
and (lev1 >= #{startLev} and lev1 <= #{endLev})
</select>
+
+ <select id="selectLocDetlNotExist" resultMap="BaseResultMap">
+ select * from asr_loc_mast lm
+ left join asr_loc_detl ld
+ on lm.loc_no = ld.loc_no
+ where ld.matnr is null and lm.loc_sts = 'F'
+ </select>
</mapper>
--
Gitblit v1.9.1