Commit ea80b86b authored by yanghao's avatar yanghao

chore: 客户查询增加常用提货点

parent 9c0fadf7
...@@ -645,6 +645,14 @@ ...@@ -645,6 +645,14 @@
</foreach> </foreach>
</if> </if>
<!--常用提货点-->
<if test="query.pickupPoints != null and query.pickupPoints.size()>0">
AND
<foreach item='item' index="index" collection='query.pickupPoints' open='(' separator='or' close=')'>
FIND_IN_SET(#{item}, contact.pickup_points)
</foreach>
</if>
<!--创建人--> <!--创建人-->
<if test="query.founder != null"> <if test="query.founder != null">
AND contact.founder = #{query.founder} AND contact.founder = #{query.founder}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment