Commit bcfaf00b by 翁国栋

本月待跟进参数错误

parent ea576dc4
...@@ -420,18 +420,9 @@ ...@@ -420,18 +420,9 @@
<if test="type != null and type >= 0"> <if test="type != null and type >= 0">
AND ccd.client_type = #{type} AND ccd.client_type = #{type}
</if> </if>
<if test="customerowner != null and customerowner != ''">
AND ccd.belong_user_name LIKE CONCAT('%', #{customerowner}, '%')
</if>
<if test="status != null and status >= 0"> <if test="status != null and status >= 0">
AND ccd.client_status = #{status} AND ccd.client_status = #{status}
</if> </if>
<if test="ifPhone != null and ifPhone != '' and ifPhone == '1'">
AND ccd.client_cellphone LIKE '%1'
</if>
<if test="ifPhone != null and ifPhone != '' and ifPhone == '2'">
AND (ccd.client_cellphone IS NULL OR ccd.client_cellphone = '')
</if>
<if test="startCreateTime != null and startCreateTime != '' and endCreateTime != null and endCreateTime != '' "> <if test="startCreateTime != null and startCreateTime != '' and endCreateTime != null and endCreateTime != '' ">
AND ccd.create_time BETWEEN #{startCreateTime} AND #{endCreateTime} AND ccd.create_time BETWEEN #{startCreateTime} AND #{endCreateTime}
</if> </if>
......
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