自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-14 e732ec664a35080497fd17d6550fd5d718466332
src/main/resources/mapper/OrderDetlMapper.xml
@@ -74,6 +74,13 @@
        </if>
    </select>
    <select id="selectItemNoneOfBatch" resultMap="BaseResultMap">
        select * from man_order_detl
        where 1=1
        and order_no = #{orderNo}
        and matnr = #{matnr}
    </select>
    <select id="selectWorkingDetls" resultMap="BaseResultMap">
        select * from man_order_detl
        where 1=1
@@ -181,4 +188,21 @@
        and order_id = #{orderId}
    </update>
    <select id="selectRemainder" resultMap="BaseResultMap">
        select
        *
        from man_order_detl
        where 1=1
        and anfme > qty
        and order_id = #{orderId}
    </select>
    <select id="selectByMatnr" resultMap="BaseResultMap">
        select
        *
        from man_order_detl
        where 1=1
        and matnr = #{matnr}
    </select>
</mapper>