123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499 |
- package com.ruoyi.system.service.impl;
- import com.ruoyi.common.core.constant.UserConstants;
- import com.ruoyi.common.core.exception.ServiceException;
- import com.ruoyi.common.core.text.Convert;
- import com.ruoyi.common.core.utils.SpringUtils;
- import com.ruoyi.common.core.utils.StringUtils;
- import com.ruoyi.common.datascope.annotation.DataScope;
- import com.ruoyi.common.security.utils.SecurityUtils;
- import com.ruoyi.system.api.domain.SysDept;
- import com.ruoyi.system.api.domain.SysRole;
- import com.ruoyi.system.api.domain.SysUser;
- import com.ruoyi.system.domain.vo.TreeSelect;
- import com.ruoyi.system.mapper.SysDeptMapper;
- import com.ruoyi.system.mapper.SysRoleMapper;
- import com.ruoyi.system.service.ISysDeptService;
- import org.apache.ibatis.annotations.Param;
- 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.stream.Collectors;
- /**
- * 部门管理 服务实现
- *
- * @author ruoyi
- */
- @Service
- public class SysDeptServiceImpl implements ISysDeptService
- {
- @Autowired
- private SysDeptMapper deptMapper;
- @Autowired
- private SysRoleMapper roleMapper;
- /**
- * 查询部门管理数据
- *
- * @param dept 部门信息
- * @return 部门信息集合
- */
- @Override
- @DataScope(deptAlias = "d")
- public List<SysDept> selectDeptList(SysDept dept)
- {
- return deptMapper.selectDeptList(dept);
- }
- /**
- * 根据DEPT_ID查询下级的乡镇或区县部门列表,如果传入市级部门则查询区县,如果传入区县部门则查询乡镇街道(不带数据权限)
- *
- * @param dept 部门信息
- * @return 部门信息集合
- */
- @Override
- public List<SysDept> selectChildrenCountyOrVillagesDeptListByDeptId(SysDept dept){
- return deptMapper.selectChildrenCountyOrVillagesDeptListByDeptId(dept);
- }
- /**
- * 查询部门管理数据(本部门及以下)
- *
- * @param dept 部门信息
- * @return 部门信息集合
- */
- @Override
- @DataScope(deptAlias = "d")
- public List<SysDept> selectDeptBelowList(SysDept dept)
- {
- return deptMapper.selectDeptBelowList(dept);
- }
- /**
- * 查询全部部门管理数据
- *
- * @param dept 部门信息
- * @return 部门信息集合
- */
- @Override
- public List<SysDept> selectDeptAllList(SysDept dept){
- return deptMapper.selectDeptAllList(dept);
- }
- /**
- * 构建前端所需要树结构
- *
- * @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 (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<Long> 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)
- {
- return deptMapper.selectDeptById(deptId);
- }
- /**
- * 根据部门ID查询信息
- *
- * @param deptIdList 部门ID集合
- * @return 部门信息
- */
- @Override
- public List<SysDept> selectDeptByIds(List<Long> deptIdList)
- {
- return deptMapper.selectDeptByIds(deptIdList);
- }
- /**
- * 根据ID查询所有子部门(正常状态)
- *
- * @param deptId 部门ID
- * @return 子部门数
- */
- @Override
- public int selectNormalChildrenDeptById(Long deptId)
- {
- return deptMapper.selectNormalChildrenDeptById(deptId);
- }
- /**
- * 是否存在子节点
- *
- * @param deptId 部门ID
- * @return 结果
- */
- @Override
- 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)
- {
- int result = deptMapper.checkDeptExistUser(deptId);
- return result > 0 ? true : false;
- }
- /**
- * 校验部门名称是否唯一
- *
- * @param dept 部门信息
- * @return 结果
- */
- @Override
- public String checkDeptNameUnique(SysDept dept)
- {
- Long deptId = StringUtils.isNull(dept.getDeptId()) ? -1L : dept.getDeptId();
- SysDept info = deptMapper.checkDeptNameUnique(dept.getDeptName(), dept.getParentId());
- if (StringUtils.isNotNull(info) && info.getDeptId().longValue() != deptId.longValue())
- {
- return UserConstants.NOT_UNIQUE;
- }
- return UserConstants.UNIQUE;
- }
- /**
- * 校验部门是否有数据权限
- *
- * @param deptId 部门id
- */
- @Override
- public void checkDeptDataScope(Long 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 int 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);
- }
- /**
- * 修改保存部门信息
- *
- * @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();
- Long[] deptIds = Convert.toLongArray(ancestors);
- deptMapper.updateDeptStatusNormal(deptIds);
- }
- /**
- * 修改子元素关系
- *
- * @param deptId 被修改的部门ID
- * @param newAncestors 新的父ID集合
- * @param oldAncestors 旧的父ID集合
- */
- public void updateDeptChildren(Long 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(Long deptId)
- {
- return deptMapper.deleteDeptById(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 (StringUtils.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;
- }
- /**
- * 获取当前登录人父ID的兄弟IDList
- * */
- public List<SysDept> selectParentSiblingsDeptsById(Long deptId){
- return deptMapper.selectParentSiblingsDeptsById(deptId);
- }
- /**
- * 根据DEPTID获取指挥中心
- * */
- public SysDept getCommandCenter(String deptId, String postId){
- return deptMapper.getCommandCenter(deptId, postId);
- }
- /**
- * 根据DEPTID获取区级指挥中心对象
- * */
- public SysDept selectDistrictDeptByAnyDeptId(Long deptId){
- return deptMapper.selectDistrictDeptByAnyDeptId(deptId);
- }
- /**
- * 根据ID查询所有子部门
- *
- * @param deptId 部门ID
- * @return 部门列表
- */
- public List<SysDept> selectChildrenDeptById(Long deptId){
- return deptMapper.selectChildrenDeptById(deptId);
- }
- /**
- * 根据ID查询所有子部门
- *
- * @param deptId 部门ID
- * @param postId 岗位ID
- * @return 部门列表
- */
- public List<SysDept> selectChildrenDeptById(String deptId, String postId){
- return deptMapper.selectChildrenDeptByIdAndPostId(deptId,postId);
- }
- /**
- * 根据ID查询所有子部门
- *
- * @return 部门列表
- */
- public List<SysDept> userAllDeptSelectIncludeChildren(){
- List<SysDept> list = SecurityUtils.getLoginUser().getSysUser().getDepts();
- return deptMapper.userAllDeptSelectIncludeChildren(list);
- }
- /**
- * 根据POSTID查询所有子部门
- *
- * @param postId 部门类型
- * @return 部门列表
- */
- public List<SysDept> getDeptsByPostId(Long postId){
- return deptMapper.getDeptsByPostId(postId);
- }
- /**
- * 根据部门deptType和deptId查询部门集合
- *
- * @param sysDept 部门
- * @return 部门列表
- */
- @DataScope(deptAlias = "d")
- public List<SysDept> getDeptsByDeptType(SysDept sysDept){
- return deptMapper.getDeptsByDeptType(sysDept);
- }
- /**
- * 获取行管部门下可接收短信人员
- *
- * @param sysDept 部门类型
- * @return 部门列表
- */
- public List<SysDept> selectDeptAndUsersByDeptType(SysDept sysDept){
- return deptMapper.selectDeptAndUsersByDeptType(sysDept);
- }
- /**
- * 判断DEPT上级中是否有除消防支队外的行管局
- * */
- public Integer deptParentsHasBureau(Long deptId){
- return deptMapper.deptParentsHasBureau(deptId);
- }
- /**
- * 根据子deptId和父级类型递归获取上级部门
- * */
- public List<Long> findParentIdByChildDeptIdAndParentType(Long deptId, String deptType){
- return deptMapper.findParentIdByChildDeptIdAndParentType(deptId,Convert.toStrArray(deptType));
- }
- /**
- * 判断DEPT_ID是否是PARENT_ID的子节点
- * */
- @Override
- public Integer thisDeptIdIsParentIdChild(Long deptId,Long parentId){
- return deptMapper.thisDeptIdIsParentIdChild(deptId,parentId);
- }
- /**
- * 查询部门管理数据
- *
- * @param deptName 部门信息
- * @return 部门信息集合
- */
- public List<SysDept> selectDeptListByDeptNames(String[] deptName){
- return deptMapper.selectDeptListImportExcel(deptName);
- }
- }
|