fix 批量派单 搜索业务员名称失效
This commit is contained in:
parent
45b3fa3537
commit
b96cf66a3e
|
|
@ -90,6 +90,10 @@
|
||||||
<if test="listUser.username != null and listUser.username != ''">
|
<if test="listUser.username != null and listUser.username != ''">
|
||||||
AND u.username like concat('%',#{listUser.username},'%')
|
AND u.username like concat('%',#{listUser.username},'%')
|
||||||
</if>
|
</if>
|
||||||
|
<if test="listUser.nickName != null and listUser.nickName != ''">
|
||||||
|
AND u.nick_name like concat('%',#{listUser.nickName},'%')
|
||||||
|
</if>
|
||||||
|
|
||||||
<if test="listUser.deptId != null">
|
<if test="listUser.deptId != null">
|
||||||
AND d.dept_id = #{listUser.deptId}
|
AND d.dept_id = #{listUser.deptId}
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue