This commit is contained in:
linfso 2025-01-10 18:12:50 +08:00
parent f6a3b505c6
commit 6d23f18615

View File

@ -225,6 +225,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="params.intoWarehouseCode != null and params.intoWarehouseCode != ''">
and ewb.into_warehouse_code=#{params.intoWarehouseCode}
</if>
<if test="params.orderStatus != null and params.orderStatus != ''">
and ewb.order_status=#{params.orderStatus}
</if>
<if test="params.sendSiteCode != null and params.sendSiteCode != ''">
and ewb.send_site_code=#{params.sendSiteCode}
</if>
)