fix 批量派单 搜索业务员名称失效

This commit is contained in:
renzexin 2024-08-23 15:57:23 +08:00
parent 45b3fa3537
commit b96cf66a3e
1 changed files with 4 additions and 0 deletions

View File

@ -90,6 +90,10 @@
<if test="listUser.username != null and listUser.username != ''">
AND u.username like concat('%',#{listUser.username},'%')
</if>
<if test="listUser.nickName != null and listUser.nickName != ''">
AND u.nick_name like concat('%',#{listUser.nickName},'%')
</if>
<if test="listUser.deptId != null">
AND d.dept_id = #{listUser.deptId}
</if>