This commit is contained in:
wangliwen 2022-12-05 11:57:35 +08:00
parent df61e3cd99
commit 1d33f23fc3
1 changed files with 3 additions and 1 deletions

View File

@ -392,7 +392,9 @@ public class TAbilityApplicationController {
.list()
.stream()
.findFirst(); // 尝试获取当前task
if (nowTask.isPresent() && nowTask.get().getId().equals(index_.getTaskId())) { // 存在正在进行的任务
if (nowTask.isPresent()
// && nowTask.get().getId().equals(index_.getTaskId())
) { // 存在正在进行的任务
logger.info("该流程最新task:" + nowTask.get().getId());
LocalDate localDate = tRemindersService.selectRemindersTime(nowTask.get().getId());
if (localDate == null) { // 最新流程未进行过催办