野心家
2025-06-19 020f48adb61a0350924783c1b397bd381d20ddc8
src/main/resources/mapper/LocMastMapper.xml
@@ -33,23 +33,38 @@
        <result column="inv_wh" property="invWh" />
        <result column="mk" property="mk" />
        <result column="barcode" property="barcode" />
        <result column="Pdc_type" property="PdcType" />
        <result column="ctn_no" property="ctnNo" />
        <result column="pack_status" property="packStatus" />
        <result column="fire_status" property="fireStatus" />
        <result column="fire_no" property="fireNo" />
        <result column="channel" property="channel" />
    </resultMap>
    <select id="queryFreeLocMast" resultMap="BaseResultMap">
        select top 1 * from asr_loc_mast where row1=#{row} and loc_sts='O' order by loc_sts desc ,lev1 asc,bay1 asc
        select top 1 *
        from asr_loc_mast
        where row1=#{row}
        and loc_sts='O'
        <if test="locType1 != null">
            and loc_type1 = #{locType1}
        </if>
        order by NEWID(),lev1 asc,bay1 asc
    </select>
    <select id="queryDemoSourceLoc" resultMap="BaseResultMap">
        select top 1 * from asr_loc_mast where crn_no = #{crnNo} and (loc_sts='F' or loc_sts='D')
        order by loc_sts desc ,lev1 asc, bay1 asc, row1 asc
        select top 1 * from asr_loc_mast where crn_no = #{crnNo}
        and loc_sts='D'
        ORDER BY NEWID()
    </select>
    <select id="queryDemoLoc" resultMap="BaseResultMap">
        select top 1 * from asr_loc_mast where crn_no = #{crnNo} and loc_sts='O'
        order by loc_sts desc ,lev1 desc, bay1 desc, row1 desc
        select top 1 * from asr_loc_mast where crn_no = #{crnNo} and loc_sts = 'O'
        ORDER BY NEWID()
    </select>
    <select id="selectztgx" resultMap="BaseResultMap">
        select  top 1 * from asr_loc_mast where loc_sts in (#{sts1}) and channel=#{count}+1
    </select>
</mapper>