自动化立体仓库 - WMS系统
1
zhangchao
2024-11-01 8cdd187911b0d660274e352dcbb41c296dcf0693
src/main/resources/mapper/OrderDetlMapper.xml
@@ -80,9 +80,14 @@
        where 1=1
        and order_no = #{orderNo}
        and matnr = #{matnr}
        <if test="batch!=null and batch!='' ">
            and batch = #{batch}
        </if>
        <choose>
            <when test="batch != null and batch != ''">
                and batch = #{batch}
            </when>
            <otherwise>
                and (batch IS NULL OR batch = '')
            </otherwise>
        </choose>
    </select>
    <select id="selectWorkingDetls" resultMap="BaseResultMap">