|
@@ -26,12 +26,11 @@ import javax.annotation.Resource;
|
|
|
|
|
|
/**
|
|
|
* 部门管理 服务实现
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@Service
|
|
|
-public class SysDeptServiceImpl implements ISysDeptService
|
|
|
-{
|
|
|
+public class SysDeptServiceImpl implements ISysDeptService {
|
|
|
@Autowired
|
|
|
private SysDeptMapper deptMapper;
|
|
|
|
|
@@ -40,39 +39,39 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 查询部门管理数据
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 部门信息集合
|
|
|
*/
|
|
|
@Override
|
|
|
@DataScope(deptAlias = "d")
|
|
|
public List<SysDept> selectDeptList(SysDept dept) {
|
|
|
- if(StringUtils.isNotEmpty(dept.getDeptName()) || StringUtils.isNotEmpty(dept.getStatus())) {
|
|
|
+ if (StringUtils.isNotEmpty(dept.getDeptName()) || StringUtils.isNotEmpty(dept.getStatus())) {
|
|
|
dept.setListByParentId(Boolean.TRUE);
|
|
|
return deptMapper.selectDeptList(dept);
|
|
|
}
|
|
|
Long id = dept.getId();
|
|
|
- if(id == null) {
|
|
|
+ if (id == null) {
|
|
|
dept.setListByParentId(Boolean.FALSE);
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
dept.setListByParentId(Boolean.TRUE);
|
|
|
dept.setParentId(id);
|
|
|
}
|
|
|
List<SysDept> depts = deptMapper.selectDeptList(dept);
|
|
|
// 这里的逻辑是:根据id获取到这个下面的所有子部门,每个部门判断是否有下一级别
|
|
|
- if(depts != null && depts.size() > 0) {
|
|
|
+ if (depts != null && depts.size() > 0) {
|
|
|
List<SysDept> hasChirlds = deptMapper.validateHasChirld(depts);
|
|
|
- if(hasChirlds != null && hasChirlds.size() > 0) {
|
|
|
+ if (hasChirlds != null && hasChirlds.size() > 0) {
|
|
|
Map<Long, SysDept> hasChirldMap = new HashMap<>();
|
|
|
for (SysDept hasChirld : hasChirlds) {
|
|
|
hasChirldMap.put(hasChirld.getId(), hasChirld);
|
|
|
}
|
|
|
for (SysDept sysDept : depts) {
|
|
|
- if(hasChirldMap.get(sysDept.getId()) == null) {
|
|
|
+ if (hasChirldMap.get(sysDept.getId()) == null) {
|
|
|
sysDept.setHasChildren(Boolean.FALSE);
|
|
|
}
|
|
|
}
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
for (SysDept sysDept : depts) {
|
|
|
sysDept.setHasChildren(Boolean.FALSE);
|
|
|
}
|
|
@@ -90,31 +89,26 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 构建前端所需要树结构
|
|
|
- *
|
|
|
+ *
|
|
|
* @param depts 部门列表
|
|
|
* @return 树结构列表
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<SysDept> buildDeptTree(List<SysDept> depts)
|
|
|
- {
|
|
|
+ public List<SysDept> buildDeptTree(List<SysDept> depts) {
|
|
|
List<SysDept> returnList = new ArrayList<SysDept>();
|
|
|
List<Long> tempList = new ArrayList<Long>();
|
|
|
- for (SysDept dept : depts)
|
|
|
- {
|
|
|
+ for (SysDept dept : depts) {
|
|
|
tempList.add(dept.getId());
|
|
|
}
|
|
|
- for (Iterator<SysDept> iterator = depts.iterator(); iterator.hasNext();)
|
|
|
- {
|
|
|
+ for (Iterator<SysDept> iterator = depts.iterator(); iterator.hasNext(); ) {
|
|
|
SysDept dept = (SysDept) iterator.next();
|
|
|
// 如果是顶级节点, 遍历该父节点的所有子节点
|
|
|
- if (!tempList.contains(dept.getParentId()))
|
|
|
- {
|
|
|
+ if (!tempList.contains(dept.getParentId())) {
|
|
|
recursionFn(depts, dept);
|
|
|
returnList.add(dept);
|
|
|
}
|
|
|
}
|
|
|
- if (returnList.isEmpty())
|
|
|
- {
|
|
|
+ if (returnList.isEmpty()) {
|
|
|
returnList = depts;
|
|
|
}
|
|
|
return returnList;
|
|
@@ -122,93 +116,99 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 构建前端所需要下拉树结构
|
|
|
- *
|
|
|
+ *
|
|
|
* @param depts 部门列表
|
|
|
* @return 下拉树结构列表
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<TreeSelect> buildDeptTreeSelect(List<SysDept> depts)
|
|
|
- {
|
|
|
+ public List<TreeSelect> buildDeptTreeSelect(List<SysDept> depts) {
|
|
|
List<SysDept> deptTrees = buildDeptTree(depts);
|
|
|
return deptTrees.stream().map(TreeSelect::new).collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 根据角色ID查询部门树信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param roleId 角色ID
|
|
|
* @return 选中部门列表
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<Integer> selectDeptListByRoleId(Long roleId)
|
|
|
- {
|
|
|
+ public List<Integer> selectDeptListByRoleId(Long roleId) {
|
|
|
SysRole role = roleMapper.selectRoleById(roleId);
|
|
|
return deptMapper.selectDeptListById(roleId, role.isDeptCheckStrictly());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 根据部门ID查询信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 部门ID
|
|
|
* @return 部门信息
|
|
|
*/
|
|
|
@Override
|
|
|
- public SysDept selectDeptById(Long id)
|
|
|
- {
|
|
|
+ public SysDept selectDeptById(Long id) {
|
|
|
return deptMapper.selectDeptById(id);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 根据部门名称查询信息
|
|
|
+ *
|
|
|
+ * @param deptName
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public List<SysDept> selectByDeptName(String deptName) {
|
|
|
+ SysDept sysDept = deptMapper.selectDeptByDeptName(deptName);
|
|
|
+ List<SysDept> sysDepts = listChildrenDepts(sysDept.getId());
|
|
|
+ sysDepts.add(sysDept);
|
|
|
+ return sysDepts;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 根据ID查询所有子部门(正常状态)
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 部门ID
|
|
|
* @return 子部门数
|
|
|
*/
|
|
|
@Override
|
|
|
- public int selectNormalChildrenDeptById(Long id)
|
|
|
- {
|
|
|
+ public int selectNormalChildrenDeptById(Long id) {
|
|
|
return deptMapper.selectNormalChildrenDeptById(id);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 是否存在子节点
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 部门ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public boolean hasChildById(Long id)
|
|
|
- {
|
|
|
+ public boolean hasChildById(Long id) {
|
|
|
int result = deptMapper.hasChildById(id);
|
|
|
return result > 0 ? true : false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 查询部门是否存在用户
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 部门ID
|
|
|
* @return 结果 true 存在 false 不存在
|
|
|
*/
|
|
|
@Override
|
|
|
- public boolean checkDeptExistUser(Long id)
|
|
|
- {
|
|
|
+ public boolean checkDeptExistUser(Long id) {
|
|
|
int result = deptMapper.checkDeptExistUser(id);
|
|
|
return result > 0 ? true : false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 校验部门名称是否唯一
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public String checkDeptNameUnique(SysDept dept)
|
|
|
- {
|
|
|
+ public String checkDeptNameUnique(SysDept dept) {
|
|
|
Long id = StringUtils.isNull(dept.getId()) ? -1L : dept.getId();
|
|
|
SysDept info = deptMapper.checkDeptNameUnique(dept.getDeptName(), dept.getParentId());
|
|
|
- if (StringUtils.isNotNull(info) && info.getId().longValue() != id.longValue())
|
|
|
- {
|
|
|
+ if (StringUtils.isNotNull(info) && info.getId().longValue() != id.longValue()) {
|
|
|
return UserConstants.NOT_UNIQUE;
|
|
|
}
|
|
|
return UserConstants.UNIQUE;
|
|
@@ -216,17 +216,15 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 新增保存部门信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public int insertDept(SysDept dept)
|
|
|
- {
|
|
|
+ public int insertDept(SysDept dept) {
|
|
|
SysDept info = deptMapper.selectDeptById(dept.getParentId());
|
|
|
// 如果父节点不为正常状态,则不允许新增子节点
|
|
|
- if (!UserConstants.DEPT_NORMAL.equals(info.getStatus()))
|
|
|
- {
|
|
|
+ if (!UserConstants.DEPT_NORMAL.equals(info.getStatus())) {
|
|
|
throw new CustomException("部门停用,不允许新增");
|
|
|
}
|
|
|
dept.setAncestors(info.getAncestors() + "," + dept.getParentId());
|
|
@@ -235,25 +233,22 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 修改保存部门信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public int updateDept(SysDept dept)
|
|
|
- {
|
|
|
+ public int updateDept(SysDept dept) {
|
|
|
SysDept newParentDept = deptMapper.selectDeptById(dept.getParentId());
|
|
|
SysDept oldDept = deptMapper.selectDeptById(dept.getId());
|
|
|
- if (StringUtils.isNotNull(newParentDept) && StringUtils.isNotNull(oldDept))
|
|
|
- {
|
|
|
+ if (StringUtils.isNotNull(newParentDept) && StringUtils.isNotNull(oldDept)) {
|
|
|
String newAncestors = newParentDept.getAncestors() + "," + newParentDept.getId();
|
|
|
String oldAncestors = oldDept.getAncestors();
|
|
|
dept.setAncestors(newAncestors);
|
|
|
updateDeptChildren(dept.getId(), newAncestors, oldAncestors);
|
|
|
}
|
|
|
int result = deptMapper.updateDept(dept);
|
|
|
- if (UserConstants.DEPT_NORMAL.equals(dept.getStatus()))
|
|
|
- {
|
|
|
+ if (UserConstants.DEPT_NORMAL.equals(dept.getStatus())) {
|
|
|
// 如果该部门是启用状态,则启用该部门的所有上级部门
|
|
|
updateParentDeptStatus(dept);
|
|
|
}
|
|
@@ -262,11 +257,10 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 修改该部门的父级部门状态
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 当前部门
|
|
|
*/
|
|
|
- private void updateParentDeptStatus(SysDept dept)
|
|
|
- {
|
|
|
+ private void updateParentDeptStatus(SysDept dept) {
|
|
|
String updateBy = dept.getUpdateBy();
|
|
|
dept = deptMapper.selectDeptById(dept.getId());
|
|
|
dept.setUpdateBy(updateBy);
|
|
@@ -275,48 +269,41 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
/**
|
|
|
* 修改子元素关系
|
|
|
- *
|
|
|
- * @param id 被修改的部门ID
|
|
|
+ *
|
|
|
+ * @param id 被修改的部门ID
|
|
|
* @param newAncestors 新的父ID集合
|
|
|
* @param oldAncestors 旧的父ID集合
|
|
|
*/
|
|
|
- public void updateDeptChildren(Long id, String newAncestors, String oldAncestors)
|
|
|
- {
|
|
|
+ public void updateDeptChildren(Long id, String newAncestors, String oldAncestors) {
|
|
|
List<SysDept> children = deptMapper.selectChildrenDeptById(id);
|
|
|
- for (SysDept child : children)
|
|
|
- {
|
|
|
+ for (SysDept child : children) {
|
|
|
child.setAncestors(child.getAncestors().replace(oldAncestors, newAncestors));
|
|
|
}
|
|
|
- if (children.size() > 0)
|
|
|
- {
|
|
|
+ if (children.size() > 0) {
|
|
|
deptMapper.updateDeptChildren(children);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 删除部门管理信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 部门ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public int deleteDeptById(Long id)
|
|
|
- {
|
|
|
+ public int deleteDeptById(Long id) {
|
|
|
return deptMapper.deleteDeptById(id);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 递归列表
|
|
|
*/
|
|
|
- private void recursionFn(List<SysDept> list, SysDept t)
|
|
|
- {
|
|
|
+ private void recursionFn(List<SysDept> list, SysDept t) {
|
|
|
// 得到子节点列表
|
|
|
List<SysDept> childList = getChildList(list, t);
|
|
|
t.setChildren(childList);
|
|
|
- for (SysDept tChild : childList)
|
|
|
- {
|
|
|
- if (hasChild(list, tChild))
|
|
|
- {
|
|
|
+ for (SysDept tChild : childList) {
|
|
|
+ if (hasChild(list, tChild)) {
|
|
|
recursionFn(list, tChild);
|
|
|
}
|
|
|
}
|
|
@@ -325,15 +312,12 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
/**
|
|
|
* 得到子节点列表
|
|
|
*/
|
|
|
- private List<SysDept> getChildList(List<SysDept> list, SysDept t)
|
|
|
- {
|
|
|
+ private List<SysDept> getChildList(List<SysDept> list, SysDept t) {
|
|
|
List<SysDept> tlist = new ArrayList<SysDept>();
|
|
|
Iterator<SysDept> it = list.iterator();
|
|
|
- while (it.hasNext())
|
|
|
- {
|
|
|
+ while (it.hasNext()) {
|
|
|
SysDept n = (SysDept) it.next();
|
|
|
- if (StringUtils.isNotNull(n.getParentId()) && n.getParentId().longValue() == t.getId().longValue())
|
|
|
- {
|
|
|
+ if (StringUtils.isNotNull(n.getParentId()) && n.getParentId().longValue() == t.getId().longValue()) {
|
|
|
tlist.add(n);
|
|
|
}
|
|
|
}
|
|
@@ -343,8 +327,7 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
/**
|
|
|
* 判断是否有子节点
|
|
|
*/
|
|
|
- private boolean hasChild(List<SysDept> list, SysDept t)
|
|
|
- {
|
|
|
+ private boolean hasChild(List<SysDept> list, SysDept t) {
|
|
|
return getChildList(list, t).size() > 0;
|
|
|
}
|
|
|
|
|
@@ -382,7 +365,7 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
@Override
|
|
|
public List<JSONObject> syncData() throws Exception {
|
|
|
List<JSONObject> datas = new ArrayList<>();
|
|
|
- try{
|
|
|
+ try {
|
|
|
SysDept sysDept = new SysDept();
|
|
|
// 所有层级数据
|
|
|
List<TreeSelect> depts = this.getDepts(sysDept);
|
|
@@ -401,7 +384,7 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
for (TreeSelect treeSelect : villegeDept) {
|
|
|
String deptName = treeSelect.getLabel();
|
|
|
Long deptId = treeSelect.getId();
|
|
|
- if(villegeMap.containsKey(deptName)) {
|
|
|
+ if (villegeMap.containsKey(deptName)) {
|
|
|
System.out.println(deptName);
|
|
|
}
|
|
|
villegeMap.put(deptName, deptId);
|
|
@@ -415,14 +398,14 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
update.put("id_card", idCard);
|
|
|
// 先判断村数据是否存在,如果村存在,则直接获取村的id,反之获取乡镇id
|
|
|
Long deptId = this.getVillegeDeptId(dz, villegeMap, repeatVillageMap);
|
|
|
- if(deptId == null) {
|
|
|
+ if (deptId == null) {
|
|
|
deptId = this.getRegionDeptId(dz, regionMap);
|
|
|
}
|
|
|
update.put("dept_id", deptId);
|
|
|
System.out.println(update.toJSONString());
|
|
|
datas.add(update);
|
|
|
}
|
|
|
- }catch (Exception e) {
|
|
|
+ } catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return datas;
|
|
@@ -449,17 +432,17 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
List<TreeSelect> villegs = new ArrayList<>();
|
|
|
List<TreeSelect> regions = depts.get(0).getChildren();
|
|
|
for (TreeSelect region : regions) {
|
|
|
- if(region.getLabel().equals("王河镇") || region.getLabel().equals("五庙乡")
|
|
|
- || region.getLabel().equals("黄铺镇") || region.getLabel().equals("水吼镇") ) {
|
|
|
+ if (region.getLabel().equals("王河镇") || region.getLabel().equals("五庙乡")
|
|
|
+ || region.getLabel().equals("黄铺镇") || region.getLabel().equals("水吼镇")) {
|
|
|
List<TreeSelect> vills = region.getChildren();
|
|
|
for (TreeSelect vill : vills) {
|
|
|
- if(vill.getLabel().equals("和平村") || vill.getLabel().equals("红光村")) {
|
|
|
+ if (vill.getLabel().equals("和平村") || vill.getLabel().equals("红光村")) {
|
|
|
repeatVillageMap.put(region.getLabel() + vill.getLabel(), vill.getId());
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
villegs.add(vill);
|
|
|
}
|
|
|
}
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
villegs.addAll(region.getChildren());
|
|
|
}
|
|
|
|
|
@@ -470,7 +453,7 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
private Long getRegionDeptId(String dz, Map<String, Long> villegeMap) {
|
|
|
for (String deptName : villegeMap.keySet()) {
|
|
|
- if(dz.contains(deptName)) {
|
|
|
+ if (dz.contains(deptName)) {
|
|
|
return villegeMap.get(deptName);
|
|
|
}
|
|
|
}
|
|
@@ -478,20 +461,20 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
|
|
|
}
|
|
|
|
|
|
- private Long getVillegeDeptId(String dz, Map<String, Long> villegeMap, Map<String, Long> repeatVillageMap) {
|
|
|
- if(dz.contains("和平村") || dz.contains("红光村")) {
|
|
|
- if(dz.contains("黄铺镇" + "和平村")) {
|
|
|
+ private Long getVillegeDeptId(String dz, Map<String, Long> villegeMap, Map<String, Long> repeatVillageMap) {
|
|
|
+ if (dz.contains("和平村") || dz.contains("红光村")) {
|
|
|
+ if (dz.contains("黄铺镇" + "和平村")) {
|
|
|
return repeatVillageMap.get("黄铺镇" + "和平村");
|
|
|
- }else if(dz.contains("水吼镇" + "和平村")){
|
|
|
+ } else if (dz.contains("水吼镇" + "和平村")) {
|
|
|
return repeatVillageMap.get("水吼镇" + "和平村");
|
|
|
- }else if(dz.contains("王河镇" + "红光村")) {
|
|
|
+ } else if (dz.contains("王河镇" + "红光村")) {
|
|
|
return repeatVillageMap.get("王河镇" + "红光村");
|
|
|
- }else if(dz.contains("五庙乡" + "红光村")){
|
|
|
+ } else if (dz.contains("五庙乡" + "红光村")) {
|
|
|
return repeatVillageMap.get("五庙乡" + "红光村");
|
|
|
}
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
for (String deptName : villegeMap.keySet()) {
|
|
|
- if(dz.contains(deptName)) {
|
|
|
+ if (dz.contains(deptName)) {
|
|
|
return villegeMap.get(deptName);
|
|
|
}
|
|
|
}
|
|
@@ -500,6 +483,7 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
+
|
|
|
@Override
|
|
|
public List<SysDept> getByParentId(Long deptId) {
|
|
|
if (null == deptId || deptId <= 0) {
|