Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

流程节点显示逻辑混乱问题 #204

Open
zhoufoxcn opened this issue May 12, 2020 · 0 comments
Open

流程节点显示逻辑混乱问题 #204

zhoufoxcn opened this issue May 12, 2020 · 0 comments

Comments

@zhoufoxcn
Copy link

按系统目前机制,在详细流程节点时是按照流程实例节点的生成时间先后来排序的,但是第一个、第二个节点之间生成时间完全相同(确认提交的节点到下一个节点),需要更改查询语句:
HumanTaskConnectorImpl.findHumanTasksByProcessInstanceId(String processInstanceId)方法:
原来的SQL语句:
List taskInfos = taskInfoManager
.find("from TaskInfo where processInstanceId=? order by createTime asc",
processInstanceId)
更改后的:
List taskInfos = taskInfoManager
.find("from TaskInfo where processInstanceId=? order by id asc",
processInstanceId);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant