自动化立体仓库 - WMS系统
lty
3 天以前 d907a822a940c7ec0fb7de0ca845472bda52229b
src/main/resources/mapper/LocDetlMapper.xml
@@ -44,6 +44,7 @@
        <result column="appe_user" property="appeUser" />
        <result column="appe_time" property="appeTime" />
        <result column="memo" property="memo" />
        <result column="mix_number" property="mixNumber"/>
    </resultMap>
    <sql id="batchSeq">
@@ -55,9 +56,26 @@
                and (batch IS NULL OR batch = '')
            </otherwise>
        </choose>
        <choose>
            <when test="barcode != null and barcode != ''">
                and barcode = #{barcode}
            </when>
            <otherwise>
                and (barcode IS NULL OR barcode = '')
            </otherwise>
        </choose>
    </sql>
    <select id="selectItem" resultMap="BaseResultMap">
        select top 1 *
        from asr_loc_detl
        where 1=1
        and loc_no = #{locNo}
        and matnr = #{matnr}
        <include refid="batchSeq"></include>
    </select>
    <select id="selectItemCarton" resultMap="BaseResultMap">
        select top 1 *
        from asr_loc_detl
        where 1=1
@@ -417,4 +435,14 @@
        and lm.loc_sts = 'F'
        order by ld.appe_time asc
    </select>
    <select id="getSameDetlList2" resultType="java.lang.String">
        select ld.loc_no from asr_loc_detl as ld
                                  left join asr_loc_mast as lm on ld.loc_no = lm.loc_no
        where 1 = 1
          and ld.order_no = #{orderNo}
          and lm.loc_type2 = #{areaId}
          and lm.loc_sts = 'F'
        order by ld.appe_time asc
    </select>
</mapper>