Search in sources :

Example 26 with SysDept

use of com.ruoyi.common.core.domain.entity.SysDept in project wumei-smart by kerwincui.

the class SysDeptServiceImpl method insertDept.

/**
 * 新增保存部门信息
 *
 * @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);
}
Also used : ServiceException(com.ruoyi.common.exception.ServiceException) SysDept(com.ruoyi.common.core.domain.entity.SysDept)

Example 27 with SysDept

use of com.ruoyi.common.core.domain.entity.SysDept in project wumei-smart by kerwincui.

the class SysDeptServiceImpl method checkDeptDataScope.

/**
 * 校验部门是否有数据权限
 *
 * @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("没有权限访问部门数据!");
        }
    }
}
Also used : ServiceException(com.ruoyi.common.exception.ServiceException) SysDept(com.ruoyi.common.core.domain.entity.SysDept)

Example 28 with SysDept

use of com.ruoyi.common.core.domain.entity.SysDept in project wumei-smart by kerwincui.

the class SysDeptServiceImpl method checkDeptNameUnique.

/**
 * 校验部门名称是否唯一
 *
 * @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;
}
Also used : SysDept(com.ruoyi.common.core.domain.entity.SysDept)

Example 29 with SysDept

use of com.ruoyi.common.core.domain.entity.SysDept in project wumei-smart by kerwincui.

the class SysDeptServiceImpl method getChildList.

/**
 * 得到子节点列表
 */
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;
}
Also used : SysDept(com.ruoyi.common.core.domain.entity.SysDept) ArrayList(java.util.ArrayList)

Example 30 with SysDept

use of com.ruoyi.common.core.domain.entity.SysDept in project RuoYi-Vue by yangzongzhuan.

the class SysDeptController method roleDeptTreeselect.

/**
 * 加载对应角色部门列表树
 */
@GetMapping(value = "/roleDeptTreeselect/{roleId}")
public AjaxResult roleDeptTreeselect(@PathVariable("roleId") Long roleId) {
    List<SysDept> depts = deptService.selectDeptList(new SysDept());
    AjaxResult ajax = AjaxResult.success();
    ajax.put("checkedKeys", deptService.selectDeptListByRoleId(roleId));
    ajax.put("depts", deptService.buildDeptTreeSelect(depts));
    return ajax;
}
Also used : AjaxResult(com.ruoyi.common.core.domain.AjaxResult) SysDept(com.ruoyi.common.core.domain.entity.SysDept) GetMapping(org.springframework.web.bind.annotation.GetMapping)

Aggregations

SysDept (com.ruoyi.common.core.domain.entity.SysDept)39 ServiceException (com.ruoyi.common.exception.ServiceException)8 ArrayList (java.util.ArrayList)7 GetMapping (org.springframework.web.bind.annotation.GetMapping)6 SaCheckPermission (cn.dev33.satoken.annotation.SaCheckPermission)4 ApiOperation (io.swagger.annotations.ApiOperation)4 AjaxResult (com.ruoyi.common.core.domain.AjaxResult)3 PreAuthorize (org.springframework.security.access.prepost.PreAuthorize)3 Log (com.ruoyi.common.annotation.Log)2 SysUser (com.ruoyi.common.core.domain.entity.SysUser)2 SysUserExportVo (com.ruoyi.system.domain.vo.SysUserExportVo)2 HashMap (java.util.HashMap)2 LambdaQueryWrapper (com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper)1 CustomException (com.ruoyi.common.exception.CustomException)1