自动化立体仓库 - WMS系统
#
18516761980
2023-03-04 25d21a0dffb5a83fddcb6352bf0304a85b0186ec
src/main/resources/mapper/OrderMapper.xml
@@ -46,9 +46,29 @@
        update man_order
        set settle = #{settle}
        ,update_time = getdate()
        ,update_by = #{userId}
        <if test="userId != null">
            ,update_by = #{userId}
        </if>
        where 1=1
        and id = #{orderId}
    </update>
    <select id="selectComplete" resultMap="BaseResultMap">
        select top 5 *
        from man_order
        where 1=1
        and settle = 4
        and status = 1
        order by create_time asc
    </select>
    <select id="selectorderNoL" resultMap="BaseResultMap">
        select top 10 *
        from man_order
        where 1=1
        <if test="orderNo != null">
            and order_no = #{orderNo}
        </if>
    </select>
</mapper>