package com.ruoyi.system.service.impl;
|
|
import cn.hutool.core.lang.Validator;
|
import cn.hutool.core.util.StrUtil;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.common.annotation.DataScope;
|
import com.ruoyi.common.constant.UserConstants;
|
import com.ruoyi.common.core.domain.TreeSelect;
|
import com.ruoyi.common.core.domain.entity.SysDept;
|
import com.ruoyi.common.core.domain.entity.SysRole;
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
import com.ruoyi.common.exception.CustomException;
|
import com.ruoyi.system.mapper.SysDeptMapper;
|
import com.ruoyi.system.mapper.SysRoleMapper;
|
import com.ruoyi.system.mapper.SysUserMapper;
|
import com.ruoyi.system.service.ISysDeptService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.ArrayList;
|
import java.util.Arrays;
|
import java.util.Iterator;
|
import java.util.List;
|
import java.util.stream.Collectors;
|
|
/**
|
* 部门管理 服务实现
|
*
|
* @author ruoyi
|
*/
|
@Service
|
public class SysDeptServiceImpl extends ServiceImpl<SysDeptMapper, SysDept> implements ISysDeptService {
|
|
@Autowired
|
private SysRoleMapper roleMapper;
|
|
@Autowired
|
private SysUserMapper userMapper;
|
|
/**
|
* 查询部门管理数据
|
*
|
* @param dept 部门信息
|
* @return 部门信息集合
|
*/
|
@Override
|
@DataScope(deptAlias = "d")
|
public List<SysDept> selectDeptList(SysDept dept) {
|
Object dataScope = dept.getParams().get("dataScope");
|
return list(new LambdaQueryWrapper<SysDept>()
|
.eq(dept.getParentId() != null && dept.getParentId() != 0,
|
SysDept::getParentId, dept.getParentId())
|
.like(StrUtil.isNotBlank(dept.getDeptName()), SysDept::getDeptName, dept.getDeptName())
|
.eq(StrUtil.isNotBlank(dept.getStatus()), SysDept::getStatus, dept.getStatus())
|
.apply(dataScope != null, dataScope != null ? dataScope.toString() : null)
|
.orderByAsc(SysDept::getParentId)
|
.orderByAsc(SysDept::getOrderNum));
|
}
|
|
/**
|
* 构建前端所需要树结构
|
*
|
* @param depts 部门列表
|
* @return 树结构列表
|
*/
|
@Override
|
public List<SysDept> buildDeptTree(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())) {
|
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<Integer> selectDeptListByRoleId(Long roleId) {
|
SysRole role = roleMapper.selectRoleById(roleId);
|
return baseMapper.selectDeptListByRoleId(roleId, role.isDeptCheckStrictly());
|
}
|
|
/**
|
* 根据部门ID查询信息
|
*
|
* @param deptId 部门ID
|
* @return 部门信息
|
*/
|
@Override
|
public SysDept selectDeptById(Long deptId) {
|
return getById(deptId);
|
}
|
|
/**
|
* 根据ID查询所有子部门(正常状态)
|
*
|
* @param deptId 部门ID
|
* @return 子部门数
|
*/
|
@Override
|
public int selectNormalChildrenDeptById(Long deptId) {
|
return count(new LambdaQueryWrapper<SysDept>()
|
.eq(SysDept::getStatus, 0)
|
.apply("find_in_set({0}, ancestors)", deptId));
|
}
|
|
/**
|
* 是否存在子节点
|
*
|
* @param deptId 部门ID
|
* @return 结果
|
*/
|
@Override
|
public boolean hasChildByDeptId(Long deptId) {
|
int result = count(new LambdaQueryWrapper<SysDept>()
|
.eq(SysDept::getParentId, deptId)
|
.last("limit 1"));
|
return result > 0 ? true : false;
|
}
|
|
/**
|
* 查询部门是否存在用户
|
*
|
* @param deptId 部门ID
|
* @return 结果 true 存在 false 不存在
|
*/
|
@Override
|
public boolean checkDeptExistUser(Long deptId) {
|
int result = userMapper.selectCount(new LambdaQueryWrapper<SysUser>()
|
.eq(SysUser::getDeptId, deptId));
|
return result > 0 ? true : false;
|
}
|
|
/**
|
* 校验部门名称是否唯一
|
*
|
* @param dept 部门信息
|
* @return 结果
|
*/
|
@Override
|
public String checkDeptNameUnique(SysDept dept) {
|
Long deptId = Validator.isNull(dept.getDeptId()) ? -1L : dept.getDeptId();
|
SysDept info = getOne(new LambdaQueryWrapper<SysDept>()
|
.eq(SysDept::getDeptName, dept.getDeptName())
|
.eq(SysDept::getParentId, dept.getParentId())
|
.last("limit 1"));
|
if (Validator.isNotNull(info) && info.getDeptId().longValue() != deptId.longValue()) {
|
return UserConstants.NOT_UNIQUE;
|
}
|
return UserConstants.UNIQUE;
|
}
|
|
/**
|
* 新增保存部门信息
|
*
|
* @param dept 部门信息
|
* @return 结果
|
*/
|
@Override
|
public int insertDept(SysDept dept) {
|
SysDept info = getById(dept.getParentId());
|
// 如果父节点不为正常状态,则不允许新增子节点
|
if (!UserConstants.DEPT_NORMAL.equals(info.getStatus())) {
|
throw new CustomException("部门停用,不允许新增");
|
}
|
dept.setAncestors(info.getAncestors() + "," + dept.getParentId());
|
return baseMapper.insert(dept);
|
}
|
|
/**
|
* 修改保存部门信息
|
*
|
* @param dept 部门信息
|
* @return 结果
|
*/
|
@Override
|
public int updateDept(SysDept dept) {
|
SysDept newParentDept = getById(dept.getParentId());
|
SysDept oldDept = getById(dept.getDeptId());
|
if (Validator.isNotNull(newParentDept) && Validator.isNotNull(oldDept)) {
|
String newAncestors = newParentDept.getAncestors() + "," + newParentDept.getDeptId();
|
String oldAncestors = oldDept.getAncestors();
|
dept.setAncestors(newAncestors);
|
updateDeptChildren(dept.getDeptId(), newAncestors, oldAncestors);
|
}
|
int result = baseMapper.updateById(dept);
|
if (UserConstants.DEPT_NORMAL.equals(dept.getStatus())) {
|
// 如果该部门是启用状态,则启用该部门的所有上级部门
|
updateParentDeptStatus(dept);
|
}
|
return result;
|
}
|
|
/**
|
* 修改该部门的父级部门状态
|
*
|
* @param dept 当前部门
|
*/
|
private void updateParentDeptStatus(SysDept dept) {
|
String updateBy = dept.getUpdateBy();
|
dept = getById(dept.getDeptId());
|
dept.setUpdateBy(updateBy);
|
update(null,new LambdaUpdateWrapper<SysDept>()
|
.set(StrUtil.isNotBlank(dept.getStatus()),
|
SysDept::getStatus,dept.getStatus())
|
.set(StrUtil.isNotBlank(dept.getUpdateBy()),
|
SysDept::getUpdateBy,dept.getUpdateBy())
|
.in(SysDept::getDeptId, Arrays.asList(dept.getAncestors().split(","))));
|
}
|
|
/**
|
* 修改子元素关系
|
*
|
* @param deptId 被修改的部门ID
|
* @param newAncestors 新的父ID集合
|
* @param oldAncestors 旧的父ID集合
|
*/
|
public void updateDeptChildren(Long deptId, String newAncestors, String oldAncestors) {
|
List<SysDept> children = list(new LambdaQueryWrapper<SysDept>()
|
.apply("find_in_set({0},ancestors)",deptId));
|
for (SysDept child : children) {
|
child.setAncestors(child.getAncestors().replace(oldAncestors, newAncestors));
|
}
|
if (children.size() > 0) {
|
updateBatchById(children);
|
}
|
}
|
|
/**
|
* 删除部门管理信息
|
*
|
* @param deptId 部门ID
|
* @return 结果
|
*/
|
@Override
|
public int deleteDeptById(Long deptId) {
|
return baseMapper.deleteById(deptId);
|
}
|
|
/**
|
* 递归列表
|
*/
|
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 (Validator.isNotNull(n.getParentId()) && n.getParentId().longValue() == t.getDeptId().longValue()) {
|
tlist.add(n);
|
}
|
}
|
return tlist;
|
}
|
|
/**
|
* 判断是否有子节点
|
*/
|
private boolean hasChild(List<SysDept> list, SysDept t) {
|
return getChildList(list, t).size() > 0 ? true : false;
|
}
|
}
|