自动化立体仓库 - WMS系统
pang.jiabao
2024-11-26 9431c85fa78ea946d49f1b201d8ea4067ec31e69
发货核对限制出库单据
2个文件已修改
4 ■■■■ 已修改文件
src/main/resources/mapper/OrderDetlMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/OrderMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/OrderDetlMapper.xml
@@ -139,7 +139,7 @@
        and md.danger = 0
    </select>
    <select id="selectDetlList" resultType="java.lang.String">
        select brand from man_order_detl where order_no = #{orderNo}
        select brand from man_order_detl where order_no = #{orderNo} and doc_type in(21,23)
    </select>
    <update id="increase">
src/main/resources/mapper/OrderMapper.xml
@@ -111,7 +111,7 @@
          and mo.settle = 1
    </select>
    <select id="selectOrderNosByOrderNoLike" resultType="java.lang.String">
        select order_no from man_order where settle = 4 and order_no like '%' + #{orderNo} + '%'
        select order_no from man_order where settle = 4 and order_no like '%' + #{orderNo} + '%' and doc_type in(21,23)
    </select>
</mapper>