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(","); // 以逗号拆分字符串