|
|
@ -37,8 +37,12 @@ import org.springblade.system.feign.ISysClient; |
|
|
|
import org.springblade.system.user.cache.UserCache; |
|
|
|
import org.springblade.system.user.cache.UserCache; |
|
|
|
import org.springblade.system.user.entity.User; |
|
|
|
import org.springblade.system.user.entity.User; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
|
|
|
|
import org.springframework.jdbc.datasource.DataSourceTransactionManager; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
import org.springframework.transaction.TransactionDefinition; |
|
|
|
|
|
|
|
import org.springframework.transaction.TransactionStatus; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
import org.springframework.transaction.support.DefaultTransactionDefinition; |
|
|
|
|
|
|
|
|
|
|
|
import java.time.Instant; |
|
|
|
import java.time.Instant; |
|
|
|
import java.time.LocalDate; |
|
|
|
import java.time.LocalDate; |
|
|
@ -46,6 +50,9 @@ import java.time.LocalDateTime; |
|
|
|
import java.time.ZoneId; |
|
|
|
import java.time.ZoneId; |
|
|
|
import java.time.format.DateTimeFormatter; |
|
|
|
import java.time.format.DateTimeFormatter; |
|
|
|
import java.util.*; |
|
|
|
import java.util.*; |
|
|
|
|
|
|
|
import java.util.concurrent.CompletableFuture; |
|
|
|
|
|
|
|
import java.util.concurrent.ExecutionException; |
|
|
|
|
|
|
|
import java.util.concurrent.ThreadPoolExecutor; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
import java.util.stream.Stream; |
|
|
|
import java.util.stream.Stream; |
|
|
|
|
|
|
|
|
|
|
@ -71,6 +78,11 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
private final IFlowClient flowClient; |
|
|
|
private final IFlowClient flowClient; |
|
|
|
private final ISysClient sysClient; |
|
|
|
private final ISysClient sysClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final ThreadPoolExecutor executor; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final DataSourceTransactionManager dataSourceTransactionManager; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 日常维护生成任务 |
|
|
|
* 日常维护生成任务 |
|
|
|
* |
|
|
|
* |
|
|
@ -79,17 +91,13 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
public void createTask(List<String> ids) { |
|
|
|
public void createTask(List<String> ids) { |
|
|
|
|
|
|
|
try { |
|
|
|
//获取日常维护计划
|
|
|
|
//获取日常维护计划
|
|
|
|
LambdaQueryWrapper<OperMaintenancePlanEntity> planEntityLambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
LambdaQueryWrapper<OperMaintenancePlanEntity> planEntityLambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
planEntityLambdaQueryWrapper.in(BaseEntity::getId, ids); |
|
|
|
planEntityLambdaQueryWrapper.in(BaseEntity::getId, ids); |
|
|
|
List<OperMaintenancePlanEntity> planEntities = maintenancePlanService |
|
|
|
List<OperMaintenancePlanEntity> planEntities = maintenancePlanService.list(planEntityLambdaQueryWrapper); |
|
|
|
.list(planEntityLambdaQueryWrapper); |
|
|
|
|
|
|
|
//筛选当月没生成任务的计划
|
|
|
|
//筛选当月没生成任务的计划
|
|
|
|
List<OperMaintenancePlanEntity> finalPlanEntities = planEntities.stream().filter(planEntity -> |
|
|
|
List<OperMaintenancePlanEntity> finalPlanEntities = planEntities.stream().filter(planEntity -> ObjectUtil.isEmpty(planEntity.getCreateTaskTime()) || !DateUtil.judgeSameDay(DateUtil.DateToLocalDateTime(planEntity.getCreateTaskTime()), LocalDate.now())).collect(Collectors.toList()); |
|
|
|
ObjectUtil.isEmpty(planEntity.getCreateTaskTime()) |
|
|
|
|
|
|
|
|| !DateUtil.judgeSameDay( |
|
|
|
|
|
|
|
DateUtil.DateToLocalDateTime(planEntity.getCreateTaskTime()), LocalDate.now()) |
|
|
|
|
|
|
|
).collect(Collectors.toList()); |
|
|
|
|
|
|
|
if (CollectionUtil.isEmpty(finalPlanEntities)) { |
|
|
|
if (CollectionUtil.isEmpty(finalPlanEntities)) { |
|
|
|
throw new ServiceException("所选计划当天已生成任务"); |
|
|
|
throw new ServiceException("所选计划当天已生成任务"); |
|
|
|
} |
|
|
|
} |
|
|
@ -97,8 +105,7 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
// 通过计划生成任务
|
|
|
|
// 通过计划生成任务
|
|
|
|
this.createTaskByPlan(finalPlanEntity); |
|
|
|
this.createTaskByPlan(finalPlanEntity); |
|
|
|
//更新任务派发时间
|
|
|
|
//更新任务派发时间
|
|
|
|
LambdaUpdateWrapper<OperMaintenancePlanEntity> planEntityLambdaUpdateWrapper = |
|
|
|
LambdaUpdateWrapper<OperMaintenancePlanEntity> planEntityLambdaUpdateWrapper = new LambdaUpdateWrapper<>(); |
|
|
|
new LambdaUpdateWrapper<>(); |
|
|
|
|
|
|
|
planEntityLambdaUpdateWrapper.set(OperMaintenancePlanEntity::getCreateTaskTime, new Date()); |
|
|
|
planEntityLambdaUpdateWrapper.set(OperMaintenancePlanEntity::getCreateTaskTime, new Date()); |
|
|
|
planEntityLambdaUpdateWrapper.eq(OperMaintenancePlanEntity::getId, finalPlanEntity.getId()); |
|
|
|
planEntityLambdaUpdateWrapper.eq(OperMaintenancePlanEntity::getId, finalPlanEntity.getId()); |
|
|
|
boolean update = maintenancePlanService.update(planEntityLambdaUpdateWrapper); |
|
|
|
boolean update = maintenancePlanService.update(planEntityLambdaUpdateWrapper); |
|
|
@ -107,6 +114,9 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
throw new ServiceException("更新任务派发失败"); |
|
|
|
throw new ServiceException("更新任务派发失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
e.printStackTrace(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -117,6 +127,7 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
@Transactional(rollbackFor = RuntimeException.class) |
|
|
|
@Transactional(rollbackFor = RuntimeException.class) |
|
|
|
public void findPending(ProcessWorkFlowResponse response) { |
|
|
|
public void findPending(ProcessWorkFlowResponse response) { |
|
|
|
|
|
|
|
try { |
|
|
|
log.info("获取businessKey: {}", response.getBusinessKey()); |
|
|
|
log.info("获取businessKey: {}", response.getBusinessKey()); |
|
|
|
log.info("获取taskId: {} ", response.getTaskId()); |
|
|
|
log.info("获取taskId: {} ", response.getTaskId()); |
|
|
|
log.info("获取下一个审批人是: {} ", response.getNextStepOperator()); |
|
|
|
log.info("获取下一个审批人是: {} ", response.getNextStepOperator()); |
|
|
@ -129,8 +140,8 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
OperMaintenanceTaskEntityVo standardTicketInfoVo = null; |
|
|
|
OperMaintenanceTaskEntityVo standardTicketInfoVo = null; |
|
|
|
try { |
|
|
|
try { |
|
|
|
JSONObject jsonObject = JSONObject.parseObject(formData); |
|
|
|
JSONObject jsonObject = JSONObject.parseObject(formData); |
|
|
|
standardTicketInfoVo = JSONObject.parseObject(jsonObject.getString("operMaintenanceTaskEntityVo"), |
|
|
|
standardTicketInfoVo = JSONObject.parseObject(jsonObject.getString("operMaintenanceTaskEntityVo"), new TypeReference<OperMaintenanceTaskEntityVo>() { |
|
|
|
new TypeReference<OperMaintenanceTaskEntityVo>(){}); |
|
|
|
}); |
|
|
|
// standardTicketInfoVo = (OperMaintenanceTaskEntityVo) jsonObject.get("operMaintenanceTaskEntityVo");
|
|
|
|
// standardTicketInfoVo = (OperMaintenanceTaskEntityVo) jsonObject.get("operMaintenanceTaskEntityVo");
|
|
|
|
// standardTicketInfoVo = JSONObject.toJavaObject(jsonObject, OperMaintenanceTaskEntityVo.class);
|
|
|
|
// standardTicketInfoVo = JSONObject.toJavaObject(jsonObject, OperMaintenanceTaskEntityVo.class);
|
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
@ -196,10 +207,7 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
businessMessageDTO.setTaskId(dbOperMaintenanceTaskEntity.getId()); |
|
|
|
businessMessageDTO.setTaskId(dbOperMaintenanceTaskEntity.getId()); |
|
|
|
businessMessageDTO.setTenantId("200000"); |
|
|
|
businessMessageDTO.setTenantId("200000"); |
|
|
|
//您有一张工作票待审批,工作内容:*****,审批环节:*****;
|
|
|
|
//您有一张工作票待审批,工作内容:*****,审批环节:*****;
|
|
|
|
String countent = |
|
|
|
String countent = "您有一条日常维护任务待审批,工作内容:".concat(dbOperMaintenanceTaskEntity.getTitle()).concat(",审批环节:").concat(response.getTaskName()); |
|
|
|
"您有一条日常维护任务待审批,工作内容:".concat(dbOperMaintenanceTaskEntity.getTitle()) |
|
|
|
|
|
|
|
.concat(",审批环节:") |
|
|
|
|
|
|
|
.concat(response.getTaskName()); |
|
|
|
|
|
|
|
businessMessageDTO.setContent(countent); |
|
|
|
businessMessageDTO.setContent(countent); |
|
|
|
businessMessageDTO.setDeptId(dbOperMaintenanceTaskEntity.getCreateDept()); |
|
|
|
businessMessageDTO.setDeptId(dbOperMaintenanceTaskEntity.getCreateDept()); |
|
|
|
R<String> deptName = sysClient.getDeptName(dbOperMaintenanceTaskEntity.getCreateDept()); |
|
|
|
R<String> deptName = sysClient.getDeptName(dbOperMaintenanceTaskEntity.getCreateDept()); |
|
|
@ -219,6 +227,9 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
} |
|
|
|
} |
|
|
|
log.info("推送成功~"); |
|
|
|
log.info("推送成功~"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
e.printStackTrace(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -281,6 +292,9 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
* @param finalPlanEntity |
|
|
|
* @param finalPlanEntity |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private void fillTask(OperMaintenanceTaskEntity taskEntity, OperMaintenancePlanEntity finalPlanEntity) { |
|
|
|
private void fillTask(OperMaintenanceTaskEntity taskEntity, OperMaintenancePlanEntity finalPlanEntity) { |
|
|
|
|
|
|
|
DefaultTransactionDefinition defaultTransactionDefinition = new DefaultTransactionDefinition(); |
|
|
|
|
|
|
|
defaultTransactionDefinition.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRES_NEW); |
|
|
|
|
|
|
|
TransactionStatus transaction = dataSourceTransactionManager.getTransaction(defaultTransactionDefinition); |
|
|
|
taskEntity.setId(null); |
|
|
|
taskEntity.setId(null); |
|
|
|
taskEntity.setCreateTime(new Date()); |
|
|
|
taskEntity.setCreateTime(new Date()); |
|
|
|
taskEntity.setUpdateTime(new Date()); |
|
|
|
taskEntity.setUpdateTime(new Date()); |
|
|
@ -299,8 +313,7 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
if (ObjectUtil.isNotEmpty(finalPlanEntity.getMaintenanceModel()) && finalPlanEntity.getMaintenanceModel() == 2) { |
|
|
|
if (ObjectUtil.isNotEmpty(finalPlanEntity.getMaintenanceModel()) && finalPlanEntity.getMaintenanceModel() == 2) { |
|
|
|
//查询值班信息
|
|
|
|
//查询值班信息
|
|
|
|
LambdaQueryWrapper<ImsDutyMainEntity> entityLambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
LambdaQueryWrapper<ImsDutyMainEntity> entityLambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
entityLambdaQueryWrapper.eq(ImsDutyMainEntity::getDutyDate, |
|
|
|
entityLambdaQueryWrapper.eq(ImsDutyMainEntity::getDutyDate, DateTimeFormatter.ofPattern(PATTERN_DATE).format(disposeTime)); |
|
|
|
DateTimeFormatter.ofPattern(PATTERN_DATE).format(disposeTime)); |
|
|
|
|
|
|
|
entityLambdaQueryWrapper.eq(ImsDutyMainEntity::getClassId, finalPlanEntity.getImsDutyClassId()); |
|
|
|
entityLambdaQueryWrapper.eq(ImsDutyMainEntity::getClassId, finalPlanEntity.getImsDutyClassId()); |
|
|
|
ImsDutyMainEntity entity = mainService.getOne(entityLambdaQueryWrapper); |
|
|
|
ImsDutyMainEntity entity = mainService.getOne(entityLambdaQueryWrapper); |
|
|
|
if (ObjectUtil.isNotEmpty(entity) && StringUtils.isNotEmpty(entity.getDutyPersonIds())) { |
|
|
|
if (ObjectUtil.isNotEmpty(entity) && StringUtils.isNotEmpty(entity.getDutyPersonIds())) { |
|
|
@ -312,16 +325,26 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
taskService.save(taskEntity); |
|
|
|
taskService.save(taskEntity); |
|
|
|
//生成工作流实例
|
|
|
|
dataSourceTransactionManager.commit(transaction); |
|
|
|
|
|
|
|
//启动流程
|
|
|
|
String processInstanceId = this.startProcess(finalPlanEntity.getProcDefId(), taskEntity); |
|
|
|
String processInstanceId = this.startProcess(finalPlanEntity.getProcDefId(), taskEntity); |
|
|
|
|
|
|
|
//推送消息
|
|
|
|
|
|
|
|
CompletableFuture<Void> operMaintenanceTaskEntityCompletableFuture = |
|
|
|
|
|
|
|
CompletableFuture.runAsync(() -> { |
|
|
|
taskEntity.setProcessInstanceId(processInstanceId); |
|
|
|
taskEntity.setProcessInstanceId(processInstanceId); |
|
|
|
taskService.updateById(taskEntity); |
|
|
|
taskService.updateById(taskEntity); |
|
|
|
finalPlanEntity.setCreateTaskTime(new Date()); |
|
|
|
finalPlanEntity.setCreateTaskTime(new Date()); |
|
|
|
maintenancePlanService.updateById(finalPlanEntity); |
|
|
|
maintenancePlanService.updateById(finalPlanEntity); |
|
|
|
|
|
|
|
OperMaintenanceTaskEntity maintenanceTask = taskService.getById(taskEntity.getId()); |
|
|
|
taskEntity = taskService.getById(taskEntity.getId()); |
|
|
|
|
|
|
|
//推送消息
|
|
|
|
//推送消息
|
|
|
|
this.pushTaskMessage(taskEntity); |
|
|
|
this.pushTaskMessage(maintenanceTask); |
|
|
|
|
|
|
|
}, executor); |
|
|
|
|
|
|
|
//启动队列
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
CompletableFuture.allOf(operMaintenanceTaskEntityCompletableFuture).get(); |
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
e.printStackTrace(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -343,10 +366,7 @@ public class MaintenanceServiceImpl implements MaintenanceService { |
|
|
|
params.put("initUserIds", taskUsers); |
|
|
|
params.put("initUserIds", taskUsers); |
|
|
|
params.put("operMaintenanceTaskEntityVo", operMaintenanceTaskEntityVo); |
|
|
|
params.put("operMaintenanceTaskEntityVo", operMaintenanceTaskEntityVo); |
|
|
|
|
|
|
|
|
|
|
|
return flowClient.startProcessInstanceContainNameByKey(processDefinitionKey, |
|
|
|
return flowClient.startProcessInstanceContainNameByKey(processDefinitionKey, String.valueOf(taskEntity.getId()), taskEntity.getTitle(), params).getData().getProcessInstanceId(); |
|
|
|
String.valueOf(taskEntity.getId()), taskEntity.getTitle(), params) |
|
|
|
|
|
|
|
.getData() |
|
|
|
|
|
|
|
.getProcessInstanceId(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|