package com.zzg.system.service.system.impl;
|
|
import cn.hutool.core.lang.tree.Tree;
|
import cn.hutool.core.lang.tree.TreeNodeConfig;
|
import cn.hutool.core.lang.tree.TreeUtil;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.zzg.common.annotation.DataScope;
|
import com.zzg.common.constant.UserConstants;
|
import com.zzg.common.core.domain.TreeSelect;
|
import com.zzg.common.core.domain.entity.system.SysDept;
|
import com.zzg.common.core.domain.entity.system.SysRole;
|
import com.zzg.common.core.domain.entity.system.SysUser;
|
import com.zzg.common.core.text.Convert;
|
import com.zzg.common.exception.ServiceException;
|
import com.zzg.common.utils.SecurityUtils;
|
import com.zzg.common.utils.StringUtils;
|
import com.zzg.common.utils.spring.SpringUtils;
|
import com.zzg.common.utils.uuid.IdUtils;
|
import com.zzg.system.domain.SysCity;
|
import com.zzg.system.mapper.system.SysDeptMapper;
|
import com.zzg.system.mapper.system.SysRoleMapper;
|
import com.zzg.system.service.system.ISysCityService;
|
import com.zzg.system.service.system.ISysDeptService;
|
import org.springframework.cache.annotation.Cacheable;
|
import org.springframework.stereotype.Service;
|
import org.springframework.util.CollectionUtils;
|
|
import javax.annotation.Resource;
|
import java.util.*;
|
import java.util.function.Function;
|
import java.util.stream.Collectors;
|
|
/**
|
* 部门管理 服务实现
|
*
|
* @author ruoyi
|
*/
|
@Service
|
public class SysDeptServiceImpl extends ServiceImpl<SysDeptMapper, SysDept> implements ISysDeptService {
|
@Resource
|
private SysDeptMapper deptMapper;
|
@Resource
|
private SysRoleMapper roleMapper;
|
@Resource
|
ISysCityService sysCityService;
|
|
/**
|
* 查询部门管理数据
|
*
|
* @param dept 部门信息
|
* @return 部门信息集合
|
*/
|
@Override
|
@DataScope(deptAlias = "d")
|
public List<SysDept> selectDeptList(SysDept dept) {
|
List<SysDept> deptList = deptMapper.selectDeptList(dept);
|
List<String> cityIds = deptList.stream().map(d -> d.getCityId()).collect(Collectors.toList());
|
if (cityIds.size() > 0) {
|
List<SysCity> sysCityList = sysCityService.listByIds(cityIds);
|
for (SysDept d : deptList) {
|
for (SysCity c : sysCityList) {
|
if (d.getCityId().equals(c.getId())) {
|
d.setTowns(c.getName());
|
}
|
}
|
}
|
}
|
return deptList;
|
}
|
|
/**
|
* 查询部门树结构信息
|
*
|
* @param dept 部门信息
|
* @return 部门树信息集合
|
*/
|
@Override
|
public List<TreeSelect> selectDeptTreeList(SysDept dept) {
|
List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
|
return buildDeptTreeSelect(depts);
|
}
|
|
/**
|
* 构建前端所需要树结构
|
*
|
* @param depts 部门列表
|
* @return 树结构列表
|
*/
|
@Override
|
public List<SysDept> buildDeptTree(List<SysDept> depts) {
|
List<SysDept> returnList = new ArrayList<SysDept>();
|
List<String> tempList = depts.stream().map(SysDept::getDeptId).collect(Collectors.toList());
|
for (SysDept dept : depts) {
|
// 如果是顶级节点, 遍历该父节点的所有子节点
|
if (!tempList.contains(dept.getParentId())) {
|
recursionFn(depts, dept);
|
returnList.add(dept);
|
}
|
}
|
if (returnList.isEmpty()) {
|
returnList = depts;
|
}
|
return returnList;
|
}
|
|
/**
|
* 构建前端所需要下拉树结构
|
*
|
* @param depts 部门列表
|
* @return 下拉树结构列表
|
*/
|
@Override
|
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<String> selectDeptListByRoleId(String roleId) {
|
SysRole role = roleMapper.selectRoleById(roleId);
|
return deptMapper.selectDeptListByRoleId(roleId, role.getDeptCheckStrictly());
|
}
|
|
/**
|
* 根据部门ID查询信息
|
*
|
* @param deptId 部门ID
|
* @return 部门信息
|
*/
|
@Override
|
public SysDept selectDeptById(String deptId) {
|
return deptMapper.selectDeptById(deptId);
|
}
|
|
|
@Override
|
@Cacheable(value = "selectMapDeptById", key = "#deptIdList")
|
public Map<String, SysDept> selectMapDeptById(List<String> deptIdList) {
|
if (CollectionUtils.isEmpty(deptIdList)){
|
return Collections.emptyMap();
|
}
|
LambdaQueryWrapper<SysDept> queryWrapper = new LambdaQueryWrapper<>();
|
queryWrapper.in(SysDept::getDeptId,deptIdList);
|
List<SysDept> list = list(queryWrapper);
|
if (CollectionUtils.isEmpty(list)){
|
return Collections.emptyMap();
|
}
|
return list.stream().collect(Collectors.toMap(SysDept::getDeptId, Function.identity()));
|
}
|
|
/**
|
* 根据ID查询所有子部门(正常状态)
|
*
|
* @param deptId 部门ID
|
* @return 子部门数
|
*/
|
@Override
|
public int selectNormalChildrenDeptById(String deptId) {
|
return deptMapper.selectNormalChildrenDeptById(deptId);
|
}
|
|
/**
|
* 是否存在子节点
|
*
|
* @param deptId 部门ID
|
* @return 结果
|
*/
|
@Override
|
public boolean hasChildByDeptId(String deptId) {
|
int result = deptMapper.hasChildByDeptId(deptId);
|
return result > 0;
|
}
|
|
/**
|
* 查询部门是否存在用户
|
*
|
* @param deptId 部门ID
|
* @return 结果 true 存在 false 不存在
|
*/
|
@Override
|
public boolean checkDeptExistUser(String deptId) {
|
int result = deptMapper.checkDeptExistUser(deptId);
|
return result > 0;
|
}
|
|
/**
|
* 校验部门名称是否唯一
|
*
|
* @param dept 部门信息
|
* @return 结果
|
*/
|
@Override
|
public boolean checkDeptNameUnique(SysDept dept) {
|
String deptId = StringUtils.isNull(dept.getDeptId()) ? "-1" : dept.getDeptId();
|
SysDept info = deptMapper.checkDeptNameUnique(dept.getDeptName(), dept.getParentId());
|
if (StringUtils.isNotNull(info) && !info.getDeptId().equals(deptId)) {
|
return UserConstants.NOT_UNIQUE;
|
}
|
return UserConstants.UNIQUE;
|
}
|
|
/**
|
* 校验部门是否有数据权限
|
*
|
* @param deptId 部门id
|
*/
|
@Override
|
public void checkDeptDataScope(String deptId) {
|
if (!SysUser.isAdmin(SecurityUtils.getUserId())) {
|
SysDept dept = new SysDept();
|
dept.setDeptId(deptId);
|
List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
|
if (StringUtils.isEmpty(depts)) {
|
throw new ServiceException("没有权限访问部门数据!");
|
}
|
}
|
}
|
|
/**
|
* 新增保存部门信息
|
*
|
* @param dept 部门信息
|
* @return 结果
|
*/
|
@Override
|
public boolean insertDept(SysDept dept) {
|
// SysDept info = deptMapper.selectDeptById(dept.getParentId());
|
// // 如果父节点不为正常状态,则不允许新增子节点
|
// if (!UserConstants.DEPT_NORMAL.equals(info.getStatus())) {
|
// throw new ServiceException("部门停用,不允许新增");
|
// }
|
// dept.setAncestors(info.getAncestors() + "," + dept.getParentId());
|
// return deptMapper.insertDept(dept);
|
dept.setDeptId(IdUtils.fastSimpleUUID());
|
dept.setCreateTime(new Date());
|
|
return this.save(dept);
|
}
|
|
/**
|
* 修改保存部门信息
|
*
|
* @param dept 部门信息
|
* @return 结果
|
*/
|
@Override
|
public int updateDept(SysDept dept) {
|
SysDept newParentDept = deptMapper.selectDeptById(dept.getParentId());
|
SysDept oldDept = deptMapper.selectDeptById(dept.getDeptId());
|
if (StringUtils.isNotNull(newParentDept) && StringUtils.isNotNull(oldDept)) {
|
String newAncestors = newParentDept.getAncestors() + "," + newParentDept.getDeptId();
|
String oldAncestors = oldDept.getAncestors();
|
dept.setAncestors(newAncestors);
|
updateDeptChildren(dept.getDeptId(), newAncestors, oldAncestors);
|
}
|
int result = deptMapper.updateDept(dept);
|
if (UserConstants.DEPT_NORMAL.equals(dept.getStatus()) && StringUtils.isNotEmpty(dept.getAncestors()) && !StringUtils.equals("0", dept.getAncestors())) {
|
// 如果该部门是启用状态,则启用该部门的所有上级部门
|
updateParentDeptStatusNormal(dept);
|
}
|
return result;
|
}
|
|
/**
|
* 修改该部门的父级部门状态
|
*
|
* @param dept 当前部门
|
*/
|
private void updateParentDeptStatusNormal(SysDept dept) {
|
String ancestors = dept.getAncestors();
|
String[] deptIds = Convert.toStrArray(ancestors);
|
deptMapper.updateDeptStatusNormal(deptIds);
|
}
|
|
/**
|
* 修改子元素关系
|
*
|
* @param deptId 被修改的部门ID
|
* @param newAncestors 新的父ID集合
|
* @param oldAncestors 旧的父ID集合
|
*/
|
public void updateDeptChildren(String deptId, String newAncestors, String oldAncestors) {
|
List<SysDept> children = deptMapper.selectChildrenDeptById(deptId);
|
for (SysDept child : children) {
|
child.setAncestors(child.getAncestors().replaceFirst(oldAncestors, newAncestors));
|
}
|
if (children.size() > 0) {
|
deptMapper.updateDeptChildren(children);
|
}
|
}
|
|
/**
|
* 删除部门管理信息
|
*
|
* @param deptId 部门ID
|
* @return 结果
|
*/
|
@Override
|
public int deleteDeptById(String deptId) {
|
return deptMapper.deleteDeptById(deptId);
|
}
|
|
@Override
|
public List<Tree<String>> deptTreeNew() {
|
//配置
|
TreeNodeConfig treeNodeConfig = new TreeNodeConfig();
|
// 自定义属性名 都要默认值的
|
treeNodeConfig.setWeightKey("deptId");
|
treeNodeConfig.setIdKey("deptId");
|
// 最大递归深度
|
treeNodeConfig.setDeep(10);
|
SysDept dept = new SysDept();
|
List<SysDept> list = deptMapper.selectDeptList(dept);
|
return TreeUtil.build(list, "0", treeNodeConfig,
|
(treeNode, tree) -> {
|
tree.setId(treeNode.getDeptId());
|
tree.setParentId(treeNode.getParentId());
|
tree.setName(treeNode.getDeptName());
|
tree.putExtra("deptId", treeNode.getDeptId());
|
tree.putExtra("deptName", treeNode.getDeptName());
|
tree.putExtra("ancestors", treeNode.getAncestors());
|
});
|
|
}
|
|
/**
|
* 递归列表
|
*/
|
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)) {
|
recursionFn(list, tChild);
|
}
|
}
|
}
|
|
/**
|
* 得到子节点列表
|
*/
|
private List<SysDept> getChildList(List<SysDept> list, SysDept t) {
|
List<SysDept> tlist = new ArrayList<SysDept>();
|
Iterator<SysDept> it = list.iterator();
|
while (it.hasNext()) {
|
SysDept n = (SysDept) it.next();
|
if (StringUtils.isNotNull(n.getParentId()) && n.getParentId() == t.getDeptId()) {
|
tlist.add(n);
|
}
|
}
|
return tlist;
|
}
|
|
/**
|
* 判断是否有子节点
|
*/
|
private boolean hasChild(List<SysDept> list, SysDept t) {
|
return getChildList(list, t).size() > 0;
|
}
|
}
|