SysDeptServiceImpl.java 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. package com.ruoyi.system.service.impl;
  2. import java.util.ArrayList;
  3. import java.util.Iterator;
  4. import java.util.List;
  5. import java.util.stream.Collectors;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. import com.ruoyi.common.annotation.DataScope;
  9. import com.ruoyi.common.constant.UserConstants;
  10. import com.ruoyi.common.core.domain.TreeSelect;
  11. import com.ruoyi.common.core.domain.entity.SysDept;
  12. import com.ruoyi.common.core.domain.entity.SysRole;
  13. import com.ruoyi.common.core.domain.entity.SysUser;
  14. import com.ruoyi.common.core.text.Convert;
  15. import com.ruoyi.common.exception.ServiceException;
  16. import com.ruoyi.common.utils.SecurityUtils;
  17. import com.ruoyi.common.utils.StringUtils;
  18. import com.ruoyi.common.utils.spring.SpringUtils;
  19. import com.ruoyi.system.mapper.SysDeptMapper;
  20. import com.ruoyi.system.mapper.SysRoleMapper;
  21. import com.ruoyi.system.service.ISysDeptService;
  22. /**
  23. * 部门管理 服务实现
  24. *
  25. * @author ruoyi
  26. */
  27. @Service
  28. public class SysDeptServiceImpl implements ISysDeptService
  29. {
  30. @Autowired
  31. private SysDeptMapper deptMapper;
  32. @Autowired
  33. private SysRoleMapper roleMapper;
  34. /**
  35. * 查询部门管理数据
  36. *
  37. * @param dept 部门信息
  38. * @return 部门信息集合
  39. */
  40. @Override
  41. @DataScope(deptAlias = "d")
  42. public List<SysDept> selectDeptList(SysDept dept)
  43. {
  44. return deptMapper.selectDeptList(dept);
  45. }
  46. /**
  47. * 查询部门树结构信息
  48. *
  49. * @param dept 部门信息
  50. * @return 部门树信息集合
  51. */
  52. @Override
  53. public List<TreeSelect> selectDeptTreeList(SysDept dept)
  54. {
  55. List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
  56. return buildDeptTreeSelect(depts);
  57. }
  58. /**
  59. * 构建前端所需要树结构
  60. *
  61. * @param depts 部门列表
  62. * @return 树结构列表
  63. */
  64. @Override
  65. public List<SysDept> buildDeptTree(List<SysDept> depts)
  66. {
  67. List<SysDept> returnList = new ArrayList<SysDept>();
  68. List<Long> tempList = new ArrayList<Long>();
  69. for (SysDept dept : depts)
  70. {
  71. tempList.add(dept.getDeptId());
  72. }
  73. for (SysDept dept : depts)
  74. {
  75. // 如果是顶级节点, 遍历该父节点的所有子节点
  76. if (!tempList.contains(dept.getParentId()))
  77. {
  78. recursionFn(depts, dept);
  79. returnList.add(dept);
  80. }
  81. }
  82. if (returnList.isEmpty())
  83. {
  84. returnList = depts;
  85. }
  86. return returnList;
  87. }
  88. /**
  89. * 构建前端所需要下拉树结构
  90. *
  91. * @param depts 部门列表
  92. * @return 下拉树结构列表
  93. */
  94. @Override
  95. public List<TreeSelect> buildDeptTreeSelect(List<SysDept> depts)
  96. {
  97. List<SysDept> deptTrees = buildDeptTree(depts);
  98. return deptTrees.stream().map(TreeSelect::new).collect(Collectors.toList());
  99. }
  100. /**
  101. * 根据角色ID查询部门树信息
  102. *
  103. * @param roleId 角色ID
  104. * @return 选中部门列表
  105. */
  106. @Override
  107. public List<Long> selectDeptListByRoleId(Long roleId)
  108. {
  109. SysRole role = roleMapper.selectRoleById(roleId);
  110. return deptMapper.selectDeptListByRoleId(roleId, role.isDeptCheckStrictly());
  111. }
  112. /**
  113. * 根据部门ID查询信息
  114. *
  115. * @param deptId 部门ID
  116. * @return 部门信息
  117. */
  118. @Override
  119. public SysDept selectDeptById(Long deptId)
  120. {
  121. return deptMapper.selectDeptById(deptId);
  122. }
  123. /**
  124. * 根据ID查询所有子部门(正常状态)
  125. *
  126. * @param deptId 部门ID
  127. * @return 子部门数
  128. */
  129. @Override
  130. public int selectNormalChildrenDeptById(Long deptId)
  131. {
  132. return deptMapper.selectNormalChildrenDeptById(deptId);
  133. }
  134. /**
  135. * 是否存在子节点
  136. *
  137. * @param deptId 部门ID
  138. * @return 结果
  139. */
  140. @Override
  141. public boolean hasChildByDeptId(Long deptId)
  142. {
  143. int result = deptMapper.hasChildByDeptId(deptId);
  144. return result > 0;
  145. }
  146. /**
  147. * 查询部门是否存在用户
  148. *
  149. * @param deptId 部门ID
  150. * @return 结果 true 存在 false 不存在
  151. */
  152. @Override
  153. public boolean checkDeptExistUser(Long deptId)
  154. {
  155. int result = deptMapper.checkDeptExistUser(deptId);
  156. return result > 0;
  157. }
  158. /**
  159. * 校验部门名称是否唯一
  160. *
  161. * @param dept 部门信息
  162. * @return 结果
  163. */
  164. @Override
  165. public String checkDeptNameUnique(SysDept dept)
  166. {
  167. Long deptId = StringUtils.isNull(dept.getDeptId()) ? -1L : dept.getDeptId();
  168. SysDept info = deptMapper.checkDeptNameUnique(dept.getDeptName(), dept.getParentId());
  169. if (StringUtils.isNotNull(info) && info.getDeptId().longValue() != deptId.longValue())
  170. {
  171. return UserConstants.NOT_UNIQUE;
  172. }
  173. return UserConstants.UNIQUE;
  174. }
  175. /**
  176. * 校验部门是否有数据权限
  177. *
  178. * @param deptId 部门id
  179. */
  180. @Override
  181. public void checkDeptDataScope(Long deptId)
  182. {
  183. if (!SysUser.isAdmin(SecurityUtils.getUserId()))
  184. {
  185. SysDept dept = new SysDept();
  186. dept.setDeptId(deptId);
  187. List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
  188. if (StringUtils.isEmpty(depts))
  189. {
  190. throw new ServiceException("没有权限访问部门数据!");
  191. }
  192. }
  193. }
  194. /**
  195. * 新增保存部门信息
  196. *
  197. * @param dept 部门信息
  198. * @return 结果
  199. */
  200. @Override
  201. public int insertDept(SysDept dept)
  202. {
  203. SysDept info = deptMapper.selectDeptById(dept.getParentId());
  204. // 如果父节点不为正常状态,则不允许新增子节点
  205. if (!UserConstants.DEPT_NORMAL.equals(info.getStatus()))
  206. {
  207. throw new ServiceException("部门停用,不允许新增");
  208. }
  209. dept.setAncestors(info.getAncestors() + "," + dept.getParentId());
  210. return deptMapper.insertDept(dept);
  211. }
  212. /**
  213. * 修改保存部门信息
  214. *
  215. * @param dept 部门信息
  216. * @return 结果
  217. */
  218. @Override
  219. public int updateDept(SysDept dept)
  220. {
  221. SysDept newParentDept = deptMapper.selectDeptById(dept.getParentId());
  222. SysDept oldDept = deptMapper.selectDeptById(dept.getDeptId());
  223. if (StringUtils.isNotNull(newParentDept) && StringUtils.isNotNull(oldDept))
  224. {
  225. String newAncestors = newParentDept.getAncestors() + "," + newParentDept.getDeptId();
  226. String oldAncestors = oldDept.getAncestors();
  227. dept.setAncestors(newAncestors);
  228. updateDeptChildren(dept.getDeptId(), newAncestors, oldAncestors);
  229. }
  230. int result = deptMapper.updateDept(dept);
  231. if (UserConstants.DEPT_NORMAL.equals(dept.getStatus()) && StringUtils.isNotEmpty(dept.getAncestors())
  232. && !StringUtils.equals("0", dept.getAncestors()))
  233. {
  234. // 如果该部门是启用状态,则启用该部门的所有上级部门
  235. updateParentDeptStatusNormal(dept);
  236. }
  237. return result;
  238. }
  239. /**
  240. * 修改该部门的父级部门状态
  241. *
  242. * @param dept 当前部门
  243. */
  244. private void updateParentDeptStatusNormal(SysDept dept)
  245. {
  246. String ancestors = dept.getAncestors();
  247. Long[] deptIds = Convert.toLongArray(ancestors);
  248. deptMapper.updateDeptStatusNormal(deptIds);
  249. }
  250. /**
  251. * 修改子元素关系
  252. *
  253. * @param deptId 被修改的部门ID
  254. * @param newAncestors 新的父ID集合
  255. * @param oldAncestors 旧的父ID集合
  256. */
  257. public void updateDeptChildren(Long deptId, String newAncestors, String oldAncestors)
  258. {
  259. List<SysDept> children = deptMapper.selectChildrenDeptById(deptId);
  260. for (SysDept child : children)
  261. {
  262. child.setAncestors(child.getAncestors().replaceFirst(oldAncestors, newAncestors));
  263. }
  264. if (children.size() > 0)
  265. {
  266. deptMapper.updateDeptChildren(children);
  267. }
  268. }
  269. /**
  270. * 删除部门管理信息
  271. *
  272. * @param deptId 部门ID
  273. * @return 结果
  274. */
  275. @Override
  276. public int deleteDeptById(Long deptId)
  277. {
  278. return deptMapper.deleteDeptById(deptId);
  279. }
  280. /**
  281. * 递归列表
  282. */
  283. private void recursionFn(List<SysDept> list, SysDept t)
  284. {
  285. // 得到子节点列表
  286. List<SysDept> childList = getChildList(list, t);
  287. t.setChildren(childList);
  288. for (SysDept tChild : childList)
  289. {
  290. if (hasChild(list, tChild))
  291. {
  292. recursionFn(list, tChild);
  293. }
  294. }
  295. }
  296. /**
  297. * 得到子节点列表
  298. */
  299. private List<SysDept> getChildList(List<SysDept> list, SysDept t)
  300. {
  301. List<SysDept> tlist = new ArrayList<SysDept>();
  302. Iterator<SysDept> it = list.iterator();
  303. while (it.hasNext())
  304. {
  305. SysDept n = (SysDept) it.next();
  306. if (StringUtils.isNotNull(n.getParentId()) && n.getParentId().longValue() == t.getDeptId().longValue())
  307. {
  308. tlist.add(n);
  309. }
  310. }
  311. return tlist;
  312. }
  313. /**
  314. * 判断是否有子节点
  315. */
  316. private boolean hasChild(List<SysDept> list, SysDept t)
  317. {
  318. return getChildList(list, t).size() > 0;
  319. }
  320. }