派单任务加商户编号筛选

This commit is contained in:
Chujinwang 2024-07-19 15:19:54 +08:00
parent 07c74e14d8
commit 5f84334ae3
1 changed files with 7 additions and 0 deletions

View File

@ -216,6 +216,13 @@
AND t1.task_id = #{query.taskId}
</if>
<if test="query.nos != null and query.nos.size > 0">
AND t1.store_no in
<foreach collection="query.nos" item="no" open="(" separator="," close=")">
#{no}
</foreach>
</if>
<if test="query.terminalNos != null and query.terminalNos.size > 0">
AND t1.terminal_no in
<foreach collection="query.terminalNos" item="no" open="(" separator="," close=")">