rev:修改流程服务配置

This commit is contained in:
zhangzq
2024-06-19 10:43:15 +08:00
parent 83cc814d75
commit a996c9281f

View File

@@ -26,9 +26,11 @@ public class ServerTaskConverter extends BaseNodeConverter {
form.setForm_type(properties.getString("form_type")); form.setForm_type(properties.getString("form_type"));
JSONObject carry = model.getAuxParam(); JSONObject carry = model.getAuxParam();
if (carry!=null){ if (carry!=null){
form.setAuxParam(carry); if (form.getAuxParam()!=null){
}else { form.getAuxParam().putAll(carry);
form.setAuxParam(properties.getJSONObject("auxParam")); }else {
form.setAuxParam(carry);
}
} }
form.setName(properties.getString("name")); form.setName(properties.getString("name"));
form.setDocumentation(properties.getString("documentation")); form.setDocumentation(properties.getString("documentation"));