diff --git a/fw-oa/src/main/java/com/hzya/frame/seeyon/service/ISeeYonInterFace.java b/fw-oa/src/main/java/com/hzya/frame/seeyon/service/ISeeYonInterFace.java index 5dc53395..2b29d682 100644 --- a/fw-oa/src/main/java/com/hzya/frame/seeyon/service/ISeeYonInterFace.java +++ b/fw-oa/src/main/java/com/hzya/frame/seeyon/service/ISeeYonInterFace.java @@ -84,7 +84,7 @@ public interface ISeeYonInterFace { * @return * @throws Exception */ - JsonResultEntity colEventPost(String jsonStr, String formAppId, String eventType) throws Exception; + JsonResultEntity colEventPost(String jsonStr, String formAppId, String eventType,String summaryId) throws Exception; JsonResultEntity chengeBody(JSONObject jsonObject) throws Exception; diff --git a/fw-oa/src/main/java/com/hzya/frame/seeyon/service/impl/SeeYonInterFaceImpl.java b/fw-oa/src/main/java/com/hzya/frame/seeyon/service/impl/SeeYonInterFaceImpl.java index 7475c8f4..2cd5fb51 100644 --- a/fw-oa/src/main/java/com/hzya/frame/seeyon/service/impl/SeeYonInterFaceImpl.java +++ b/fw-oa/src/main/java/com/hzya/frame/seeyon/service/impl/SeeYonInterFaceImpl.java @@ -227,7 +227,7 @@ public class SeeYonInterFaceImpl implements ISeeYonInterFace { JsonResultEntity result = null; try { //流程事件处理 - result = colEventPost(jsonStr, formApp, eventType); + result = colEventPost(jsonStr, formApp, eventType,summaryId); } catch (Exception e) { return BaseResult.getFailureMessageEntity("传递失败", e.getMessage()); } @@ -483,7 +483,7 @@ public class SeeYonInterFaceImpl implements ISeeYonInterFace { * @throws Exception */ @Override - public JsonResultEntity colEventPost(String jsonStr, String formAppId, String eventType) throws Exception { + public JsonResultEntity colEventPost(String jsonStr, String formAppId, String eventType,String summaryId) throws Exception { if (StrUtil.isNotEmpty(jsonStr) && StrUtil.isNotEmpty(formAppId) && StrUtil.isNotEmpty(eventType)) { SysApplicationApiEntity sysApplicationApiEntity = new SysApplicationApiEntity(); sysApplicationApiEntity.setHeaderIn(formAppId + "_" + eventType); @@ -527,6 +527,7 @@ public class SeeYonInterFaceImpl implements ISeeYonInterFace { reqJson.put("jsonStr",jsonStr); reqJson.put("formAppId",formAppId); reqJson.put("eventType",eventType); + reqJson.put("summaryId",summaryId); reqJson.put("headers",JSON.toJSONString(headerMap)); reqJson.put("sourceCode",sysApiDatabase.getSourceCode()); JsonResultEntity result = pluginBaseEntity.executeBusiness(reqJson);