rev:修改流程服务配置
This commit is contained in:
@@ -106,7 +106,12 @@ public class FlowOperationServiceImpl implements IFlowOperationService {
|
||||
BpmnModel bpmnModel = bpmnJSONConverter.convertToBpmnModel(deployment.getModel_key(), deployment.getVersion(), model_json);
|
||||
FlowNode flowNode = bpmnModel.getProcesses().get(execution.getActivity_id());
|
||||
if (auxParam!=null){
|
||||
flowNode.setAuxParam(auxParam);
|
||||
JSONObject param = flowNode.getAuxParam();
|
||||
if (param!=null){
|
||||
flowNode.getAuxParam().putAll(auxParam);
|
||||
}else {
|
||||
flowNode.setAuxParam(auxParam);
|
||||
}
|
||||
}
|
||||
ExecutionEntity entity = new ExecutionEntity();
|
||||
entity.setCurrentFlowElement(flowNode);
|
||||
|
||||
Reference in New Issue
Block a user