flowable / flowable/flowable-engine

Is there any implementation of this interface? We think it is the closing function

Open
#3,580 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
9.5k
Forks
2.9k
Avg merge
7h 8m
Merged PRs (30d)
2

Description

What I want to achieve is the function of handling the settlement, I don't know whether there is any interface to implement, that is, after the whole process runs, the execution is completed directly from left to right, but I may act as the approver in multiple nodes, and I need to show one in the settlement. At present, my code is like this, but the ones I participate in the approval will appear repeatedly, if I handle it later, it will affect the paging
` HistoricTaskInstanceQuery taskInstanceQuery = historyService.createHistoricTaskInstanceQuery()
.includeProcessVariables()
.finished()
.processFinished()
.taskAssignee(userId.toString())
.orderByHistoricTaskInstanceEndTime()
.desc();
List historicTaskInstanceList = taskInstanceQuery.listPage(pageSize * (pageNum - 1), pageSize);`

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.