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"));
JSONObject carry = model.getAuxParam();
if (carry!=null){
form.setAuxParam(carry);
}else {
form.setAuxParam(properties.getJSONObject("auxParam"));
if (form.getAuxParam()!=null){
form.getAuxParam().putAll(carry);
}else {
form.setAuxParam(carry);
}
}
form.setName(properties.getString("name"));
form.setDocumentation(properties.getString("documentation"));