|
@@ -73,10 +73,12 @@ public class FlowService {
|
|
|
List<Integer> cityIds = new ArrayList<>();
|
|
|
// areas 用于构建树结构的前两层
|
|
|
List<Area> areas = new ArrayList<>();
|
|
|
- if (userTreeReq.getCity() == -1) {
|
|
|
- // 如果这里给的是河北省,那么需要取全部
|
|
|
+ // 这里检查一下查找条件的role不为空
|
|
|
+ List<Integer> queryRoles = (userTreeReq.getRole() == null || userTreeReq.getRole().size() == 0) ? null
|
|
|
+ : userTreeReq.getRole();
|
|
|
+ if (userTreeReq.getCity() == -1 || queryRoles == null) {
|
|
|
+ // 如果这里给的是河北省 或者 role 为空,那么需要取全部
|
|
|
areas = areaDao.getAll();
|
|
|
- cityIds = null;
|
|
|
} else {
|
|
|
// 都需要添加省级用户
|
|
|
areas.add(areaDao.getByAreaId(-1));
|
|
@@ -84,6 +86,12 @@ public class FlowService {
|
|
|
areas.add(areaDao.getByAreaId(userTreeReq.getCity()));
|
|
|
// 添加地市对应的区县
|
|
|
areas.addAll(areaDao.getByParentId(userTreeReq.getCity()));
|
|
|
+ }
|
|
|
+ // query用的cityIds
|
|
|
+ if (userTreeReq.getCity() == -1) {
|
|
|
+ // 如果这里给的是河北省,那么需要取全部
|
|
|
+ cityIds = null;
|
|
|
+ } else {
|
|
|
cityIds.add(-1);
|
|
|
cityIds.add(userTreeReq.getCity());
|
|
|
}
|
|
@@ -134,12 +142,9 @@ public class FlowService {
|
|
|
second.put(areas.get(i).getAreaId(), list.size() - 1);
|
|
|
}
|
|
|
}
|
|
|
- System.out.println(result);
|
|
|
- System.out.println(second);
|
|
|
- System.out.println("---------------");
|
|
|
- List<User> users = userDao.getByRoleIds(userTreeReq.getRole(), cityIds);
|
|
|
- System.out.println(users);
|
|
|
- System.out.println("---------------");
|
|
|
+
|
|
|
+ // 查询符合条件的用户
|
|
|
+ List<User> users = userDao.getByRoleIds(queryRoles, cityIds);
|
|
|
// key 区域(市公司或区域) value 一个列表,列表内放区域内全部的用户信息
|
|
|
Map<Area, Object> userMap = new LinkedHashMap<>();
|
|
|
// 将用户归类
|
|
@@ -156,8 +161,6 @@ public class FlowService {
|
|
|
userList.add(map);
|
|
|
userMap.put(area, userList);
|
|
|
}
|
|
|
- System.out.println(userMap);
|
|
|
- System.out.println("---------------");
|
|
|
// 把归类后的用户放入第三层
|
|
|
for (Entry<Area, Object> entry : userMap.entrySet()) {
|
|
|
if (entry.getKey().getTypeCode() < 3) {
|