|
@@ -72,7 +72,7 @@ public class SysDeptOrganServiceImpl implements SysDeptOrganService {
|
|
|
//本部门
|
|
|
LambdaQueryWrapper<SysDeptOrgan> wrapper = new LambdaQueryWrapper<>();
|
|
|
wrapper.eq(SysDeptOrgan::getDeptId, deptId);
|
|
|
- String[] ancestors = sysDept.getAncestors().split(",");
|
|
|
+ String[] ancestors = (sysDept.getAncestors() + "," + deptId).split(",");
|
|
|
//上级(除了顶级组织的每一级)
|
|
|
if (ancestors.length > 1) {
|
|
|
for (int i = 1; i < ancestors.length; i++) {
|