|
|
@ -1,6 +1,6 @@ |
|
|
|
package com.hnac.hzims.operational.defect.service.impl; |
|
|
|
package com.hnac.hzims.operational.defect.service.impl; |
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.alibaba.fastjson.TypeReference; |
|
|
|
import com.alibaba.fastjson.TypeReference; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
@ -8,16 +8,12 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
import com.hnac.hzims.common.logs.utils.StringUtils; |
|
|
|
import com.hnac.hzims.common.logs.utils.StringUtils; |
|
|
|
import com.hnac.hzims.fdp.feign.IFdpTaskClient; |
|
|
|
|
|
|
|
import com.hnac.hzims.message.MessageConstants; |
|
|
|
import com.hnac.hzims.message.MessageConstants; |
|
|
|
import com.hnac.hzims.message.dto.BusinessMessageDTO; |
|
|
|
import com.hnac.hzims.message.dto.BusinessMessageDTO; |
|
|
|
import com.hnac.hzims.message.fegin.IMessageClient; |
|
|
|
import com.hnac.hzims.message.fegin.IMessageClient; |
|
|
|
import com.hnac.hzims.middle.process.to.ProcessWorkFlowResponse; |
|
|
|
import com.hnac.hzims.middle.process.to.ProcessWorkFlowResponse; |
|
|
|
import com.hnac.hzims.operational.access.dto.OperAccessPlanDTO; |
|
|
|
|
|
|
|
import com.hnac.hzims.operational.access.dto.OperAccessTaskDTO; |
|
|
|
|
|
|
|
import com.hnac.hzims.operational.access.service.IOperAccessPlanService; |
|
|
|
import com.hnac.hzims.operational.access.service.IOperAccessPlanService; |
|
|
|
import com.hnac.hzims.operational.access.service.IOperAccessTaskService; |
|
|
|
import com.hnac.hzims.operational.access.service.IOperAccessTaskService; |
|
|
|
import com.hnac.hzims.operational.defect.constants.RepairConstant; |
|
|
|
|
|
|
|
import com.hnac.hzims.operational.defect.constants.TreatMethodConstant; |
|
|
|
import com.hnac.hzims.operational.defect.constants.TreatMethodConstant; |
|
|
|
import com.hnac.hzims.operational.defect.entity.OperAppearanceEntity; |
|
|
|
import com.hnac.hzims.operational.defect.entity.OperAppearanceEntity; |
|
|
|
import com.hnac.hzims.operational.defect.entity.OperDefectEntity; |
|
|
|
import com.hnac.hzims.operational.defect.entity.OperDefectEntity; |
|
|
@ -28,8 +24,8 @@ import com.hnac.hzims.operational.defect.service.IDefectCheckService; |
|
|
|
import com.hnac.hzims.operational.defect.service.IOperAppearanceService; |
|
|
|
import com.hnac.hzims.operational.defect.service.IOperAppearanceService; |
|
|
|
import com.hnac.hzims.operational.defect.service.IOperDefectService; |
|
|
|
import com.hnac.hzims.operational.defect.service.IOperDefectService; |
|
|
|
import com.hnac.hzims.operational.defect.service.IOperDefectStatisticsService; |
|
|
|
import com.hnac.hzims.operational.defect.service.IOperDefectStatisticsService; |
|
|
|
|
|
|
|
import com.hnac.hzims.operational.defect.vo.SolveHomeVO; |
|
|
|
import com.hnac.hzims.operational.util.TimeUtils; |
|
|
|
import com.hnac.hzims.operational.util.TimeUtils; |
|
|
|
import com.hnac.hzims.ticket.repair.entity.RepairEntity; |
|
|
|
|
|
|
|
import com.hnac.hzims.ticket.repair.fegin.IRepairClient; |
|
|
|
import com.hnac.hzims.ticket.repair.fegin.IRepairClient; |
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
@ -37,20 +33,19 @@ import org.springblade.core.log.exception.ServiceException; |
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
import org.springblade.core.tool.support.Kv; |
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
import org.springblade.core.tool.utils.*; |
|
|
|
import org.springblade.core.tool.utils.DateUtil; |
|
|
|
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
|
|
|
import org.springblade.core.tool.utils.ObjectUtil; |
|
|
|
import org.springblade.flow.core.entity.BladeFlow; |
|
|
|
import org.springblade.flow.core.entity.BladeFlow; |
|
|
|
import org.springblade.flow.core.feign.IFlowClient; |
|
|
|
import org.springblade.flow.core.feign.IFlowClient; |
|
|
|
import org.springblade.flow.core.utils.FlowUtil; |
|
|
|
import org.springblade.flow.core.utils.FlowUtil; |
|
|
|
import org.springblade.flow.core.vo.ComleteTask; |
|
|
|
|
|
|
|
import org.springblade.system.cache.DictCache; |
|
|
|
import org.springblade.system.cache.DictCache; |
|
|
|
import org.springblade.system.feign.ISysClient; |
|
|
|
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.feign.IUserClient; |
|
|
|
import org.springblade.system.user.feign.IUserClient; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.util.Assert; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.beans.BeanInfo; |
|
|
|
import java.beans.BeanInfo; |
|
|
|
import java.beans.Introspector; |
|
|
|
import java.beans.Introspector; |
|
|
@ -60,9 +55,6 @@ import java.lang.reflect.InvocationTargetException; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
import java.time.format.DateTimeFormatter; |
|
|
|
import java.time.format.DateTimeFormatter; |
|
|
|
import java.util.*; |
|
|
|
import java.util.*; |
|
|
|
import java.util.concurrent.ExecutorService; |
|
|
|
|
|
|
|
import java.util.concurrent.Executors; |
|
|
|
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -73,32 +65,18 @@ import java.util.stream.Collectors; |
|
|
|
@RequiredArgsConstructor |
|
|
|
@RequiredArgsConstructor |
|
|
|
public class DefectCheckServiceImpl extends BaseServiceImpl<OperPhenomenonMapper, OperPhenomenonEntity> implements IDefectCheckService { |
|
|
|
public class DefectCheckServiceImpl extends BaseServiceImpl<OperPhenomenonMapper, OperPhenomenonEntity> implements IDefectCheckService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IOperDefectService defectService; |
|
|
|
private final IOperAccessTaskService operAccessTaskService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IOperAccessPlanService operAccessPlanService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IOperAppearanceService operAppearanceService; |
|
|
|
private final IOperAppearanceService operAppearanceService; |
|
|
|
|
|
|
|
|
|
|
|
private final IOperDefectStatisticsService statisticsService; |
|
|
|
private final IOperDefectStatisticsService statisticsService; |
|
|
|
private final IOperDefectService defectService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IOperAccessPlanService accessPlanService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final OperPhenomenonMapper phenomenonMapper; |
|
|
|
private final ISysClient sysClient; |
|
|
|
|
|
|
|
|
|
|
|
private final IFlowClient processClient; |
|
|
|
private final IFlowClient processClient; |
|
|
|
|
|
|
|
|
|
|
|
private final IUserClient userClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final ISysClient sysClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IMessageClient messageClient; |
|
|
|
private final IMessageClient messageClient; |
|
|
|
|
|
|
|
|
|
|
|
private final IFdpTaskClient fdpTaskClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IRepairClient repairClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 保存现象、开启缺陷处理流程 |
|
|
|
* 保存现象、开启缺陷处理流程 |
|
|
@ -158,11 +136,6 @@ public class DefectCheckServiceImpl extends BaseServiceImpl<OperPhenomenonMapper |
|
|
|
* @param entity |
|
|
|
* @param entity |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private void startDefectCheckV2(OperPhenomenonEntity entity) { |
|
|
|
private void startDefectCheckV2(OperPhenomenonEntity entity) { |
|
|
|
// 获取机构下执行定论缺陷角色用户
|
|
|
|
|
|
|
|
// List<User> list = this.getAliasUser(entity.getTenantId(), entity.getCreateDept(), TreatMethodConstant.PHENOMENON_SCREEN_ALIAS);
|
|
|
|
|
|
|
|
// if (CollectionUtil.isEmpty(list)) {
|
|
|
|
|
|
|
|
// throw new ServiceException("请先添加甄别缺陷角色用户,再发起现象!");
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
//新增缺陷流程记录
|
|
|
|
//新增缺陷流程记录
|
|
|
|
OperDefectStatisticsEntity operDefectStatisticsEntity = new OperDefectStatisticsEntity(); |
|
|
|
OperDefectStatisticsEntity operDefectStatisticsEntity = new OperDefectStatisticsEntity(); |
|
|
|
BeanUtil.copy(entity, operDefectStatisticsEntity); |
|
|
|
BeanUtil.copy(entity, operDefectStatisticsEntity); |
|
|
@ -354,505 +327,29 @@ public class DefectCheckServiceImpl extends BaseServiceImpl<OperPhenomenonMapper |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 启动缺陷处理流程 |
|
|
|
|
|
|
|
* 此端口弃用20230614 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param entity |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Deprecated |
|
|
|
|
|
|
|
private void startDefectCheck(OperPhenomenonEntity entity) { |
|
|
|
|
|
|
|
// 获取机构下执行定论缺陷角色用户
|
|
|
|
|
|
|
|
List<User> list = this.getAliasUser(entity.getTenantId(), entity.getCreateDept(), TreatMethodConstant.PHENOMENON_SCREEN_ALIAS); |
|
|
|
|
|
|
|
if (CollectionUtil.isEmpty(list)) { |
|
|
|
|
|
|
|
throw new ServiceException("请先添加甄别缺陷角色用户,再发起现象!"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
List<String> userList = list.stream().map(o -> "taskUser_" + o.getId().toString()).collect(Collectors.toList()); |
|
|
|
|
|
|
|
// 现象发起人名字
|
|
|
|
|
|
|
|
String userName = Optional.ofNullable(UserCache.getUser(entity.getFinder()).getName()).orElse(""); |
|
|
|
|
|
|
|
// 现象发起来源
|
|
|
|
|
|
|
|
String sourceName = DictCache.getValue(TreatMethodConstant.SOURCE_CODE_PREFIX, entity.getSourceCode()); |
|
|
|
|
|
|
|
// 流程名称
|
|
|
|
|
|
|
|
String processName = "[" + userName + "] 发起 " + "【" + sourceName + "】缺陷处理流程" + "——>" + entity.getDefectCode(); |
|
|
|
|
|
|
|
// 设置下一步执行流程用户
|
|
|
|
|
|
|
|
Kv variables = Kv.create() |
|
|
|
|
|
|
|
.set(TreatMethodConstant.PHENOMENON_SCREEN_USER, String.join(",", userList)); |
|
|
|
|
|
|
|
// 开启新的缺陷流程
|
|
|
|
|
|
|
|
R<BladeFlow> result = processClient.startProcessInstanceContainNameByKey(TreatMethodConstant.DEFECT_CHECK_PRIMARY_KEY, FlowUtil.getBusinessKey("hzims_oper_phenomenon", "" + entity.getId()), processName, variables); |
|
|
|
|
|
|
|
// 流程开启失败
|
|
|
|
|
|
|
|
if (!result.isSuccess()) { |
|
|
|
|
|
|
|
throw new ServiceException("缺陷流程开启失败,错误描述 : " + result.getCode()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 关联流程唯一键
|
|
|
|
|
|
|
|
entity.setCheckProcessInstanceId(result.getData().getProcessInstanceId()); |
|
|
|
|
|
|
|
this.baseMapper.updateById(entity); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 获取当前机构指定角色的用户 |
|
|
|
* 消缺数量统计 |
|
|
|
* |
|
|
|
* @param deptIds |
|
|
|
* @param tenantId |
|
|
|
* @param start |
|
|
|
* @param deptId |
|
|
|
* @param end |
|
|
|
* @param alias |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public List<User> getAliasUser(String tenantId, Long deptId, String alias) { |
|
|
|
|
|
|
|
if (Func.isEmpty(tenantId)) { |
|
|
|
|
|
|
|
tenantId = AuthUtil.getTenantId(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
R<List<User>> result = userClient.relationUserListByRoleAlias(tenantId, deptId, alias); |
|
|
|
|
|
|
|
if (!result.isSuccess()) { |
|
|
|
|
|
|
|
throw new ServiceException("查询角色用户信息失败!"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return result.getData(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 修改缺陷状态 -> 问题定论 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param handleStatus |
|
|
|
|
|
|
|
* @param defectCode |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void updateDefectHandleState(String handleStatus, String defectCode) { |
|
|
|
|
|
|
|
this.defectService.update(Wrappers.<OperDefectEntity>lambdaUpdate() |
|
|
|
|
|
|
|
.set(OperDefectEntity::getHandleStatus, handleStatus) |
|
|
|
|
|
|
|
.eq(OperDefectEntity::getDefectCode, defectCode) |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 甄别缺陷 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param task |
|
|
|
|
|
|
|
* @return |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
public SolveHomeVO solve_count(List<Long> deptIds, String start, String end) { |
|
|
|
public void screeDefect(ComleteTask task) { |
|
|
|
SolveHomeVO solve = new SolveHomeVO(); |
|
|
|
// 步骤1.现象前置判断(现象状态检查)
|
|
|
|
List<OperDefectEntity> defects = defectService.list(Wrappers.<OperDefectEntity>lambdaQuery() |
|
|
|
OperPhenomenonEntity entity = this.preposePhenomenon(task.getProcessInstanceId()); |
|
|
|
.in(OperDefectEntity::getCreateDept,deptIds) |
|
|
|
|
|
|
|
.gt(OperDefectEntity::getCreateTime,start) |
|
|
|
// 步骤2.更新甄别状态、数据
|
|
|
|
.lt(OperDefectEntity::getCreateTime,end) |
|
|
|
this.screePhenomenonUpdate(task); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤3.现象添加至缺陷库
|
|
|
|
|
|
|
|
this.defectSave(entity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤4.流程执行至甄别处理方式
|
|
|
|
|
|
|
|
processClient.completeTask(task); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 现象前置判断 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param processInstanceId |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private OperPhenomenonEntity preposePhenomenon(String processInstanceId) { |
|
|
|
|
|
|
|
LambdaQueryWrapper<OperPhenomenonEntity> wrapper = new LambdaQueryWrapper<OperPhenomenonEntity>() {{ |
|
|
|
|
|
|
|
eq(OperPhenomenonEntity::getCheckProcessInstanceId, processInstanceId); |
|
|
|
|
|
|
|
}}; |
|
|
|
|
|
|
|
// 查询现象状态
|
|
|
|
|
|
|
|
OperPhenomenonEntity entity = this.getOne(wrapper); |
|
|
|
|
|
|
|
if (ObjectUtil.isEmpty(entity)) { |
|
|
|
|
|
|
|
throw new ServiceException("现象不存在"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 现象已被自动甄别
|
|
|
|
|
|
|
|
if (TreatMethodConstant.AUTO_SCREENED.equals(entity.getAutoDiscriminateStatus())) { |
|
|
|
|
|
|
|
throw new ServiceException("该现象已经自动甄别"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 现象已被手动动甄别
|
|
|
|
|
|
|
|
if (TreatMethodConstant.SCREENED.equals(entity.getDiscriminateStatus())) { |
|
|
|
|
|
|
|
throw new ServiceException("该现象已甄别"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return entity; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 缺陷保存 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param phenomenon |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void defectSave(OperPhenomenonEntity phenomenon) { |
|
|
|
|
|
|
|
OperDefectEntity defect = new OperDefectEntity(); |
|
|
|
|
|
|
|
defect.setHandleStatus(RepairConstant.DEFAULT_DEFECT_STATE); |
|
|
|
|
|
|
|
defect.setProcessInstanceId(phenomenon.getCheckProcessInstanceId()); |
|
|
|
|
|
|
|
defect.setDefectCode(phenomenon.getDefectCode()); |
|
|
|
|
|
|
|
defect.setCreateUser(phenomenon.getCreateUser()); |
|
|
|
|
|
|
|
defect.setCreateDept(phenomenon.getCreateDept()); |
|
|
|
|
|
|
|
defect.setTenantId(phenomenon.getTenantId()); |
|
|
|
|
|
|
|
this.defectService.save(defect); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 更新甄别状态、数据 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param task |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void screePhenomenonUpdate(ComleteTask task) { |
|
|
|
|
|
|
|
// 查询流程状态
|
|
|
|
|
|
|
|
String processStatus = TreatMethodConstant.RUNNING; |
|
|
|
|
|
|
|
R<String> result = processClient.queryProcessInstanceStatus(task.getProcessInstanceId()); |
|
|
|
|
|
|
|
if (result.isSuccess() && StringUtil.isNotBlank(result.getData()) && TreatMethodConstant.PROCESS_STATE_OVER.equals(result.getData())) { |
|
|
|
|
|
|
|
processStatus = TreatMethodConstant.PROCESS_STATE_OVER; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 获取参数集
|
|
|
|
|
|
|
|
Map<String, Object> variables = task.getVariables(); |
|
|
|
|
|
|
|
boolean invalid = (boolean) variables.get("invalid"); |
|
|
|
|
|
|
|
LambdaUpdateWrapper<OperPhenomenonEntity> lambdaUpdate = Wrappers.lambdaUpdate(); |
|
|
|
|
|
|
|
if (invalid) { |
|
|
|
|
|
|
|
lambdaUpdate |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getStatus, processStatus) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getIsDefect, TreatMethodConstant.IS_DEFECT) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getAutoDiscriminateStatus, TreatMethodConstant.ORDINARY_SCREENED) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminator, AuthUtil.getUserId()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminateTime, new Date()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminateStatus, variables.get("discriminateStatus").toString()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminateDesc, Optional.ofNullable(variables.get("discriminateDesc")).map(Object::toString).orElse(null)) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getSafeInfos, variables.get("safeInfos").toString()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getWorkStandards, Optional.ofNullable(variables.get("workStandards")).map(Object::toString).orElse(null)) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getHandleProgramme, variables.get("handleProgramme").toString().substring(9)) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getPlanHours, variables.get("planHours").toString()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getPlanStartTime, variables.get("planStartTime").toString()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getPlanEndTime, variables.get("planEndTime").toString()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDefectLevel, variables.get("defectLevel").toString()) |
|
|
|
|
|
|
|
.eq(OperPhenomenonEntity::getCheckProcessInstanceId, task.getProcessInstanceId()); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
lambdaUpdate |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getStatus, processStatus) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getIsDefect, TreatMethodConstant.NO_DEFECT) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminateStatus, variables.get("discriminateStatus").toString()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminator, AuthUtil.getUserId()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminateTime, new Date()) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getDiscriminateDesc, variables.get("discriminateDesc").toString()) |
|
|
|
|
|
|
|
.eq(OperPhenomenonEntity::getCheckProcessInstanceId, task.getProcessInstanceId()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.update(lambdaUpdate); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 决策处理方式 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param task |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
|
|
|
public void treatmentMethod(ComleteTask task) { |
|
|
|
|
|
|
|
// 步骤1.获取参数集
|
|
|
|
|
|
|
|
Map<String, Object> variables = task.getVariables(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤2.根据处理方式进行处理
|
|
|
|
|
|
|
|
String state = RepairConstant.REPAIR_DEFECT_STATE, processKey = RepairConstant.REPAIR_PROCESS_PRIMARY_KEY, type = variables.get("type").toString(); |
|
|
|
|
|
|
|
switch (type) { |
|
|
|
|
|
|
|
// 应急抢修处理
|
|
|
|
|
|
|
|
case TreatMethodConstant.TYPE_RUSH_TO_REPAIR: |
|
|
|
|
|
|
|
this.startRepair(task, variables); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
// 检修计划处理
|
|
|
|
|
|
|
|
case TreatMethodConstant.TYPE_PLAN: |
|
|
|
|
|
|
|
state = RepairConstant.ACCESS_PLAN_STATE; |
|
|
|
|
|
|
|
this.startMaintenancePlan(task, variables); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
// 检修任务处理
|
|
|
|
|
|
|
|
case TreatMethodConstant.TYPE_TASK: |
|
|
|
|
|
|
|
state = RepairConstant.ACCESS_TASK_STATE; |
|
|
|
|
|
|
|
this.startMaintenanceTask(task); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
throw new IllegalStateException("Unexpected type: " + type); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 步骤3.关联处理任务
|
|
|
|
|
|
|
|
this.relationHandlerTask(variables, type, task.getProcessInstanceId(), state); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤4.缺陷库保存处理任务信息
|
|
|
|
|
|
|
|
this.saveDefectInfo(variables, task.getProcessInstanceId(), processKey, state); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤5.流程执行 -> 处理缺陷
|
|
|
|
|
|
|
|
processClient.completeTask(task); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 启动应急抢修流程 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param variables |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void startRepair(ComleteTask task, Map<String, Object> variables) { |
|
|
|
|
|
|
|
String json = JSON.toJSONString(variables.get("repair")); |
|
|
|
|
|
|
|
RepairEntity entity = JSONObject.parseObject(json, RepairEntity.class); |
|
|
|
|
|
|
|
R<RepairEntity> result = repairClient.startRepair(entity); |
|
|
|
|
|
|
|
if (!result.isSuccess()) { |
|
|
|
|
|
|
|
throw new ServiceException("开启检修任务流程失败!"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
variables.put("handlerTaskId", result.getData().getId()); |
|
|
|
|
|
|
|
variables.put("handlerType", TreatMethodConstant.REPAIR); |
|
|
|
|
|
|
|
variables.put("handlerProcessInstanceId", result.getData().getProcessInstanceId()); |
|
|
|
|
|
|
|
variables.put("handlerUserId", result.getData().getCharge()); |
|
|
|
|
|
|
|
variables.put(TreatMethodConstant.DEFECT_HANDLER_USER, "taskUser_" + result.getData().getCharge()); |
|
|
|
|
|
|
|
task.setVariables(variables); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 开启检修计划 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param variables |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void startMaintenancePlan(ComleteTask task, Map<String, Object> variables) { |
|
|
|
|
|
|
|
String json = JSON.toJSONString(variables.get("accessPlan")); |
|
|
|
|
|
|
|
OperAccessPlanDTO accessPlan = JSONObject.parseObject(json, OperAccessPlanDTO.class); |
|
|
|
|
|
|
|
// 查询现象
|
|
|
|
|
|
|
|
OperPhenomenonEntity phenomenon = this.getOne(new LambdaQueryWrapper<OperPhenomenonEntity>() {{ |
|
|
|
|
|
|
|
eq(OperPhenomenonEntity::getCheckProcessInstanceId, task.getProcessInstanceId()); |
|
|
|
|
|
|
|
}}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 查询缺陷
|
|
|
|
|
|
|
|
OperDefectEntity defect = this.defectService.getOne(Wrappers.<OperDefectEntity>lambdaUpdate().eq(OperDefectEntity::getDefectCode, phenomenon.getDefectCode())); |
|
|
|
|
|
|
|
accessPlan.setDefectId(defect.getId()); |
|
|
|
|
|
|
|
accessPlan.setPhenomenonId(phenomenon.getId()); |
|
|
|
|
|
|
|
accessPlan.setActStartTime(DateUtil.now()); |
|
|
|
|
|
|
|
// 计划草稿
|
|
|
|
|
|
|
|
R result = operAccessPlanService.doSave(accessPlan); |
|
|
|
|
|
|
|
if (!result.isSuccess()) { |
|
|
|
|
|
|
|
throw new ServiceException("开启检修计划失败"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 计划流程开启
|
|
|
|
|
|
|
|
accessPlanService.handlePlan(accessPlan, null); |
|
|
|
|
|
|
|
variables.put("handlerTaskId", accessPlan.getId()); |
|
|
|
|
|
|
|
variables.put("handlerProcessInstanceId", accessPlan.getProcessInstanceId()); |
|
|
|
|
|
|
|
variables.put("handlerUserId", AuthUtil.getUserId()); |
|
|
|
|
|
|
|
variables.put("handlerType", TreatMethodConstant.MAINTENANCE_PLAN); |
|
|
|
|
|
|
|
variables.put("actStartTime", accessPlan.getActStartTime()); |
|
|
|
|
|
|
|
variables.put(TreatMethodConstant.DEFECT_HANDLER_USER, "taskUser_" + AuthUtil.getUserId()); |
|
|
|
|
|
|
|
task.setVariables(variables); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 开启检修任务 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param comleteTask |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
|
|
|
public void startMaintenanceTask(ComleteTask comleteTask) { |
|
|
|
|
|
|
|
Assert.isTrue(CollectionUtil.isNotEmpty(comleteTask.getVariables()) && ObjectUtil.isNotEmpty(comleteTask.getVariables().get("accessTask")), () -> { |
|
|
|
|
|
|
|
throw new ServiceException("检修任务信息不能为空!"); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
Map<String, Object> variables = comleteTask.getVariables(); |
|
|
|
|
|
|
|
OperAccessTaskDTO accessTask = JSONObject.parseObject(JSON.toJSONString(variables.get("accessTask")), OperAccessTaskDTO.class); |
|
|
|
|
|
|
|
Assert.isTrue(Func.isNotEmpty(accessTask.getPhenomenonId()), () -> { |
|
|
|
|
|
|
|
throw new ServiceException("检修任务信息必须传入现象Id"); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
R result = operAccessTaskService.doSave(accessTask); |
|
|
|
|
|
|
|
if (result.isSuccess()) { |
|
|
|
|
|
|
|
variables.put("handler", "taskUser_" + accessTask.getHandler()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
comleteTask.setVariables(this.excludeProperties(variables, "accessTask")); |
|
|
|
|
|
|
|
processClient.completeTask(comleteTask); |
|
|
|
|
|
|
|
variables.put("handlerTaskId", accessTask.getId()); |
|
|
|
|
|
|
|
variables.put("handlerProcessInstanceId", accessTask.getProcessInstanceId()); |
|
|
|
|
|
|
|
variables.put("handlerUserId", accessTask.getHandler()); |
|
|
|
|
|
|
|
variables.put("handlerType", TreatMethodConstant.MAINTENANCE_TASK); |
|
|
|
|
|
|
|
variables.put("actStartTime", accessTask.getCreateTime()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 保存缺陷信息 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param variables |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void saveDefectInfo(Map<String, Object> variables, String processInstanceId, String processKey, String state) { |
|
|
|
|
|
|
|
// 新启线程保存缺陷
|
|
|
|
|
|
|
|
ExecutorService exe = Executors.newSingleThreadExecutor(); |
|
|
|
|
|
|
|
exe.execute(() -> { |
|
|
|
|
|
|
|
// 查询现象
|
|
|
|
|
|
|
|
OperPhenomenonEntity entity = this.queryPhenomenon(processInstanceId); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 保存流程信息至缺陷表
|
|
|
|
|
|
|
|
this.defectService.update(Wrappers.<OperDefectEntity>lambdaUpdate() |
|
|
|
|
|
|
|
.set(OperDefectEntity::getProcDefId, processKey + "->" + variables.get("handlerTaskId")) |
|
|
|
|
|
|
|
.set(OperDefectEntity::getActStartTime, variables.get("actStartTime")) |
|
|
|
|
|
|
|
.set(OperDefectEntity::getHandleStatus, state) |
|
|
|
|
|
|
|
.set(OperDefectEntity::getHandleType, variables.get("handlerType")) |
|
|
|
|
|
|
|
.eq(OperDefectEntity::getDefectCode, entity.getDefectCode()) |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
exe.shutdown(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 关联处理任务 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param variables |
|
|
|
|
|
|
|
* @param type |
|
|
|
|
|
|
|
* @param processInstanceId |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void relationHandlerTask(Map<String, Object> variables, String type, String processInstanceId, String state) { |
|
|
|
|
|
|
|
this.update(Wrappers.<OperPhenomenonEntity>lambdaUpdate() |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getHandleTaskId, variables.get("handlerTaskId")) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getHandler, variables.get("handlerUserId")) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getHandleType, type) |
|
|
|
|
|
|
|
.set(OperPhenomenonEntity::getHandleStatus, state) |
|
|
|
|
|
|
|
.eq(OperPhenomenonEntity::getCheckProcessInstanceId, processInstanceId) |
|
|
|
|
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
if(CollectionUtil.isEmpty(defects)){ |
|
|
|
|
|
|
|
solve.setDefectCount(0); |
|
|
|
/** |
|
|
|
solve.setSolveCount(0); |
|
|
|
* 补开工作票 |
|
|
|
}else{ |
|
|
|
* |
|
|
|
solve.setDefectCount(defects.size()); |
|
|
|
* @param task |
|
|
|
solve.setSolveCount((int) defects.stream().filter(defect->ObjectUtil.isNotEmpty(defect.getHandleTaskId())).count()); |
|
|
|
*/ |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void makeUpTicket(ComleteTask task) { |
|
|
|
|
|
|
|
// 步骤1.查询现象
|
|
|
|
|
|
|
|
OperPhenomenonEntity entity = this.queryPhenomenon(task.getProcessInstanceId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤2.获取定论角色-用户
|
|
|
|
|
|
|
|
List<User> list = this.getAliasUser(entity.getTenantId(), entity.getCreateDept(), TreatMethodConstant.PHENOMENON_CONCLUSION_ALIAS); |
|
|
|
|
|
|
|
if (CollectionUtil.isEmpty(list)) { |
|
|
|
|
|
|
|
throw new ServiceException("请先添加缺陷定论角色用户,再进行补工作票"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
List<String> userList = list.stream().map(o -> "taskUser_" + o.getId().toString()).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤3.现象状态 -> 问题定论
|
|
|
|
|
|
|
|
this.updatePhenomenonState(entity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤4.缺陷状态 -> 问题定论
|
|
|
|
|
|
|
|
this.updateDefectHandleState(RepairConstant.CONCLUSION_PROBLEM, entity.getDefectCode()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤5.设置参数
|
|
|
|
|
|
|
|
Map<String, Object> variables = task.getVariables(); |
|
|
|
|
|
|
|
variables.put(TreatMethodConstant.PHENOMENON_CONCLUSION_ALIAS, String.join(",", userList)); |
|
|
|
|
|
|
|
task.setVariables(variables); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤6.执行流程->问题定论
|
|
|
|
|
|
|
|
processClient.completeTask(task); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 现象状态 -> 问题定论 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param entity |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void updatePhenomenonState(OperPhenomenonEntity entity) { |
|
|
|
|
|
|
|
entity.setHandleStatus(RepairConstant.CONCLUSION_PROBLEM); |
|
|
|
|
|
|
|
this.phenomenonMapper.updateById(entity); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 查询现象 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param processInstanceId |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private OperPhenomenonEntity queryPhenomenon(String processInstanceId) { |
|
|
|
|
|
|
|
LambdaQueryWrapper<OperPhenomenonEntity> wrapper = new LambdaQueryWrapper<OperPhenomenonEntity>() {{ |
|
|
|
|
|
|
|
eq(OperPhenomenonEntity::getCheckProcessInstanceId, processInstanceId); |
|
|
|
|
|
|
|
}}; |
|
|
|
|
|
|
|
return this.getOne(wrapper); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 定论 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param task |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void conclusion(ComleteTask task) { |
|
|
|
|
|
|
|
// 步骤1.查询现象
|
|
|
|
|
|
|
|
OperPhenomenonEntity entity = this.queryPhenomenon(task.getProcessInstanceId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤2.更新现象定论信息
|
|
|
|
|
|
|
|
this.defectConclusionInfo(task, entity.getId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤3.现象加入台账
|
|
|
|
|
|
|
|
this.saveDefect(entity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤4.故障状态更新
|
|
|
|
|
|
|
|
this.updateFaultState(entity.getFaultCode()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤5.更新缺陷状态 -> 已处理
|
|
|
|
|
|
|
|
this.updateDefectHandleState(RepairConstant.COMPLETE_DEFECT_STATE, entity.getDefectCode()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 步骤6.缺陷流程->结束
|
|
|
|
|
|
|
|
processClient.completeTask(task); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 更新现象定论信息 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param task |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void defectConclusionInfo(ComleteTask task, Long phenomenonId) { |
|
|
|
|
|
|
|
// 获取参数集
|
|
|
|
|
|
|
|
Map<String, Object> variables = task.getVariables(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 修改现象定论信息
|
|
|
|
|
|
|
|
OperPhenomenonEntity entity = new OperPhenomenonEntity(); |
|
|
|
|
|
|
|
entity.setStatus(Integer.valueOf(TreatMethodConstant.OVER)); |
|
|
|
|
|
|
|
entity.setHandleStatus(RepairConstant.COMPLETE_DEFECT_STATE); |
|
|
|
|
|
|
|
entity.setConclusionTime(new Date()); |
|
|
|
|
|
|
|
entity.setConclusionPeople(AuthUtil.getUserId()); |
|
|
|
|
|
|
|
entity.setConclusionStatus(TreatMethodConstant.CONCLUSION_COMPLETED); |
|
|
|
|
|
|
|
entity.setConclusion((String) variables.get("conclusion")); |
|
|
|
|
|
|
|
entity.setCheckHours(Integer.valueOf(variables.get("checkHours").toString())); |
|
|
|
|
|
|
|
entity.setId(phenomenonId); |
|
|
|
|
|
|
|
this.phenomenonMapper.updateById(entity); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 现象加入台账 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param entity |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void saveDefect(OperPhenomenonEntity entity) { |
|
|
|
|
|
|
|
entity = phenomenonMapper.selectById(entity.getId()); |
|
|
|
|
|
|
|
// 复制现象数据
|
|
|
|
|
|
|
|
OperDefectStatisticsEntity statistics = BeanUtil.copy(entity, OperDefectStatisticsEntity.class); |
|
|
|
|
|
|
|
// 查询缺陷
|
|
|
|
|
|
|
|
OperDefectEntity defect = this.defectService.getOne(Wrappers.<OperDefectEntity>lambdaUpdate().eq(OperDefectEntity::getDefectCode, entity.getDefectCode())); |
|
|
|
|
|
|
|
if (ObjectUtil.isEmpty(statistics)) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 实际执行时长
|
|
|
|
|
|
|
|
statistics.setCheckHours(entity.getCheckHours()); |
|
|
|
|
|
|
|
statistics.setConclusion(entity.getConclusion()); |
|
|
|
|
|
|
|
statistics.setConclusionPeople(entity.getConclusionPeople()); |
|
|
|
|
|
|
|
statistics.setConclusionTime(entity.getConclusionTime()); |
|
|
|
|
|
|
|
statistics.setActEndTime(defect.getActEndTime()); |
|
|
|
|
|
|
|
statistics.setActStartTime(defect.getActStartTime()); |
|
|
|
|
|
|
|
statistics.setDisposeDesc(defect.getDisposeDesc()); |
|
|
|
|
|
|
|
// 台账存储
|
|
|
|
|
|
|
|
this.statisticsService.save(statistics); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 故障状态更新 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param faultCode |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private void updateFaultState(String faultCode) { |
|
|
|
|
|
|
|
if (StringUtil.isBlank(faultCode)) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
fdpTaskClient.updateFinishStatusByDefectCode(faultCode); |
|
|
|
return solve; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 排除业务中所需属性 避免传入工作流中 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param variable 工作流传参map |
|
|
|
|
|
|
|
* @param properties 不计入工作流传参的属性 |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private Map<String, Object> excludeProperties(Map<String, Object> variable, String... properties) { |
|
|
|
|
|
|
|
Map<String, Object> result = new HashMap<>(); |
|
|
|
|
|
|
|
variable.forEach((k, v) -> { |
|
|
|
|
|
|
|
if (!Arrays.asList(properties).contains(k)) { |
|
|
|
|
|
|
|
result.put(k, v); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return result; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |