|
@@ -711,7 +711,7 @@ public class FsUserServiceImpl implements IFsUserService {
|
|
|
if (param.getDeptId() != null) {
|
|
if (param.getDeptId() != null) {
|
|
|
if (roles.contains(1)) {
|
|
if (roles.contains(1)) {
|
|
|
//部门经理需要查询对应部门下的销售
|
|
//部门经理需要查询对应部门下的销售
|
|
|
- userIds = (Set<Long>) fsUserCompanyUserMapper.selectUserIdByDeptId(param.getDeptId());
|
|
|
|
|
|
|
+ userIds = new HashSet<>(fsUserCompanyUserMapper.selectUserIdByDeptId(param.getDeptId()));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
if (param.getIsAdmin() != null && param.getIsAdmin()) {
|
|
if (param.getIsAdmin() != null && param.getIsAdmin()) {
|