rev:修改流程服务配置

This commit is contained in:
zhangzq
2024-06-19 10:19:25 +08:00
parent ecf52e5801
commit 83cc814d75
2 changed files with 8 additions and 3 deletions

View File

@@ -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);

View File

@@ -160,8 +160,8 @@
<el-form :model="vehicleform" size="mini" label-width="110px">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="物料编码" prop="material_code">
<el-input v-model="vehicleform.material_code" disabled style="width: 150px;" />
<el-form-item label="物料名称" prop="material_name">
<el-input v-model="vehicleform.material_name" disabled style="width: 150px;" />
</el-form-item>
</el-col>
<el-col :span="12">