在APS 1.8.1中,我定义了一个流程,其中每个任务都有一个候选组。
当我使用属于候选组的用户登录时,我看不到流程实例。
我发现当我尝试访问流程实例时,APS会在数据库中执行以下查询:
select distinct RES.* , DEF.KEY_ as PROC_DEF_KEY_, DEF.NAME_ as PROC_DEF_NAME_, DEF.VERSION_ as PROC_DEF_VERSION_, DEF.DEPLOYMENT_ID_ as DEPLOYMENT_ID_
from ACT_HI_PROCINST RES
left outer join ACT_RE_PROCDEF DEF on RES.PROC_DEF_ID_ = DEF.ID_
left join ACT_HI_IDENTITYLINK I_OR0 on I_OR0.PROC_INST_ID_ = RES.ID_
WHERE RES.TENANT_ID_ = 'tenant_1'
and
( (
exists(select LINK.USER_ID_ from ACT_HI_IDENTITYLINK LINK where USER_ID_ = '1003' and LINK.PROC_INST_ID_ = RES.ID_)
)
or (
I_OR0.TYPE_ = 'participant'
and
I_OR0.GROUP_ID_ IN ('1','2','2023','2013','2024','2009','2025','2026','2027','2028','2029','2007','2018','2020','2017','2015','2012','2003','2021','2019','2004','2002','2005','2030','2031','2032','2011','2006','2008','2014','2010','2016','2022','2033','2034','2035','2036','2037','1003')
) )
order by RES.START_TIME_ desc
LIMIT 50 OFFSET 0
此查询不会返回任何记录,原因有两个:
记录的类型是"候选"但查询正在寻找"参与者"
select * fro m ACT_HI_IDENTITYLINK;
-[ RECORD 1 ]-+----------
id_ | 260228
group_id_ |
type_ | starter
user_id_ | 1002
task_id_ |
proc_inst_id_ | 260226
-[ RECORD 2 ]-+----------
id_ | 260294
group_id_ | 2006
type_ | candidate
user_id_ |
task_id_ | 260293
proc_inst_id_ |
-[ RECORD 3 ]-+----------
id_ | 260300
group_id_ | 2009
type_ | candidate
user_id_ |
task_id_ | 260299
proc_inst_id_ |
-[ RECORD 4 ]-+----------
id_ | 262503
group_id_ |
type_ | starter
user_id_ | 1002
task_id_ |
proc_inst_id_ | 262501
-[ RECORD 5 ]-+----------
id_ | 262569
group_id_ | 2016
type_ | candidate
user_id_ |
task_id_ | 262568
proc_inst_id_ |
-[ RECORD 6 ]-+----------
id_ | 262575
group_id_ | 2027
type_ | candidate
user_id_ |
task_id_ | 262574
proc_inst_id_ |
为什么查询仅查找"参与者"以及为什么记录有type_ ='候选人'没有任何proc_inst_id_设置?
更新 约束"参与者"的问题有一个简单的解决方法:添加相同的候选组作为参与者就足够了。 另请参阅Feature allowing "Participant" configuration in BPM Modeler
不幸的是,这还不足以解决第二个问题。由于未设置proc_inst_id_列,因此仍未返回记录。
我尝试在"参与者"上手动更新列。记录,我已经确认这样做,页面可以访问并且运行良好。
有谁知道为什么没有设置列?
答案 0 :(得分:2)
可能的解决方案(或修复ACTIVITI-696之前的解决方法)是将作为候选添加的每个组添加到作为流程实例的参与者的任务中。
有一个REST API可以做到:
POST /enterprise/process-instances/{processInstanceId}/identitylinks
此API的功能应该由任务侦听器完成,该侦听器会自动将创建的任务的候选组添加为流程实例的参与者。
要添加新的身份链接,请在侦听器中使用以下行:
ActivitiEntityEvent aee = (ActivitiEntityEvent)activitiEvent;
TaskEntity taskEntity = (TaskEntity)aee.getEntity();
List<IdentityLinkEntity> identities = taskEntity.getIdentityLinks();
if (identities != null) {
for (IdentityLinkEntity identityLinkEntity : identities) {
String groupId = identityLinkEntity.getGroupId();
runtimeService.addGroupIdentityLink(activitiEvent.getProcessInstanceId(), groupId, "participant");
};
}