|
@@ -1,6 +1,8 @@
|
|
|
package com.nokia.service;
|
|
|
|
|
|
+import com.nokia.dao.AreaDao;
|
|
|
import com.nokia.dao.UserDao;
|
|
|
+import com.nokia.pojo.Area;
|
|
|
import com.nokia.pojo.Role;
|
|
|
import com.nokia.pojo.User;
|
|
|
import com.nokia.vo.flow.FlowRoleVo;
|
|
@@ -12,17 +14,21 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.HashMap;
|
|
|
+import java.util.LinkedHashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.Map.Entry;
|
|
|
|
|
|
@Service
|
|
|
public class FlowService {
|
|
|
|
|
|
private final UserDao userDao;
|
|
|
+ private final AreaDao areaDao;
|
|
|
|
|
|
@Autowired
|
|
|
- public FlowService(UserDao userDao) {
|
|
|
+ public FlowService(UserDao userDao, AreaDao areaDao) {
|
|
|
this.userDao = userDao;
|
|
|
+ this.areaDao = areaDao;
|
|
|
}
|
|
|
|
|
|
public List<FlowRoleVo> findRoleList(String username) {
|
|
@@ -61,16 +67,101 @@ public class FlowService {
|
|
|
return userDao.getRoleCityByUserId(userId);
|
|
|
}
|
|
|
|
|
|
- public Map<String, Object> getUserTree(UserTreeReq userTreeReq) {
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
+ public List<Map<String, Object>> getUserTree(UserTreeReq userTreeReq) {
|
|
|
+ // cityIds 用于查找用户 用户在叶子节点
|
|
|
List<Integer> cityIds = new ArrayList<>();
|
|
|
+ // areas 用于构建树结构的前两层
|
|
|
+ List<Area> areas = new ArrayList<>();
|
|
|
if (userTreeReq.getCity() == -1) {
|
|
|
+ // 如果这里给的是河北省,那么需要取全部
|
|
|
+ areas = areaDao.getAll();
|
|
|
cityIds = null;
|
|
|
} else {
|
|
|
+ // 都需要添加省级用户
|
|
|
+ areas.add(areaDao.getByAreaId(-1));
|
|
|
+ // 添加对应的地市
|
|
|
+ areas.add(areaDao.getByAreaId(userTreeReq.getCity()));
|
|
|
+ // 添加地市对应的区县
|
|
|
+ areas.addAll(areaDao.getByParentId(userTreeReq.getCity()));
|
|
|
cityIds.add(-1);
|
|
|
cityIds.add(userTreeReq.getCity());
|
|
|
}
|
|
|
+ // 组织结果
|
|
|
+ List<Map<String, Object>> result = new ArrayList<>();
|
|
|
+ // 用于记录第一层排序
|
|
|
+ Map<Integer, Integer> top = new HashMap<>();
|
|
|
+ // 用于记录第二层排序
|
|
|
+ Map<Integer, Integer> second = new HashMap<>();
|
|
|
+ for (int i = 0; i < areas.size(); i++) {
|
|
|
+ if (areas.get(i).getTypeCode() == 1) {
|
|
|
+ // 省
|
|
|
+ // 第一层
|
|
|
+ Map<String, Object> map1 = new LinkedHashMap<>();
|
|
|
+ map1.put("name", areas.get(i).getAreaName());
|
|
|
+ map1.put("child", new ArrayList<>());
|
|
|
+ result.add(map1);
|
|
|
+ // 记录第一层排序
|
|
|
+ top.put(areas.get(i).getAreaId(), i);
|
|
|
+ // 第二层
|
|
|
+ Map<String, Object> map2 = new LinkedHashMap<>();
|
|
|
+ map2.put("name", "省公司");
|
|
|
+ map2.put("child", new ArrayList<>());
|
|
|
+ ((List<Object>) map1.get("child")).add(map2);
|
|
|
+ } else if (areas.get(i).getTypeCode() == 2) {
|
|
|
+ // 地市
|
|
|
+ // 第一层
|
|
|
+ Map<String, Object> map1 = new LinkedHashMap<>();
|
|
|
+ map1.put("name", areas.get(i).getAreaName());
|
|
|
+ map1.put("child", new ArrayList<>());
|
|
|
+ result.add(map1);
|
|
|
+ // 记录第一层排序
|
|
|
+ top.put(areas.get(i).getAreaId(), i);
|
|
|
+ // 第二层
|
|
|
+ Map<String, Object> map2 = new LinkedHashMap<>();
|
|
|
+ map2.put("name", "市公司");
|
|
|
+ map2.put("child", new ArrayList<>());
|
|
|
+ ((List<Object>) map1.get("child")).add(map2);
|
|
|
+ } else {
|
|
|
+ // 区县,仅第二层
|
|
|
+ Map<String, Object> map = new LinkedHashMap<>();
|
|
|
+ map.put("name", areas.get(i).getAreaName());
|
|
|
+ map.put("child", new ArrayList<>());
|
|
|
+ // 加入到第二层
|
|
|
+ List<Object> list = (List<Object>) result.get(top.get(areas.get(i).getParentId())).get("child");
|
|
|
+ list.add(map);
|
|
|
+ // 记录第二层排序
|
|
|
+ second.put(areas.get(i).getAreaId(), list.size() - 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
List<User> users = userDao.getByRoleIds(userTreeReq.getRole(), cityIds);
|
|
|
- Map<String, Object> result = new HashMap<>();
|
|
|
+ Map<Area, Object> userMap = new LinkedHashMap<>();
|
|
|
+ // 将用户归类
|
|
|
+ for (User user : users) {
|
|
|
+ Map<String, Object> map = new LinkedHashMap<>();
|
|
|
+ map.put("name", user.getArea() == null ? user.getCity().getAreaName() :user.getArea().getAreaName());
|
|
|
+ map.put("userName", user.getUserName());
|
|
|
+ map.put("userId", user.getUserId());
|
|
|
+ map.put("child", new ArrayList<>());
|
|
|
+ // 把 map 放入 列表中
|
|
|
+ List<Object> userList = ((List<Object>) userMap.getOrDefault(user.getCity(),
|
|
|
+ new ArrayList<>()));
|
|
|
+ userList.add(map);
|
|
|
+ userMap.put(user.getCity(), userList);
|
|
|
+ }
|
|
|
+ // 把归类后的用户放入第三层
|
|
|
+ for (Entry<Area, Object> entry : userMap.entrySet()) {
|
|
|
+ // 第一层的child
|
|
|
+ List<Map<String, Object>> list = (List<Map<String, Object>>) result.get(top.get(entry.getKey().getAreaId()))
|
|
|
+ .get("child");
|
|
|
+ if (entry.getKey().getTypeCode() < 3) {
|
|
|
+ // 省级和地市级用户
|
|
|
+ list.get(0).put("child", entry.getValue());
|
|
|
+ } else {
|
|
|
+ // 区县级用户
|
|
|
+ list.get(second.get(entry.getKey().getAreaId())).put("child", entry.getValue());
|
|
|
+ }
|
|
|
+ }
|
|
|
return result;
|
|
|
}
|
|
|
}
|