|
@@ -191,22 +191,22 @@ public class SysDeptServiceImpl extends JoinServiceImpl<SysDeptMapper, SysDept>
|
|
|
return UserConstants.UNIQUE;
|
|
|
}
|
|
|
|
|
|
- ///**
|
|
|
- // * 校验部门是否有数据权限
|
|
|
- // *
|
|
|
- // * @param deptId 部门id
|
|
|
- // */
|
|
|
- //@Override
|
|
|
- //public void checkDeptDataScope(Long deptId) {
|
|
|
- // if (!SysUser.isAdmin(SecurityUtils.getId())) {
|
|
|
- // SysDeptVo dept = new SysDeptVo();
|
|
|
- // dept.setDeptId(deptId);
|
|
|
- // List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
|
|
|
- // if (StringUtils.isEmpty(depts)) {
|
|
|
- // throw new ServiceException("没有权限访问部门数据!");
|
|
|
- // }
|
|
|
- // }
|
|
|
- //}
|
|
|
+ /**
|
|
|
+ * 校验部门是否有数据权限
|
|
|
+ *
|
|
|
+ * @param deptId 部门id
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void checkDeptDataScope(Long deptId) {
|
|
|
+ if (!SysUser.isAdmin(SecurityUtils.getId())) {
|
|
|
+ SysDeptVo dept = new SysDeptVo();
|
|
|
+ dept.setDeptId(deptId);
|
|
|
+ List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
|
|
|
+ if (StringUtils.isEmpty(depts)) {
|
|
|
+ throw new ServiceException("没有权限访问部门数据!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 新增保存部门信息
|