Skip to content

Commit

Permalink
Merge pull request #167 from hoha/patch_bpm
Browse files Browse the repository at this point in the history
工作流-代办任务查询-时间范围字段
  • Loading branch information
YunaiV authored Aug 31, 2024
2 parents fac4b4f + 0c7d568 commit c5909e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public PageResult<Task> getTaskTodoPage(Long userId, BpmTaskPageReqVO pageVO) {
}
if (ArrayUtil.isNotEmpty(pageVO.getCreateTime())) {
taskQuery.taskCreatedAfter(DateUtils.of(pageVO.getCreateTime()[0]));
taskQuery.taskCreatedAfter(DateUtils.of(pageVO.getCreateTime()[1]));
taskQuery.taskCreatedBefore(DateUtils.of(pageVO.getCreateTime()[1]));
}
long count = taskQuery.count();
if (count == 0) {
Expand Down

0 comments on commit c5909e4

Please sign in to comment.