From 40dcb5e9ff0acac9b5c44fff37c209643d5413e4 Mon Sep 17 00:00:00 2001 From: sunchenliang <2532527871@qq.com> Date: Wed, 3 Apr 2024 10:49:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=88=E5=AE=A1=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BB=BB=E5=8A=A1id=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/jyjz/flowable/controller/FlowTaskController.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/flowable/controller/FlowTaskController.java b/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/flowable/controller/FlowTaskController.java index b523fdf5..4915a2f3 100644 --- a/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/flowable/controller/FlowTaskController.java +++ b/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/flowable/controller/FlowTaskController.java @@ -376,6 +376,7 @@ public class FlowTaskController extends BaseController { public ResultVo listFinalData(PageUtils pageUtils, @RequestParam(name = "izupuser", defaultValue = "", required = false) String izupuser, @RequestParam(name = "taskName", defaultValue = "", required = false) String taskName, + @RequestParam(name = "taskId", defaultValue = "", required = false) String taskId, @RequestParam(name = "izproject", defaultValue = "", required = false) String izproject, @RequestParam(name = "izplan", defaultValue = "", required = false) String izplan, @RequestParam(name = "izstatus", defaultValue = "", required = false) String izstatus, @@ -396,6 +397,9 @@ public class FlowTaskController extends BaseController { if(StringUtils.isNotBlank(taskName)){ searchQuery.addLike("fromtaskname",taskName); } + if(StringUtils.isNotBlank(taskId)){ + searchQuery.addLike("fromtaskid",taskId); + } if (org.springframework.util.StringUtils.hasText(izproject)) { if (izproject.contains(",")) { String[] projectIds = izproject.split(","); // 以逗号拆分字符串