From 0d8d7ee2f4982f80e20d06591a250422d2d6d047 Mon Sep 17 00:00:00 2001 From: linbangquan <1437892690@qq.com> Date: Thu, 25 Jan 2024 19:08:56 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E5=B7=A5=E5=8D=95?= =?UTF-8?q?=E5=A4=84=E7=90=86-eoa=E8=8A=82=E7=82=B9=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E7=9A=84=E9=99=84=E4=BB=B6=EF=BC=8C=E6=B2=A1=E6=9C=89=E5=9B=9E?= =?UTF-8?q?=E6=98=BE=E5=9C=A8=E9=99=84=E4=BB=B6=E6=B8=85=E5=8D=95=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1076049247436800]工单处理-eoa节点上传的附件,没有回显在附件清单中 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1076049247436800 --- .../process/dao/mapper/ProcessTaskMapper.xml | 1 + .../core/IProcessStepInternalHandler.java | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/framework/process/dao/mapper/ProcessTaskMapper.xml b/src/main/java/neatlogic/framework/process/dao/mapper/ProcessTaskMapper.xml index 9243c03b..fcc559bb 100644 --- a/src/main/java/neatlogic/framework/process/dao/mapper/ProcessTaskMapper.xml +++ b/src/main/java/neatlogic/framework/process/dao/mapper/ProcessTaskMapper.xml @@ -2324,6 +2324,7 @@ limitations under the License. #{keyword} + where pt.`is_deleted` = 0 GROUP BY pt.id,pt.`${targetType}` ORDER BY count(ff.counter) DESC limit 0,#{limit} diff --git a/src/main/java/neatlogic/framework/process/stephandler/core/IProcessStepInternalHandler.java b/src/main/java/neatlogic/framework/process/stephandler/core/IProcessStepInternalHandler.java index d689765e..78c30839 100644 --- a/src/main/java/neatlogic/framework/process/stephandler/core/IProcessStepInternalHandler.java +++ b/src/main/java/neatlogic/framework/process/stephandler/core/IProcessStepInternalHandler.java @@ -1,12 +1,14 @@ package neatlogic.framework.process.stephandler.core; +import com.alibaba.fastjson.JSONObject; import neatlogic.framework.process.dto.ProcessStepVo; import neatlogic.framework.process.dto.ProcessTaskStepInOperationVo; import neatlogic.framework.process.dto.ProcessTaskStepVo; -import com.alibaba.fastjson.JSONObject; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; +import java.util.ArrayList; +import java.util.List; import java.util.Map; /** @@ -162,4 +164,13 @@ public interface IProcessStepInternalHandler { @Transactional(propagation = Propagation.NOT_SUPPORTED) int insertProcessTaskStepInOperation(ProcessTaskStepInOperationVo processTaskStepInOperationVo); + + /** + * 获取组件步骤中的附件id列表 + * @param currentProcessTaskStepVo + * @return + */ + default List getFileIdList(ProcessTaskStepVo currentProcessTaskStepVo) { + return new ArrayList<>(); + } } -- Gitee