|
@@ -582,7 +582,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<!-- 库位视图-->
|
|
<!-- 库位视图-->
|
|
<select id="queryByListAllInvLotAttView" resultType="com.ruoyi.base.domain.dto.BaseLocationGuiDTO" parameterType="Object">
|
|
<select id="queryByListAllInvLotAttView" resultType="com.ruoyi.base.domain.dto.BaseLocationGuiDTO" parameterType="Object">
|
|
select t1.zone_id zoneId,t1.id,t1.location_no locationNo
|
|
select t1.zone_id zoneId,t1.id,t1.location_no locationNo
|
|
- ,t1.shift_no shiftNo,t1.shift_index shiftIndex,t1.col_no colNo,t1.col_index colIndex
|
|
|
|
|
|
+ ,CONCAT(t1.row_no,t1.shift_no) rowNoShiftNo,t1.shift_no shiftNo,t1.shift_index shiftIndex,t1.col_no colNo,t1.col_index colIndex
|
|
,t1.stock_status stockStatus,t1.is_empty isEmpty
|
|
,t1.stock_status stockStatus,t1.is_empty isEmpty
|
|
,t4.lotatt01,t4.lotatt02,t4.lotatt03,t4.lotatt04,t4.lotatt05,t4.lotatt06
|
|
,t4.lotatt01,t4.lotatt02,t4.lotatt03,t4.lotatt04,t4.lotatt05,t4.lotatt06
|
|
,t4.lotatt07,t4.lotatt08,t4.lotatt09,t4.lotatt10,t4.lotatt11,t4.lotatt12
|
|
,t4.lotatt07,t4.lotatt08,t4.lotatt09,t4.lotatt10,t4.lotatt11,t4.lotatt12
|
|
@@ -597,7 +597,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
where t1.zone_id = #{zoneId} and t1.id not in (99997, 99998, 99999)
|
|
where t1.zone_id = #{zoneId} and t1.id not in (99997, 99998, 99999)
|
|
<choose>
|
|
<choose>
|
|
<when test=" sort == '1'.toString() ">
|
|
<when test=" sort == '1'.toString() ">
|
|
- ORDER BY t1.shift_no + 0,t1.location_no
|
|
|
|
|
|
+ ORDER BY CONCAT(t1.row_no,t1.shift_no),t1.location_no
|
|
</when >
|
|
</when >
|
|
<when test=" sort == '2'.toString() ">
|
|
<when test=" sort == '2'.toString() ">
|
|
ORDER BY t1.col_no + 0,t1.location_no
|
|
ORDER BY t1.col_no + 0,t1.location_no
|