From 31598ba20f47a069cefe031ae6eb2afcd5badfbf Mon Sep 17 00:00:00 2001 From: sunchenliang <2532527871@qq.com> Date: Wed, 3 Apr 2024 10:50:35 +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 4915a2f..6dfd2d2 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 @@ -377,6 +377,7 @@ public class FlowTaskController extends BaseController { @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 = "pictureId", defaultValue = "", required = false) String pictureId, @RequestParam(name = "izproject", defaultValue = "", required = false) String izproject, @RequestParam(name = "izplan", defaultValue = "", required = false) String izplan, @RequestParam(name = "izstatus", defaultValue = "", required = false) String izstatus, @@ -400,6 +401,9 @@ public class FlowTaskController extends BaseController { if(StringUtils.isNotBlank(taskId)){ searchQuery.addLike("fromtaskid",taskId); } + if(StringUtils.isNotBlank(pictureId)){ + searchQuery.addLike("pictureid",pictureId); + } if (org.springframework.util.StringUtils.hasText(izproject)) { if (izproject.contains(",")) { String[] projectIds = izproject.split(","); // 以逗号拆分字符串