From 759c328e9fc0d1e54b0f7f46a6736ac840b65b90 Mon Sep 17 00:00:00 2001 From: xiangerlin <251481237@qq.com> Date: Wed, 25 Jun 2025 17:53:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0summaryId=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hzya/frame/seeyon/service/ISeeYonInterFace.java | 2 +- .../hzya/frame/seeyon/service/impl/SeeYonInterFaceImpl.java | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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);