|
@@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.ruoyi.common.annotation.DataScope;
|
|
|
import com.ruoyi.common.constant.UserConstants;
|
|
|
+import com.ruoyi.common.exception.BusinessException;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
import com.ruoyi.system.domain.SysDept;
|
|
|
import com.ruoyi.system.domain.SysRole;
|
|
@@ -162,6 +163,11 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
public int insertDept(SysDept dept)
|
|
|
{
|
|
|
SysDept info = deptMapper.selectDeptById(dept.getParentId());
|
|
|
+ // 如果父节点不为"正常"状态,则不允许新增子节点
|
|
|
+ if (!UserConstants.DEPT_NORMAL.equals(info.getStatus()))
|
|
|
+ {
|
|
|
+ throw new BusinessException("部门停用,不允许新增");
|
|
|
+ }
|
|
|
dept.setAncestors(info.getAncestors() + "," + dept.getParentId());
|
|
|
return deptMapper.insertDept(dept);
|
|
|
}
|
|
@@ -178,11 +184,30 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|
|
SysDept info = deptMapper.selectDeptById(dept.getParentId());
|
|
|
if (StringUtils.isNotNull(info))
|
|
|
{
|
|
|
- String ancestors = info.getAncestors() + "," + dept.getParentId();
|
|
|
+ String ancestors = info.getAncestors() + "," + info.getDeptId();
|
|
|
dept.setAncestors(ancestors);
|
|
|
updateDeptChildren(dept.getDeptId(), ancestors);
|
|
|
}
|
|
|
- return deptMapper.updateDept(dept);
|
|
|
+ int result = deptMapper.updateDept(dept);
|
|
|
+ if (UserConstants.DEPT_NORMAL.equals(dept.getStatus()))
|
|
|
+ {
|
|
|
+ // 如果该部门是启用状态,则启用该部门的所有上级部门
|
|
|
+ updateParentDeptStatus(dept);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改该部门的父级部门状态
|
|
|
+ *
|
|
|
+ * @param dept 当前部门
|
|
|
+ */
|
|
|
+ private void updateParentDeptStatus(SysDept dept)
|
|
|
+ {
|
|
|
+ String updateBy = dept.getUpdateBy();
|
|
|
+ dept = deptMapper.selectDeptById(dept.getDeptId());
|
|
|
+ dept.setUpdateBy(updateBy);
|
|
|
+ deptMapper.updateDeptStatus(dept);
|
|
|
}
|
|
|
|
|
|
/**
|