package org.springblade.mdm.flow.service.execute;
|
|
import org.apache.commons.lang3.StringUtils;
|
import org.flowable.task.api.Task;
|
import org.springblade.core.log.exception.ServiceException;
|
import org.springblade.core.secure.utils.AuthUtil;
|
import org.springblade.core.tool.api.R;
|
import org.springblade.core.tool.support.Kv;
|
import org.springblade.core.tool.utils.Func;
|
import org.springblade.core.tool.utils.StringUtil;
|
import org.springblade.mdm.flow.constants.FlowContants;
|
import org.springblade.mdm.flow.service.FlowCommonService;
|
import org.springblade.mdm.flow.service.FlowProgramFileService;
|
import org.springblade.mdm.flow.service.FlowProgramProperties;
|
import org.springblade.mdm.program.entity.NcNode;
|
import org.springblade.mdm.program.service.NcNodeAutoCreateService;
|
import org.springblade.mdm.program.service.NcNodeService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.util.Map;
|
|
/**
|
* 试切流程完成任务的实现
|
*/
|
@Service("tryFlowCompleteService")
|
public class TryFlowCompleteService extends AbstractFlowCompleteService {
|
@Autowired
|
private FlowProgramFileService flowProgramFileService;
|
@Autowired
|
private NcNodeService ncNodeService;
|
@Autowired
|
private NcNodeAutoCreateService ncNodeAutoCreateService;
|
@Autowired
|
private FlowCommonService flowCommonService;
|
|
@Transactional
|
@Override
|
public void completeTask(String taskId, String processInstanceId, String comment, Map<String, Object> variables) {
|
Task task = currentTask(taskId);
|
String operateResult = this.getApproveResult(variables);
|
|
if(task.getTaskDefinitionKey().equals("programmingTask")) {//编制节点
|
flowProgramFileService.checkProgramFiles(processInstanceId,FlowContants.Y.equals(operateResult));
|
}
|
if (StringUtil.isNoneBlank(processInstanceId, comment)) {
|
taskService.addComment(taskId, processInstanceId, comment);
|
}
|
// 非空判断
|
if (Func.isEmpty(variables)) {
|
variables = Kv.create();
|
}
|
variables.put(FlowContants.LAST_STEP_USER_NICKNAME, AuthUtil.getNickName());
|
|
if(!variables.containsKey("assignee")) {
|
throw new ServiceException("请指定流程下一步处理人");
|
}
|
addApproveRecord(taskId,comment,variables);
|
|
if(task.getTaskDefinitionKey().equals("approveTask") && FlowContants.Y.equals(operateResult)) {
|
//试切流程,或者 偏离流程 高师通过的时候创建节点
|
//createProgramNodes(processInstanceId);
|
}
|
variables.remove(FlowContants.PROCESS_EDITION);//不要升版了
|
//if(!"confirmIsUseableTask".equals(task.getTaskDefinitionKey())){
|
if("confirmIsUseableTask".equals(task.getTaskDefinitionKey())){
|
//工序版次不一致,并且审核通过(可用)是,才更新为新的versionNumber
|
//FlowProgramProperties progProperties = flowCommonService.getProgramProperties(processInstanceId);
|
variables.put(FlowContants.CURE_PROGRAM_USEABLE,operateResult);
|
|
//if(FlowContants.Y.equals(operateResult) && FlowContants.N.equals(progProperties.getIsProcessEditionSame())) {
|
//确认程序可用 且 工序版次不一致,进入校对。这里需要升级程序的版本号
|
// Long curedNodeId = progProperties.getCuredNodeId();
|
// ncNodeService.upgradeVersionNumber(curedNodeId);
|
//}
|
}
|
taskService.complete(taskId, variables);
|
}
|
|
|
}
|