自动化立体仓库 - WMS系统
#
Junjie
2025-06-27 6f01b51fc0770fda7787076caf0314be7a7f6656
src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml
@@ -232,6 +232,13 @@
        <include refid="standbyAll"></include>
    </update>
    <update id="increaseQtyById">
        update man_order_detl_pakout
        set qty = qty + #{qty}
        where id = #{id}
    </update>
    <update id="increaseWorkQty">
        update man_order_detl_pakout
        set work_qty = work_qty + #{workQty}
@@ -241,4 +248,12 @@
        <include refid="standbyAll"></include>
    </update>
    <update id="increaseWorkQtyById">
        update man_order_detl_pakout
        set work_qty = work_qty + #{workQty}
        where 1=1
        and id = #{id}
    </update>
</mapper>