@ -1,5 +1,12 @@
package cn.iocoder.yudao.module.system.service.inspectionslog ;
import cn.iocoder.yudao.module.system.dal.dataobject.enterpriseinspections.EnterpriseInspectionsDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO ;
import cn.iocoder.yudao.module.system.dal.mysql.enterpriseinspections.EnterpriseInspectionsMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper ;
import cn.iocoder.yudao.module.system.service.user.AdminUserService ;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import org.springframework.stereotype.Service ;
import org.springframework.validation.annotation.Validated ;
@ -17,6 +24,8 @@ import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMap
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.* ;
/ * *
@ -30,12 +39,69 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
@Resource
private InspectionsLogMapper inspectionsLogMapper ;
@Resource
private AdminUserService adminUserService ;
@Resource
private EnterpriseInspectionsMapper enterpriseInspectionsMapper ;
@Resource
private TaskInfoMapper taskInfoMapper ;
@Override
public Long createInspectionsLog ( InspectionsLogSaveReqVO createReqVO ) {
//当前用户id
Long loginUserId = getLoginUserId ( ) ;
AdminUserDO user = adminUserService . getUser ( loginUserId ) ;
//根据查询出的列表判断执行到哪一步
LambdaQueryWrapper < InspectionsLogDO > wrapper = new LambdaQueryWrapper < > ( ) ;
wrapper . eq ( InspectionsLogDO : : getInspectionsId , createReqVO . getInspectionsId ( ) ) ;
wrapper . orderByDesc ( InspectionsLogDO : : getCreateTime ) ;
List < InspectionsLogDO > list = inspectionsLogMapper . selectList ( wrapper ) ;
if ( list = = null | | list . size ( ) = = 0 ) {
//签到
createReqVO . setStatus ( 1 ) ;
createReqVO . setInspectId ( loginUserId ) ;
createReqVO . setInspectName ( user . getRealName ( ) ) ;
}
if ( list ! = null & & createReqVO . getStatus ( ) ! = null & & createReqVO . getStatus ( ) = = 1 ) {
//请不要重复签到
throw exception ( INSPECTIONS_SUCCESS ) ;
}
if ( list ! = null & & list . get ( 0 ) . getStatus ( ) = = 2 ) {
throw exception ( INSPECTIONS_SUCCESS ) ;
}
// 插入
InspectionsLogDO inspectionsLog = BeanUtils . toBean ( createReqVO , InspectionsLogDO . class ) ;
inspectionsLogMapper . insert ( inspectionsLog ) ;
//整改需要重新创建子任务
if ( list ! = null & & createReqVO . getStatus ( ) ! = null & & createReqVO . getStatus ( ) = = 3 ) {
//查询父任务,和执法记录
EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper . selectById ( createReqVO . getInspectionsId ( ) ) ;
if ( enterpriseInspectionsDO = = null ) {
throw exception ( ENTERPRISE_INSPECTIONS_NOT_EXISTS ) ;
}
//添加子任务
TaskInfoDO taskInfo = new TaskInfoDO ( ) ;
taskInfo . setTitle ( enterpriseInspectionsDO . getEnterpriseId ( ) + "-" + "整改任务" ) ;
taskInfo . setTaskType ( 1 ) ; //整改默认是普通专项任务类型
taskInfo . setParentId ( enterpriseInspectionsDO . getTaskId ( ) ) ;
taskInfo . setParentType ( 21 ) ; //父子任务类型
taskInfoMapper . insert ( taskInfo ) ;
//添加执法记录
EnterpriseInspectionsDO enterpriseInspectionsDO1 = new EnterpriseInspectionsDO ( ) ;
enterpriseInspectionsDO1 . setUserId ( getLoginUserId ( ) ) ;
enterpriseInspectionsDO1 . setEnterpriseId ( enterpriseInspectionsDO . getEnterpriseId ( ) ) ;
enterpriseInspectionsDO1 . setTaskId ( taskInfo . getId ( ) ) ;
enterpriseInspectionsDO1 . setStatus ( 2 ) ; //整改任务默认是启动的状态
enterpriseInspectionsMapper . insert ( enterpriseInspectionsDO1 ) ;
}
// 返回
return inspectionsLog . getId ( ) ;
}
@ -80,4 +146,34 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
return inspectionsLogMapper . selectList ( wrapper ) ;
}
/ * *
* 协作人员签到
* @param inspectionsLogId
* /
@Override
public void cooperateWithSignIn ( Long inspectionsLogId ) {
// 校验存在
InspectionsLogDO inspectionsLogDO = inspectionsLogMapper . selectById ( inspectionsLogId ) ;
if ( inspectionsLogDO = = null ) {
throw exception ( INSPECTIONS_LOG_NOT_EXISTS ) ;
}
//查询真实名称并插入
AdminUserDO user = adminUserService . getUser ( getLoginUserId ( ) ) ;
if ( user = = null ) {
throw exception ( USER_NOT_EXISTS ) ;
}
// 更新
if ( inspectionsLogDO . getCooperateWithIds ( ) = = null ) {
inspectionsLogDO . setCooperateWithIds ( getLoginUserId ( ) . toString ( ) ) ;
inspectionsLogDO . setCooperateWithName ( user . getRealName ( ) ) ;
} else {
inspectionsLogDO . setCooperateWithIds ( inspectionsLogDO . getCooperateWithIds ( ) + "," + getLoginUserId ( ) ) ;
inspectionsLogDO . setCooperateWithName ( inspectionsLogDO . getCooperateWithName ( ) + "," + user . getRealName ( ) ) ;
}
inspectionsLogMapper . updateById ( inspectionsLogDO ) ;
}
}