Activiti - 子流程的父流程

时间:2016-11-17 16:49:12

标签: subprocess workflow activiti

我们在这种情况下使用Activiti工作流引擎:

Flow

<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.activiti.org/test">
<signal id="alertSignal" name="alert" />
  <process id="myProcess" name="myProcess" isExecutable="true">
    <subProcess id="subprocess1" name="Sub Process">
      <startEvent id="startevent2" name="Start"></startEvent>
      <endEvent id="endevent1" name="End"></endEvent>
      <userTask id="verifico-id-transitorio-paciente" name="verifico-id-transitorio-paciente">
        <extensionElements>
          <activiti:taskListener event="create" expression="#{INTERNA_LOGICA_TRAMITE.setearPermisoTarea(task)}"></activiti:taskListener>
          <activiti:taskListener event="create" expression="#{INTERNA_LOGICA_TRAMITE.setearPermisoDependencia(task)}"></activiti:taskListener>
        </extensionElements>
      </userTask>
      <sequenceFlow id="flow1" sourceRef="startevent2" targetRef="verifico-id-transitorio-paciente"></sequenceFlow>
      <sequenceFlow id="flow2" sourceRef="verifico-id-transitorio-paciente" targetRef="parallelgateway1"></sequenceFlow>
      <parallelGateway id="parallelgateway1" name="Parallel Gateway"></parallelGateway>
      <sequenceFlow id="flow10" sourceRef="parallelgateway1" targetRef="ingreso-formulario-ConMed"></sequenceFlow>
      <intermediateThrowEvent id="signalintermediatethrowevent1" name="SignalThrowEvent">
        <signalEventDefinition signalRef="alertSignal"></signalEventDefinition>
      </intermediateThrowEvent>
      <sequenceFlow id="flow11" sourceRef="parallelgateway1" targetRef="signalintermediatethrowevent1"></sequenceFlow>
      <userTask id="ingreso-formulario-ConMed" name="ingreso-formulario-ConMed">
        <extensionElements>
          <activiti:taskListener event="create" expression="#{INTERNA_LOGICA_TRAMITE.setearPermisoTarea(task)}"></activiti:taskListener>
          <activiti:taskListener event="create" expression="#{INTERNA_LOGICA_TRAMITE.setearPermisoDependencia(task)}"></activiti:taskListener>
        </extensionElements>
      </userTask>
      <sequenceFlow id="flow13" sourceRef="ingreso-formulario-ConMed" targetRef="endevent1"></sequenceFlow>
    </subProcess>
    <subProcess id="subprocess2" name="Sub Process">
      <startEvent id="startevent3" name="Start"></startEvent>
      <endEvent id="endevent2" name="End"></endEvent>
      <userTask id="ingreso-formulario-Con" name="ingreso-formulario-Con">
        <extensionElements>
          <activiti:taskListener event="create" expression="#{INTERNA_LOGICA_TRAMITE.setearPermisoTarea(task)}"></activiti:taskListener>
          <activiti:taskListener event="create" expression="#{INTERNA_LOGICA_TRAMITE.setearPermisoDependencia(task)}"></activiti:taskListener>
        </extensionElements>
      </userTask>
      <sequenceFlow id="flow5" sourceRef="startevent3" targetRef="ingreso-formulario-Con"></sequenceFlow>
      <sequenceFlow id="flow6" sourceRef="ingreso-formulario-Con" targetRef="endevent2"></sequenceFlow>
    </subProcess>
    <startEvent id="startevent1" name="Start"></startEvent>
    <subProcess id="subprocess3" name="Sub Process">
      <userTask id="modifico-formulario-ConMed" name="modifico-formulario-ConMed">
        <extensionElements>
        </extensionElements>
      </userTask>
      <startEvent id="startevent4" name="Start"></startEvent>
      <endEvent id="endevent3" name="End"></endEvent>
      <sequenceFlow id="flow8" sourceRef="startevent4" targetRef="modifico-formulario-ConMed"></sequenceFlow>
      <sequenceFlow id="flow9" sourceRef="modifico-formulario-ConMed" targetRef="endevent3"></sequenceFlow>
    </subProcess>
    <sequenceFlow id="flow3" sourceRef="startevent1" targetRef="subprocess1"></sequenceFlow>
    <sequenceFlow id="flow4" sourceRef="subprocess1" targetRef="subprocess2"></sequenceFlow>
    <endEvent id="endevent4" name="End"></endEvent>
    <sequenceFlow id="flow7" sourceRef="subprocess2" targetRef="endevent4"></sequenceFlow>
    <startEvent id="signalstartevent1" name="Signal start">
      <signalEventDefinition signalRef="alertSignal"></signalEventDefinition>
    </startEvent>
    <sequenceFlow id="flow14" sourceRef="signalstartevent1" targetRef="subprocess3"></sequenceFlow>
  </process>
</definitions>

并且act_ru_execution表显示2个子进程是2个独立进程,没有父进程:

enter image description here

是否有可能获得子进程的父进程以及它如何在activiti的数据库中表示?因为我们没有找到那种关系。

是否可以将主流程的所有变量传递给我们场景中的子流程?

2 个答案:

答案 0 :(得分:2)

家长流程

如何进入ServiceTask:

选择具有给定流程实例的子流程实例的流程实例。请注意,始终只有一个这样的流程实例最多可以是此查询的结果。     runtimeService.createProcessInstanceQuery()subProcessInstanceId(subProcessInstanceId).LIST();

在数据库中:

ACT_RU_EXECUTION有两个属性PARENT_ID_和SUPER_EXEC _。

  • PARENT_ID_执行的id,它在树层次结构中但在一个进程中(例如并行执行,......)
  • 进程/子进程关系中超级执行的SUPER_EXEC_ id

具有并行执行和一个子流程的ACT_RU_EXECUTION流程表示例: enter image description here

将所有变量传递给子流程

手动定义流程或由侦听器实现动态。

答案 1 :(得分:1)

在执行期间,确定子流程的密钥为<parent_process_id>-<sub-process-id>。如果您通过 - runtimeService.createProcessInstanceQuery().processDefinitionKey("your-key")

查询子流程的键,此将为您提供所需的结果
相关问题