|
|
|
@ -7,6 +7,7 @@ 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.tasktag.TaskTagDO; |
|
|
|
|
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.enterprise.EnterpriseMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.taglibrary.TagLibraryMapper; |
|
|
|
@ -33,6 +34,8 @@ import cn.iocoder.yudao.module.system.dal.mysql.enterpriseinspections.Enterprise
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; |
|
|
|
|
import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUser; |
|
|
|
|
import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUserId; |
|
|
|
|
import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -89,7 +92,15 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
// 删除
|
|
|
|
|
enterpriseInspectionsMapper.deleteById(id); |
|
|
|
|
} |
|
|
|
|
@Override |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
public int deleteEnterpriseInspectionsTaskId(Long taskId) { |
|
|
|
|
LambdaQueryWrapper<EnterpriseInspectionsDO> taskMembersDOLambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
taskMembersDOLambdaQueryWrapper.eq(EnterpriseInspectionsDO::getTaskId, taskId); |
|
|
|
|
// 删除
|
|
|
|
|
return enterpriseInspectionsMapper.delete(taskMembersDOLambdaQueryWrapper); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
private void validateEnterpriseInspectionsExists(Long id) { |
|
|
|
|
if (enterpriseInspectionsMapper.selectById(id) == null) { |
|
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_NOT_EXISTS); |
|
|
|
@ -98,7 +109,38 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public EnterpriseInspectionsDO getEnterpriseInspections(Long id) { |
|
|
|
|
return enterpriseInspectionsMapper.selectById(id); |
|
|
|
|
|
|
|
|
|
final EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper.selectById(id); |
|
|
|
|
if (enterpriseInspectionsDO == null) { |
|
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final TaskInfoDO taskInfoDO = taskInfoMapper.selectById(enterpriseInspectionsDO.getTaskId()); |
|
|
|
|
if (taskInfoDO == null) { |
|
|
|
|
throw exception(TASK_INFO_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
enterpriseInspectionsDO.setTaskName(taskInfoDO.getTitle()); |
|
|
|
|
enterpriseInspectionsDO.setTaskName(taskInfoDO.getTitle()); |
|
|
|
|
enterpriseInspectionsDO.setTaskNumber(taskInfoDO.getTaskNumber()); |
|
|
|
|
|
|
|
|
|
final EnterpriseDO enterpriseDO = enterpriseMapper.selectById(enterpriseInspectionsDO.getEnterpriseId()); |
|
|
|
|
if (enterpriseDO == null) { |
|
|
|
|
throw exception(ENTERPRISE_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
//任务类型
|
|
|
|
|
enterpriseInspectionsDO.setEnterpriseName(enterpriseDO.getEnterprisesName()); |
|
|
|
|
|
|
|
|
|
final AdminUserDO user = adminUserService.getUser(enterpriseInspectionsDO.getUserId()); |
|
|
|
|
if (user == null) { |
|
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
enterpriseInspectionsDO.setInspectName(user.getRealName()); |
|
|
|
|
|
|
|
|
|
final DeptDO dept = deptService.getDept(user.getDeptId()); |
|
|
|
|
|
|
|
|
|
enterpriseInspectionsDO.setDepartment(dept.getName()); |
|
|
|
|
|
|
|
|
|
return enterpriseInspectionsDO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -152,12 +194,24 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
//根据执法人员id 查询其所属部门
|
|
|
|
|
final Long userId = Long.valueOf(inspectionsLogDOS.get(0).getCreator()); |
|
|
|
|
final AdminUserDO user = adminUserService.getUser(userId); |
|
|
|
|
|
|
|
|
|
if (user == null) { |
|
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final DeptDO dept = deptService.getDept(user.getDeptId()); |
|
|
|
|
item.setDepartment(dept.getName()); |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
//根据执法人员id 查询其所属部门
|
|
|
|
|
final Long userId = Long.valueOf(item.getUserId()); |
|
|
|
|
final AdminUserDO user = adminUserService.getUser(userId); |
|
|
|
|
|
|
|
|
|
item.setInspectName(user.getRealName()); |
|
|
|
|
|
|
|
|
|
if (user == null) { |
|
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -175,6 +229,11 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
//循环记录id列表
|
|
|
|
|
passOnSaveVO.getInspectionsId().forEach(item->{ |
|
|
|
|
final EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper.selectById(item); |
|
|
|
|
|
|
|
|
|
if (enterpriseInspectionsDO.getUserId() == passOnSaveVO.getUserId()) { |
|
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR2); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (enterpriseInspectionsDO == null) { |
|
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
@ -187,22 +246,25 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
//已经开始 就要判断是否是整改状态 整改状态才能转
|
|
|
|
|
enterpriseInspectionsDO.setStatus(4); |
|
|
|
|
} else { |
|
|
|
|
enterpriseInspectionsDO.setStatus(3); |
|
|
|
|
enterpriseInspectionsDO.setStatus(1); |
|
|
|
|
enterpriseInspectionsDO.setUserId(passOnSaveVO.getUserId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
enterpriseInspectionsMapper.updateById(enterpriseInspectionsDO); |
|
|
|
|
|
|
|
|
|
AdminUserDO user = adminUserService.getUser(passOnSaveVO.getUserId()); |
|
|
|
|
if (user == null) { |
|
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
|
if (enterpriseInspectionsDO.getStatus() == 4) { |
|
|
|
|
AdminUserDO user = adminUserService.getUser(passOnSaveVO.getUserId()); |
|
|
|
|
if (user == null) { |
|
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
EnterpriseInspectionsDO inspectionsDO = new EnterpriseInspectionsDO(); |
|
|
|
|
inspectionsDO.setEnterpriseId(enterpriseInspectionsDO.getEnterpriseId()); |
|
|
|
|
inspectionsDO.setTaskId(enterpriseInspectionsDO.getTaskId()); |
|
|
|
|
inspectionsDO.setUserId(passOnSaveVO.getUserId()); |
|
|
|
|
inspectionsDO.setInspectName(user.getRealName()); |
|
|
|
|
enterpriseInspectionsMapper.insert(inspectionsDO); |
|
|
|
|
} |
|
|
|
|
EnterpriseInspectionsDO inspectionsDO = new EnterpriseInspectionsDO(); |
|
|
|
|
inspectionsDO.setEnterpriseId(enterpriseInspectionsDO.getEnterpriseId()); |
|
|
|
|
inspectionsDO.setTaskId(enterpriseInspectionsDO.getTaskId()); |
|
|
|
|
|
|
|
|
|
inspectionsDO.setUserId(passOnSaveVO.getUserId()); |
|
|
|
|
inspectionsDO.setInspectName(user.getRealName()); |
|
|
|
|
enterpriseInspectionsMapper.insert(inspectionsDO); |
|
|
|
|
} else { |
|
|
|
|
throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR); |
|
|
|
|
} |
|
|
|
@ -245,5 +307,8 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
return inspectionsLogDOS.get(0); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<EnterpriseInspectionsDO> getEnterpriseInspectionsList(EnterpriseInspectionsPageReqVO pageReqVO) { |
|
|
|
|
return enterpriseInspectionsMapper.selectList(pageReqVO); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|