|
|
@ -3,6 +3,8 @@ package cn.iocoder.yudao.module.system.service.enterpriseinspections; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.permission.RoleDO; |
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.permission.UserRoleDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.taglibrary.TagLibraryDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.taglibrary.TagLibraryDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO; |
|
|
@ -10,10 +12,14 @@ import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.dept.DeptMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.dept.DeptMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.enterprise.EnterpriseMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.enterprise.EnterpriseMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper; |
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.permission.RoleMapper; |
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.permission.UserRoleMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.taglibrary.TagLibraryMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.taglibrary.TagLibraryMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.tasktag.TaskTagMapper; |
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.tasktag.TaskTagMapper; |
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.user.AdminUserMapper; |
|
|
|
import cn.iocoder.yudao.module.system.service.dept.DeptService; |
|
|
|
import cn.iocoder.yudao.module.system.service.dept.DeptService; |
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.service.taglibrary.TagLibraryService; |
|
|
|
import cn.iocoder.yudao.module.system.service.user.AdminUserService; |
|
|
|
import cn.iocoder.yudao.module.system.service.user.AdminUserService; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
@ -66,6 +72,14 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
private AdminUserService adminUserService; |
|
|
|
private AdminUserService adminUserService; |
|
|
|
@Resource |
|
|
|
@Resource |
|
|
|
private DeptService deptService; |
|
|
|
private DeptService deptService; |
|
|
|
|
|
|
|
@Resource |
|
|
|
|
|
|
|
private TagLibraryService tagLibraryService; |
|
|
|
|
|
|
|
@Resource |
|
|
|
|
|
|
|
private AdminUserMapper adminUserMapper; |
|
|
|
|
|
|
|
@Resource |
|
|
|
|
|
|
|
private UserRoleMapper userRoleMapper; |
|
|
|
|
|
|
|
@Resource |
|
|
|
|
|
|
|
private RoleMapper roleMapper; |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public Long createEnterpriseInspections(EnterpriseInspectionsSaveReqVO createReqVO) { |
|
|
|
public Long createEnterpriseInspections(EnterpriseInspectionsSaveReqVO createReqVO) { |
|
|
@ -148,7 +162,33 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public PageResult<EnterpriseInspectionsDO> getEnterpriseInspectionsPage(EnterpriseInspectionsPageReqVO pageReqVO) { |
|
|
|
public PageResult<EnterpriseInspectionsDO> getEnterpriseInspectionsPage(EnterpriseInspectionsPageReqVO pageReqVO) { |
|
|
|
|
|
|
|
|
|
|
|
// final Long userId = getLoginUserId();
|
|
|
|
//根据角色显示不同
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
管理员,局长,查全部 |
|
|
|
|
|
|
|
检查员,查自己的 |
|
|
|
|
|
|
|
队长 查本部门 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
Long loginUserId = getLoginUserId(); |
|
|
|
|
|
|
|
final AdminUserDO user1 = adminUserService.getUser(loginUserId); |
|
|
|
|
|
|
|
if (user1.getPostIds().contains(1l) || user1.getPostIds().contains(2l)) { |
|
|
|
|
|
|
|
//全部
|
|
|
|
|
|
|
|
} else if (user1.getPostIds().contains(4l)) { |
|
|
|
|
|
|
|
//本部门
|
|
|
|
|
|
|
|
pageReqVO.setDepartmentId(user1.getDeptId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else if (user1.getPostIds().contains(5l)) { |
|
|
|
|
|
|
|
//自己
|
|
|
|
|
|
|
|
pageReqVO.setUserId(loginUserId); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//按照部门查询
|
|
|
|
|
|
|
|
if (pageReqVO.getDepartmentId() != null) { |
|
|
|
|
|
|
|
final List<AdminUserDO> adminUserDOS = adminUserMapper.selectList(new QueryWrapper<AdminUserDO>().eq("dept_id", pageReqVO.getDepartmentId())); |
|
|
|
|
|
|
|
if (adminUserDOS != null || adminUserDOS.size() > 0) { |
|
|
|
|
|
|
|
final List<Long> collect = adminUserDOS.stream().map(item -> item.getId()).collect(Collectors.toList()); |
|
|
|
|
|
|
|
pageReqVO.setUserIds(collect); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//根据企业名称查询
|
|
|
|
//根据企业名称查询
|
|
|
|
if (pageReqVO.getEnterpriseName() != null) { |
|
|
|
if (pageReqVO.getEnterpriseName() != null) { |
|
|
@ -183,29 +223,22 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
} |
|
|
|
} |
|
|
|
item.setTaskName(taskInfoDO.getTitle()); |
|
|
|
item.setTaskName(taskInfoDO.getTitle()); |
|
|
|
|
|
|
|
|
|
|
|
//查询任务标签
|
|
|
|
|
|
|
|
QueryWrapper<TaskTagDO> wrapper = new QueryWrapper<>(); |
|
|
|
|
|
|
|
wrapper.eq("task_id", taskInfoDO.getId()); |
|
|
|
|
|
|
|
final List<TaskTagDO> taskTagDOS = taskTagMapper.selectList(wrapper); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<String> tagList = new ArrayList<>(); |
|
|
|
|
|
|
|
if (taskTagDOS != null && taskTagDOS.size() > 0) { |
|
|
|
|
|
|
|
taskTagDOS.forEach(taskTagItem->{ |
|
|
|
|
|
|
|
final TagLibraryDO tagLibraryDO = tagLibraryMapper.selectById(taskTagItem.getTagId()); |
|
|
|
|
|
|
|
if (tagLibraryDO != null) { |
|
|
|
|
|
|
|
tagList.add(tagLibraryDO.getTagName()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
item.setTagList(tagList); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询企业
|
|
|
|
//查询企业
|
|
|
|
final EnterpriseDO enterpriseDO = enterpriseMapper.selectById(item.getEnterpriseId()); |
|
|
|
final EnterpriseDO enterpriseDO = enterpriseMapper.selectById(item.getEnterpriseId()); |
|
|
|
if (enterpriseDO == null) { |
|
|
|
if (enterpriseDO == null) { |
|
|
|
throw exception(ENTERPRISE_NOT_EXISTS); |
|
|
|
throw exception(ENTERPRISE_NOT_EXISTS); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询企业标签
|
|
|
|
|
|
|
|
final List<TagLibraryDO> tagLibraryDOS = tagLibraryService.listByEnterpriseId(enterpriseDO.getId()); |
|
|
|
|
|
|
|
if (tagLibraryDOS != null) { |
|
|
|
|
|
|
|
item.setTagList(tagLibraryDOS.stream().map(TagLibraryDO::getTagName).collect(Collectors.toList())); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
item.setEnterpriseName(enterpriseDO.getEnterprisesName()); |
|
|
|
item.setEnterpriseName(enterpriseDO.getEnterprisesName()); |
|
|
|
|
|
|
|
item.setEnterpriseAddress(enterpriseDO.getAddress()); |
|
|
|
|
|
|
|
|
|
|
|
//查询执行的最新一条记录
|
|
|
|
//查询执行的最新一条记录
|
|
|
|
final InspectionsLogDO inspectionsLogNew = this.getInspectionsLogNew(item.getId()); |
|
|
|
final InspectionsLogDO inspectionsLogNew = this.getInspectionsLogNew(item.getId()); |
|
|
|
if (inspectionsLogNew != null) { |
|
|
|
if (inspectionsLogNew != null) { |
|
|
@ -226,15 +259,16 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
//根据执法人员id 查询其所属部门
|
|
|
|
//根据执法人员id 查询其所属部门
|
|
|
|
|
|
|
|
if (item.getUserId() != null) { |
|
|
|
final Long userId = Long.valueOf(item.getUserId()); |
|
|
|
final Long userId = Long.valueOf(item.getUserId()); |
|
|
|
final AdminUserDO user = adminUserService.getUser(userId); |
|
|
|
final AdminUserDO user = adminUserService.getUser(userId); |
|
|
|
item.setInspectionStatus(1); |
|
|
|
|
|
|
|
item.setInspectName(user.getRealName()); |
|
|
|
item.setInspectName(user.getRealName()); |
|
|
|
|
|
|
|
|
|
|
|
if (user == null) { |
|
|
|
if (user == null) { |
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -244,7 +278,6 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
enterpriseInspectionsDOPageResult.setTotal(Long.valueOf(collect.size())); |
|
|
|
enterpriseInspectionsDOPageResult.setTotal(Long.valueOf(collect.size())); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return enterpriseInspectionsDOPageResult; |
|
|
|
return enterpriseInspectionsDOPageResult; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -297,10 +330,7 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR); |
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
@ -340,4 +370,44 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe |
|
|
|
public List<EnterpriseInspectionsDO> getEnterpriseInspectionsList(EnterpriseInspectionsPageReqVO pageReqVO) { |
|
|
|
public List<EnterpriseInspectionsDO> getEnterpriseInspectionsList(EnterpriseInspectionsPageReqVO pageReqVO) { |
|
|
|
return enterpriseInspectionsMapper.selectList(pageReqVO); |
|
|
|
return enterpriseInspectionsMapper.selectList(pageReqVO); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public List<SelectUserChangeVO> changeSelectUser(Long deptId) { |
|
|
|
|
|
|
|
List<SelectUserChangeVO> list = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<AdminUserDO> adminUserDOS; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<AdminUserDO> wrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
|
|
|
wrapper.isNotNull(AdminUserDO::getRealName); |
|
|
|
|
|
|
|
wrapper.ne(AdminUserDO::getId, 1L); |
|
|
|
|
|
|
|
if (deptId != null) { |
|
|
|
|
|
|
|
wrapper.eq(AdminUserDO::getDeptId, deptId); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
adminUserDOS = adminUserMapper.selectList(wrapper); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (adminUserDOS != null && adminUserDOS.size() > 0) { |
|
|
|
|
|
|
|
adminUserDOS.forEach(item-> { |
|
|
|
|
|
|
|
SelectUserChangeVO userChangeVO = new SelectUserChangeVO(); |
|
|
|
|
|
|
|
userChangeVO.setUserId(item.getId()); |
|
|
|
|
|
|
|
userChangeVO.setRealName(item.getRealName()); |
|
|
|
|
|
|
|
userChangeVO.setAvatar(item.getAvatar()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QueryWrapper<UserRoleDO> roleDOQueryWrapper = new QueryWrapper<>(); |
|
|
|
|
|
|
|
roleDOQueryWrapper.eq("user_id", item.getId()); |
|
|
|
|
|
|
|
List<UserRoleDO> userRoleDOS = userRoleMapper.selectList(roleDOQueryWrapper); |
|
|
|
|
|
|
|
if (userRoleDOS != null && userRoleDOS.size() > 0) { |
|
|
|
|
|
|
|
//查询角色名称
|
|
|
|
|
|
|
|
List<Long> roleIds = userRoleDOS.stream().map(UserRoleDO::getRoleId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
List<RoleDO> roleDOS = roleMapper.selectBatchIds(roleIds); |
|
|
|
|
|
|
|
if (roleDOS != null && roleDOS.size() > 0) { |
|
|
|
|
|
|
|
List<String> roleNames = roleDOS.stream().map(RoleDO::getName).collect(Collectors.toList()); |
|
|
|
|
|
|
|
userChangeVO.setRoleName(roleNames); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
list.add(userChangeVO); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return list; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|