demand: TMS系统 - 订单管理 - 订单列表 - 新增加查询条件“预计入仓时间”

committer: heyu
This commit is contained in:
aike 2025-07-29 15:17:17 +08:00
parent d6902a1e78
commit 040a5022f1

View File

@ -1075,6 +1075,13 @@
and a.order_date <![CDATA[ <= ]]> #{params.endOrderDate}
</if>
<if test="params.beginPickStartDate != null and params.beginPickStartDate != ''">
and a.pick_start_date <![CDATA[ >= ]]> #{params.beginPickStartDate}
</if>
<if test="params.endPickStartDate != null and params.endPickStartDate != ''">
and a.pick_start_date <![CDATA[ <= ]]> #{params.endPickStartDate}
</if>
<if test="payee != null and payee != ''">
and a.payee=#{payee}
</if>