自动化立体仓库 - WMS系统
zhang
2025-10-20 e85f0e74d21e49b9c68474bc4d19f5eceacf1a46
src/main/resources/mapper/asrs/OrderDetlPakoutMapper.xml
@@ -53,6 +53,7 @@
        <result column="box_type1" property="boxType1" />
        <result column="box_type2" property="boxType2" />
        <result column="box_type3" property="boxType3" />
        <result column="cstateid" property="cstateid" />
    </resultMap>
    <sql id="standbyAll">
@@ -232,6 +233,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 +249,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>