|
|
|
@ -255,9 +255,10 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
final List<InspectionsLogAppListVO> inspectionsLogAppListVO = this.getInspectionsLogAppListVO(item.getId()); |
|
|
|
|
if (inspectionsLogAppListVO != null) { |
|
|
|
|
List<String> inspectCollect = inspectionsLogAppListVO.stream().filter(item2 -> item2.getIsInspect() == true).map(map3 -> map3.getRealName()).collect(Collectors.toList()); |
|
|
|
|
item.setCooperateWithName(String.join(",", inspectCollect)); |
|
|
|
|
List<String> withCollect = inspectionsLogAppListVO.stream().filter(item2 -> item2.getIsInspect() == false).map(map3 -> map3.getRealName()).collect(Collectors.toList()); |
|
|
|
|
item.setInspectName(String.join(",", withCollect)); |
|
|
|
|
item.setInspectName(String.join(",", inspectCollect)); |
|
|
|
|
item.setCooperateWithName(String.join(",", withCollect)); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -331,21 +332,21 @@ 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 (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(1);
|
|
|
|
|
// jobSaveReqVO.setRetryInterval(0);
|
|
|
|
|
// jobSaveReqVO.setMonitorTimeout(0);
|
|
|
|
|
// jobService.createInspectionsJob(jobSaveReqVO);
|
|
|
|
|
// } catch (Throwable e) {
|
|
|
|
|
// throw new RuntimeException(e);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
//插入签到人 方便查询
|
|
|
|
|
if (signInLogDOS == null || signInLogDOS.size() > 0) { |
|
|
|
|