派单任务加商户编号筛选
This commit is contained in:
parent
07c74e14d8
commit
5f84334ae3
|
|
@ -216,6 +216,13 @@
|
||||||
AND t1.task_id = #{query.taskId}
|
AND t1.task_id = #{query.taskId}
|
||||||
</if>
|
</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">
|
<if test="query.terminalNos != null and query.terminalNos.size > 0">
|
||||||
AND t1.terminal_no in
|
AND t1.terminal_no in
|
||||||
<foreach collection="query.terminalNos" item="no" open="(" separator="," close=")">
|
<foreach collection="query.terminalNos" item="no" open="(" separator="," close=")">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue