|
@@ -1,6 +1,8 @@
|
|
|
package com.usky.system.service.impl;
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.ruoyi.common.datascope.annotation.DataScope;
|
|
|
import com.usky.common.mybatis.core.AbstractCrudService;
|
|
|
import com.usky.common.security.utils.SecurityUtils;
|
|
@@ -10,76 +12,150 @@ import com.usky.common.core.util.StringUtils;
|
|
|
import com.usky.system.domain.SysDept;
|
|
|
import com.usky.system.domain.SysRole;
|
|
|
import com.usky.system.domain.SysUser;
|
|
|
+import com.usky.system.domain.SysUserPost;
|
|
|
import com.usky.system.domain.constants.UserConstants;
|
|
|
import com.usky.system.mapper.SysDeptMapper;
|
|
|
import com.usky.system.mapper.SysRoleMapper;
|
|
|
+import com.usky.system.mapper.SysUserPostMapper;
|
|
|
import com.usky.system.service.ISysDeptService;
|
|
|
+import com.usky.system.service.vo.TreeNode;
|
|
|
import com.usky.system.service.vo.TreeSelect;
|
|
|
+import com.usky.system.service.vo.UserPostVo;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Iterator;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Objects;
|
|
|
+import java.util.*;
|
|
|
+import java.util.function.Function;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 部门管理 服务实现
|
|
|
- *
|
|
|
+ *
|
|
|
* @author yq
|
|
|
*/
|
|
|
@Service
|
|
|
-public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDept> implements ISysDeptService
|
|
|
-{
|
|
|
+public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDept> implements ISysDeptService {
|
|
|
+
|
|
|
+ private static final Logger log = LoggerFactory.getLogger(SysDeptServiceImpl.class);//还原代码
|
|
|
+
|
|
|
@Autowired
|
|
|
private SysDeptMapper deptMapper;
|
|
|
|
|
|
@Autowired
|
|
|
private SysRoleMapper roleMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private SysUserPostMapper sysUserPostMapper;
|
|
|
+
|
|
|
/**
|
|
|
* 查询部门管理数据
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 部门信息集合
|
|
|
*/
|
|
|
@Override
|
|
|
@DataScope(deptAlias = "d")
|
|
|
- public List<SysDept> selectDeptList(SysDept dept)
|
|
|
- {
|
|
|
+ public List<SysDept> selectDeptList(SysDept dept) {
|
|
|
dept.setTenantId(SecurityUtils.getTenantId());
|
|
|
return deptMapper.selectDeptList(dept);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<SysDept> deptList(SysDept dept) {
|
|
|
+ dept.setTenantId(SecurityUtils.getTenantId());
|
|
|
+ return deptMapper.deptList(dept);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<TreeNode> buildDeptUserTreeSelect(List<SysDept> depts, List<SysUser> users) {
|
|
|
+ List<Long> userIds = new ArrayList<>();
|
|
|
+ for (SysUser user : users){
|
|
|
+ userIds.add(user.getUserId());
|
|
|
+ }
|
|
|
+ List<UserPostVo> userPost = sysUserPostMapper.getUserPost(userIds);
|
|
|
+ Map<Long, String> userIdToPostMap = userPost.stream()
|
|
|
+ .collect(Collectors.toMap(UserPostVo::getUserId, UserPostVo::getPostName));
|
|
|
+ users.forEach(user -> user.setPost(userIdToPostMap.get(user.getUserId())));
|
|
|
+ List<SysDept> deptTrees = buildDeptTree2(depts);
|
|
|
+ fillUsersToDepts(deptTrees, users);
|
|
|
+ return deptTrees.stream().map(TreeNode::new).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+
|
|
|
+ private void fillUsersToDepts(List<SysDept> depts, List<SysUser> users) {
|
|
|
+ for (SysDept dept : depts) {
|
|
|
+ if (dept.getChildren() == null || dept.getChildren().isEmpty()) {
|
|
|
+ List<SysUser> deptUsers = filterUsersByDept(users, dept.getDeptId());
|
|
|
+ if (!deptUsers.isEmpty()) {
|
|
|
+ dept.setUsers(deptUsers);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (dept.getChildren() != null) {
|
|
|
+ fillUsersToDepts(dept.getChildren(), users);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<SysUser> filterUsersByDept(List<SysUser> users, Long deptId) {
|
|
|
+ return users.stream()
|
|
|
+ .filter(user -> user.getDeptId().equals(deptId))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<SysDept> buildDeptTree2(List<SysDept> depts) {
|
|
|
+ List<SysDept> returnList = new ArrayList<SysDept>();
|
|
|
+ List<Long> tempList = new ArrayList<Long>();
|
|
|
+ for (SysDept dept : depts) {
|
|
|
+ tempList.add(dept.getDeptId());
|
|
|
+ }
|
|
|
+ for (Iterator<SysDept> iterator = depts.iterator(); iterator.hasNext(); ) {
|
|
|
+ SysDept dept = (SysDept) iterator.next();
|
|
|
+ if (!tempList.contains(dept.getParentId())) {
|
|
|
+ recursionFn2(depts, dept);
|
|
|
+ returnList.add(dept);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (returnList.isEmpty()) {
|
|
|
+ returnList = depts;
|
|
|
+ }
|
|
|
+ return returnList;
|
|
|
+ }
|
|
|
+
|
|
|
+ private void recursionFn2(List<SysDept> list, SysDept t) {
|
|
|
+ List<SysDept> childList = getChildList(list, t);
|
|
|
+ t.setChildren(childList);
|
|
|
+ for (SysDept tChild : childList) {
|
|
|
+ if (hasChild(list, tChild)) {
|
|
|
+ recursionFn(list, tChild);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 构建前端所需要树结构
|
|
|
- *
|
|
|
+ *
|
|
|
* @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.getDeptId());
|
|
|
}
|
|
|
- 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;
|
|
@@ -87,18 +163,17 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
|
|
|
/**
|
|
|
* 构建前端所需要下拉树结构
|
|
|
- *
|
|
|
+ *
|
|
|
* @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());
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
+/* @Override
|
|
|
public List<TreeSelect> buildDeptUserTreeSelect(List<SysDept> depts, List<SysUser> users) {
|
|
|
List<SysDept> deptTrees = buildDeptTree(depts);
|
|
|
List<TreeSelect> treeSelectList = new ArrayList<>();
|
|
@@ -119,86 +194,78 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
treeSelectList.add(treeSelect);
|
|
|
}
|
|
|
return treeSelectList;
|
|
|
- }
|
|
|
-
|
|
|
+ }*/
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 根据角色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.selectDeptListByRoleId(roleId, role.isDeptCheckStrictly());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 根据部门ID查询信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param deptId 部门ID
|
|
|
* @return 部门信息
|
|
|
*/
|
|
|
@Override
|
|
|
- public SysDept selectDeptById(Long deptId)
|
|
|
- {
|
|
|
+ public SysDept selectDeptById(Long deptId) {
|
|
|
return deptMapper.selectDeptById(deptId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 根据ID查询所有子部门(正常状态)
|
|
|
- *
|
|
|
+ *
|
|
|
* @param deptId 部门ID
|
|
|
* @return 子部门数
|
|
|
*/
|
|
|
@Override
|
|
|
- public int selectNormalChildrenDeptById(Long deptId)
|
|
|
- {
|
|
|
- return deptMapper.selectNormalChildrenDeptById(deptId,SecurityUtils.getTenantId());
|
|
|
+ public int selectNormalChildrenDeptById(Long deptId) {
|
|
|
+ return deptMapper.selectNormalChildrenDeptById(deptId, SecurityUtils.getTenantId());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 是否存在子节点
|
|
|
- *
|
|
|
+ *
|
|
|
* @param deptId 部门ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public boolean hasChildByDeptId(Long deptId)
|
|
|
- {
|
|
|
+ public boolean hasChildByDeptId(Long deptId) {
|
|
|
int result = deptMapper.hasChildByDeptId(deptId);
|
|
|
return result > 0 ? true : false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 查询部门是否存在用户
|
|
|
- *
|
|
|
+ *
|
|
|
* @param deptId 部门ID
|
|
|
* @return 结果 true 存在 false 不存在
|
|
|
*/
|
|
|
@Override
|
|
|
- public boolean checkDeptExistUser(Long deptId)
|
|
|
- {
|
|
|
+ public boolean checkDeptExistUser(Long deptId) {
|
|
|
int result = deptMapper.checkDeptExistUser(deptId);
|
|
|
return result > 0 ? true : false;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 校验部门名称是否唯一
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public String checkDeptNameUnique(SysDept dept)
|
|
|
- {
|
|
|
+ public String checkDeptNameUnique(SysDept dept) {
|
|
|
Long deptId = Objects.isNull(dept.getDeptId()) ? -1L : dept.getDeptId();
|
|
|
- SysDept info = deptMapper.checkDeptNameUnique(dept.getDeptName(), dept.getParentId(),SecurityUtils.getTenantId());
|
|
|
- if (Objects.nonNull(info) && info.getDeptId().longValue() != deptId.longValue())
|
|
|
- {
|
|
|
+ SysDept info = deptMapper.checkDeptNameUnique(dept.getDeptName(), dept.getParentId(), SecurityUtils.getTenantId());
|
|
|
+ if (Objects.nonNull(info) && info.getDeptId().longValue() != deptId.longValue()) {
|
|
|
return UserConstants.NOT_UNIQUE;
|
|
|
}
|
|
|
return UserConstants.UNIQUE;
|
|
@@ -206,21 +273,19 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
|
|
|
/**
|
|
|
* 新增保存部门信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 部门信息
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public int insertDept(SysDept dept)
|
|
|
- {
|
|
|
- if (dept.getParentId()==null){
|
|
|
+ public int insertDept(SysDept dept) {
|
|
|
+ if (dept.getParentId() == null) {
|
|
|
dept.setParentId(0L);
|
|
|
dept.setAncestors("0");
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
SysDept info = deptMapper.selectDeptById(dept.getParentId());
|
|
|
// 如果父节点不为正常状态,则不允许新增子节点
|
|
|
- if (!UserConstants.DEPT_NORMAL.equals(info.getStatus()))
|
|
|
- {
|
|
|
+ if (!UserConstants.DEPT_NORMAL.equals(info.getStatus())) {
|
|
|
throw new BusinessException("部门停用,不允许新增");
|
|
|
}
|
|
|
dept.setAncestors(info.getAncestors() + "," + dept.getParentId());
|
|
@@ -230,17 +295,15 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
|
|
|
/**
|
|
|
* 修改保存部门信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @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.getDeptId());
|
|
|
- if (Objects.nonNull(newParentDept) && Objects.nonNull(oldDept))
|
|
|
- {
|
|
|
+ if (Objects.nonNull(newParentDept) && Objects.nonNull(oldDept)) {
|
|
|
String newAncestors = newParentDept.getAncestors() + "," + newParentDept.getDeptId();
|
|
|
String oldAncestors = oldDept.getAncestors();
|
|
|
dept.setAncestors(newAncestors);
|
|
@@ -248,8 +311,7 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
}
|
|
|
int result = deptMapper.updateDept(dept);
|
|
|
if (UserConstants.DEPT_NORMAL.equals(dept.getStatus()) && Objects.nonNull(dept.getAncestors())
|
|
|
- && !StringUtils.equals("0", dept.getAncestors()))
|
|
|
- {
|
|
|
+ && !StringUtils.equals("0", dept.getAncestors())) {
|
|
|
// 如果该部门是启用状态,则启用该部门的所有上级部门
|
|
|
updateParentDeptStatusNormal(dept);
|
|
|
}
|
|
@@ -258,11 +320,10 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
|
|
|
/**
|
|
|
* 修改该部门的父级部门状态
|
|
|
- *
|
|
|
+ *
|
|
|
* @param dept 当前部门
|
|
|
*/
|
|
|
- private void updateParentDeptStatusNormal(SysDept dept)
|
|
|
- {
|
|
|
+ private void updateParentDeptStatusNormal(SysDept dept) {
|
|
|
String ancestors = dept.getAncestors();
|
|
|
Long[] deptIds = Convert.toLongArray(ancestors);
|
|
|
deptMapper.updateDeptStatusNormal(deptIds);
|
|
@@ -270,48 +331,41 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
|
|
|
/**
|
|
|
* 修改子元素关系
|
|
|
- *
|
|
|
- * @param deptId 被修改的部门ID
|
|
|
+ *
|
|
|
+ * @param deptId 被修改的部门ID
|
|
|
* @param newAncestors 新的父ID集合
|
|
|
* @param oldAncestors 旧的父ID集合
|
|
|
*/
|
|
|
- public void updateDeptChildren(Long deptId, String newAncestors, String oldAncestors)
|
|
|
- {
|
|
|
+ public void updateDeptChildren(Long deptId, String newAncestors, String oldAncestors) {
|
|
|
List<SysDept> children = deptMapper.selectChildrenDeptById(deptId);
|
|
|
- for (SysDept child : children)
|
|
|
- {
|
|
|
+ for (SysDept child : children) {
|
|
|
child.setAncestors(child.getAncestors().replaceFirst(oldAncestors, newAncestors));
|
|
|
}
|
|
|
- if (children.size() > 0)
|
|
|
- {
|
|
|
+ if (children.size() > 0) {
|
|
|
deptMapper.updateDeptChildren(children);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 删除部门管理信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param deptId 部门ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public int deleteDeptById(Long deptId)
|
|
|
- {
|
|
|
+ public int deleteDeptById(Long deptId) {
|
|
|
return deptMapper.deleteDeptById(deptId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 递归列表
|
|
|
*/
|
|
|
- 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);
|
|
|
}
|
|
|
}
|
|
@@ -320,15 +374,12 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
/**
|
|
|
* 得到子节点列表
|
|
|
*/
|
|
|
- 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 (Objects.nonNull(n.getParentId()) && n.getParentId().longValue() == t.getDeptId().longValue())
|
|
|
- {
|
|
|
+ if (Objects.nonNull(n.getParentId()) && n.getParentId().longValue() == t.getDeptId().longValue()) {
|
|
|
tlist.add(n);
|
|
|
}
|
|
|
}
|
|
@@ -338,8 +389,7 @@ public class SysDeptServiceImpl extends AbstractCrudService<SysDeptMapper, SysDe
|
|
|
/**
|
|
|
* 判断是否有子节点
|
|
|
*/
|
|
|
- private boolean hasChild(List<SysDept> list, SysDept t)
|
|
|
- {
|
|
|
+ private boolean hasChild(List<SysDept> list, SysDept t) {
|
|
|
return getChildList(list, t).size() > 0 ? true : false;
|
|
|
}
|
|
|
}
|