复核详情修改,复核确认,批量复核、取消BUG修改

This commit is contained in:
秦鸿展
2026-04-08 17:39:42 +08:00
parent 2d3b1dfd0e
commit 37644a72f3
9 changed files with 342 additions and 11 deletions
@@ -128,6 +128,12 @@
<if test="warehouseId != null">
and a.warehouse_id = #{warehouseId}
</if>
<if test="reviewOrderIds != null and reviewOrderIds.size > 0 ">
and a.review_order_id in
<foreach collection="reviewOrderIds" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
<if test="customerName != null and customerName != ''">
and a.customer_name like concat('%', #{customerName}, '%')
</if>