自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-03-28 45d87ae7a3ea22f298d073ee35fd067d7fd72eb4
src/main/resources/mapper/LocDetlMapper.xml
@@ -144,9 +144,14 @@
        where 1=1
        and b.loc_sts = 'F'
        and a.matnr = #{matnr}
        <if test="batch != null and batch != ''">
            and a.batch = #{batch}
        </if>
        <choose>
            <when test="batch != null and batch != ''">
                and a.batch = #{batch}
            </when>
            <otherwise>
                and (a.batch IS NULL OR a.batch = '')
            </otherwise>
        </choose>
        <if test="orderNo != null and orderNo != ''">
            and a.orderNo = #{orderNo}
        </if>
@@ -207,4 +212,13 @@
        desc
    </select>
    <select id="queryStockAnfme" resultType="java.lang.Double">
        select sum(anfme) as count from man_loc_detl
         where 1=1
         and matnr = #{matnr}
        <if test="batch != null and batch != ''">
            and batch = #{batch}
        </if>
    </select>
</mapper>