|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.service.inspectionslog; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterpriseinspections.EnterpriseInspectionsDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.signinlog.SignInLogDO; |
|
|
|
|
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.signinlog.SignInLogMapper; |
|
|
|
@ -11,21 +11,21 @@ import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper;
|
|
|
|
|
import cn.iocoder.yudao.module.system.service.dept.DeptService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.enterpriseinspections.EnterpriseInspectionsService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.fileInfo.FileInfoService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.job.SystemJobService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.user.AdminUserService; |
|
|
|
|
import com.alibaba.excel.util.StringUtils; |
|
|
|
|
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; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.time.LocalDate; |
|
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.*; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
|
|
|
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper; |
|
|
|
@ -33,7 +33,6 @@ 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.*; |
|
|
|
|
|
|
|
|
@ -62,6 +61,8 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
private DeptService deptService; |
|
|
|
|
@Resource |
|
|
|
|
private FileInfoService fileInfoService; |
|
|
|
|
@Resource |
|
|
|
|
private SystemJobService jobService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
@ -78,13 +79,18 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
final AdminUserDO user = adminUserService.getUser(loginUserId); |
|
|
|
|
|
|
|
|
|
//根据查询出的列表判断执行到哪一步
|
|
|
|
|
final InspectionsLogDO inspectionsLogNew = enterpriseInspectionsService.getInspectionsLogNew(createReqVO.getInspectionsId()); |
|
|
|
|
InspectionsLogDO inspectionsLogNew = enterpriseInspectionsService.getInspectionsLogNew(createReqVO.getInspectionsId()); |
|
|
|
|
|
|
|
|
|
//没有记录和整改状态为打卡
|
|
|
|
|
if (inspectionsLogNew == null || (inspectionsLogNew != null && inspectionsLogNew.getStatus() == 3)) { |
|
|
|
|
createReqVO.setStatus(0); |
|
|
|
|
InspectionsLogDO inspectionsLog = BeanUtils.toBean(createReqVO, InspectionsLogDO.class); |
|
|
|
|
final int insert = inspectionsLogMapper.insert(inspectionsLog); |
|
|
|
|
|
|
|
|
|
if (inspectionsLogNew == null) { |
|
|
|
|
inspectionsLogNew = new InspectionsLogDO(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (insert > 0) { |
|
|
|
|
inspectionsLogNew.setId(inspectionsLog.getId()); |
|
|
|
|
} |
|
|
|
@ -151,6 +157,25 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
return inspectionsLogMapper.selectById(id); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 生成 Cron 表达式 |
|
|
|
|
* @return java.lang.String |
|
|
|
|
* @Date 2025-02-06 上午11:39 |
|
|
|
|
**/ |
|
|
|
|
public static String generateCronExpression(LocalDateTime dateTime) { |
|
|
|
|
|
|
|
|
|
// 获取年月日
|
|
|
|
|
int second = dateTime.getSecond(); |
|
|
|
|
int minute = dateTime.getMinute(); |
|
|
|
|
int hour = dateTime.getHour(); |
|
|
|
|
int dayOfMonth = dateTime.getDayOfMonth(); |
|
|
|
|
int month = dateTime.getMonthValue(); |
|
|
|
|
int year = dateTime.getYear(); |
|
|
|
|
|
|
|
|
|
return String.format("%d %d %d %d %d ? %d", second, minute, hour, dayOfMonth, month, year); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<InspectionsLogDO> getInspectionsLogPage(InspectionsLogPageReqVO pageReqVO) { |
|
|
|
|
//不显示待确认签到的状态
|
|
|
|
@ -171,7 +196,7 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
|
|
|
|
|
if (listOld != null && listOld.size() > 0) { |
|
|
|
|
listOld.forEach(item->{ |
|
|
|
|
item.setUserList(this.getInspectionsLogAppListVO(inspectionsLogNew.getId())); |
|
|
|
|
item.setUserList(this.getInspectionsLogAppListVO(item.getId())); |
|
|
|
|
list.add(item); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -306,6 +331,22 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
//插入图片
|
|
|
|
|
fileInfoService.saveFilesByDictData(createReqVO.getFileIds(), 644l,2l, updateObj.getId().toString()); |
|
|
|
|
|
|
|
|
|
if (createReqVO.getStatus() == 3 && createReqVO.getCorrectionTime() != null ) { |
|
|
|
|
try { |
|
|
|
|
JobSaveReqVO jobSaveReqVO = new JobSaveReqVO(); |
|
|
|
|
jobSaveReqVO.setName("整改任务到期提醒"); |
|
|
|
|
jobSaveReqVO.setHandlerName("inspectionsSendStartMessageJob"); |
|
|
|
|
jobSaveReqVO.setHandlerParam(updateObj.getId().toString()); |
|
|
|
|
jobSaveReqVO.setCronExpression(this.generateCronExpression(createReqVO.getCorrectionTime())); |
|
|
|
|
jobSaveReqVO.setRetryCount(0); |
|
|
|
|
jobSaveReqVO.setRetryInterval(0); |
|
|
|
|
jobSaveReqVO.setMonitorTimeout(0); |
|
|
|
|
jobService.createInspectionsJob(jobSaveReqVO); |
|
|
|
|
} catch (Throwable e) { |
|
|
|
|
throw new RuntimeException(e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//插入签到人 方便查询
|
|
|
|
|
if (signInLogDOS == null || signInLogDOS.size() > 0) { |
|
|
|
|
List<SignInLogDO> newList = new ArrayList<>(); |
|
|
|
|