自动化立体仓库 - WMS系统
#
Junjie
2025-10-21 518121d2718b87d99b12c1b29601dd2c07f6f42d
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>