fix 80128 项目合规评估流程-部分不涉及的数据,回显节点错误
fix 80131 项目合规评估流程-模块负责人修改节点,页面不回显数据
This commit is contained in:
+3
-2
@@ -11,9 +11,10 @@ import java.util.List;
|
||||
* @date 2023-12-06 10:37
|
||||
*/
|
||||
public interface ProcessProjectAssessTermMapper extends BaseMapper<ProcessProjectAssessTerm> {
|
||||
List<ProcessProjectAssessTerm> getByResponsibleUnitLeader(@Param("assessmentId") String assessmentId, @Param("originUserId") String originUserId);
|
||||
List<ProcessProjectAssessTerm> getByResponsibleUnitLeader(@Param("assessmentId") String assessmentId, @Param("originUserId") String originUserId, @Param("hasModuleOwner") Boolean hasModuleOwner);
|
||||
|
||||
List<ProcessProjectAssessTerm> getByModuleOwner(@Param("assessmentId") String assessmentId, @Param("originUserId") String originUserId, @Param("executionParentId") String executionParentId);
|
||||
List<ProcessProjectAssessTerm> getByModuleOwner(@Param("assessmentId") String assessmentId, @Param("originUserId") String originUserId, @Param("executionParentId") String executionParentId, @Param("hasEngineer") Boolean hasEngineer);
|
||||
List<ProcessProjectAssessTerm> getByModuleOwnerHasEngineer(@Param("assessmentId") String assessmentId, @Param("originUserId") String originUserId, @Param("executionParentId") String executionParentId);
|
||||
|
||||
List<ProcessProjectAssessTerm> getByDesignEngineer(@Param("assessmentId") String assessmentId, @Param("originUserId") String originUserId, @Param("executionParentId") String executionParentId);
|
||||
|
||||
|
||||
+25
-1
@@ -64,6 +64,9 @@
|
||||
left join process_project_assess_term ppat on ppat.id = ppatu.term_id
|
||||
where ppat.assessment_id = #{assessmentId}
|
||||
and ppatu.responsible_unit_leader = #{originUserId}
|
||||
<if test="hasModuleOwner">
|
||||
and ppatu.module_owner is not null
|
||||
</if>
|
||||
and ppatu.id is not null
|
||||
</select>
|
||||
|
||||
@@ -81,7 +84,10 @@
|
||||
where ppat.assessment_id = #{assessmentId}
|
||||
and ppatu.module_owner = #{originUserId}
|
||||
and ppatu.parent_execution_id = #{executionParentId}
|
||||
and ppatu.id is not null
|
||||
<if test="hasEngineer">
|
||||
and ppatu.design_engineer is not null
|
||||
</if>
|
||||
and ppatu.id is not null
|
||||
</select>
|
||||
|
||||
<select id="getByDesignEngineer" resultMap="BaseResultMap">
|
||||
@@ -127,4 +133,22 @@
|
||||
and ppat.id is not null
|
||||
and ppat.can_assign_flag = 1
|
||||
</select>
|
||||
|
||||
<select id="getByModuleOwnerHasEngineer" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List">
|
||||
<property name="alias" value="ppat"/>
|
||||
</include>
|
||||
,
|
||||
ppatu.id term_user_id,
|
||||
ppatu.design_engineer,
|
||||
ppatu.module_owner
|
||||
from process_project_assess_term ppat
|
||||
left join process_project_assess_term_user ppatu on ppat.id = ppatu.term_id
|
||||
where ppat.assessment_id = #{assessmentId}
|
||||
and ppatu.module_owner = #{originUserId}
|
||||
and ppatu.design_engineer is not null
|
||||
and ppatu.parent_execution_id = #{executionParentId}
|
||||
and ppatu.id is not null
|
||||
</select>
|
||||
</mapper>
|
||||
+1
-1
@@ -156,7 +156,7 @@ public class ProcessProjectAssessService extends ServiceImpl<ProcessProjectAsses
|
||||
break;
|
||||
//各部门主管级领导(汇总)审批
|
||||
case ProcessProjectAssessCommon.GBMZGJLDSP:
|
||||
processProjectAssessTermList = processProjectAssessTermService.getByResponsibleUnitLeader(assessmentId, originUserId);
|
||||
processProjectAssessTermList = processProjectAssessTermService.getByResponsibleUnitLeaderHasModuleOwner(assessmentId, originUserId);
|
||||
wrapper.eq(ProcessProjectAssessTermUser::getResponsibleUnitLeader, originUserId);
|
||||
previousNodeHandlerMap = processProjectAssessTermUserService.list(wrapper).stream()
|
||||
.collect(
|
||||
|
||||
+11
-2
@@ -48,7 +48,11 @@ public class ProcessProjectAssessTermService extends ServiceImpl<ProcessProjectA
|
||||
* @return
|
||||
*/
|
||||
public List<ProcessProjectAssessTerm> getByResponsibleUnitLeader(String assessmentId, String originUserId) {
|
||||
List<ProcessProjectAssessTerm> list = baseMapper.getByResponsibleUnitLeader(assessmentId,originUserId);
|
||||
List<ProcessProjectAssessTerm> list = baseMapper.getByResponsibleUnitLeader(assessmentId,originUserId,false);
|
||||
return list;
|
||||
}
|
||||
public List<ProcessProjectAssessTerm> getByResponsibleUnitLeaderHasModuleOwner(String assessmentId, String originUserId) {
|
||||
List<ProcessProjectAssessTerm> list = baseMapper.getByResponsibleUnitLeader(assessmentId,originUserId,true);
|
||||
return list;
|
||||
}
|
||||
|
||||
@@ -65,7 +69,12 @@ public class ProcessProjectAssessTermService extends ServiceImpl<ProcessProjectA
|
||||
}
|
||||
|
||||
public List<ProcessProjectAssessTerm> getByModuleOwner(String assessmentId, String originUserId, String executionParentId) {
|
||||
List<ProcessProjectAssessTerm> list = baseMapper.getByModuleOwner(assessmentId,originUserId,executionParentId);
|
||||
List<ProcessProjectAssessTerm> list = baseMapper.getByModuleOwner(assessmentId,originUserId,executionParentId,false);
|
||||
return list;
|
||||
}
|
||||
|
||||
public List<ProcessProjectAssessTerm> getByModuleOwnerHasEngineer(String assessmentId, String originUserId, String executionParentId) {
|
||||
List<ProcessProjectAssessTerm> list = baseMapper.getByModuleOwner(assessmentId,originUserId,executionParentId,true);
|
||||
return list;
|
||||
}
|
||||
|
||||
|
||||
-1
@@ -86,7 +86,6 @@
|
||||
|
||||
<select id="queryProcessDB" resultType="com.jero.modules.laws.tasktransfer.entity.LawsProcessDB">
|
||||
SELECT pa.id,
|
||||
task_id,
|
||||
task_id,
|
||||
prc_num,
|
||||
prc_type,
|
||||
|
||||
@@ -1,340 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<bpmn:definitions xmlns:bpmn="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:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="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">
|
||||
<bpmn:process id="project-assessment" name="项目合规评估流程" isExecutable="true">
|
||||
<bpmn:startEvent id="StartEvent_1">
|
||||
<bpmn:outgoing>Flow_12b9yhd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_12b9yhd" sourceRef="StartEvent_1" targetRef="fggcsfq" />
|
||||
<bpmn:userTask id="fggcsfq" name="法规工程师发起" activiti:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_12b9yhd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0tgn37q</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_0tgn37q" sourceRef="fggcsfq" targetRef="Activity_1wp96uu" />
|
||||
<bpmn:subProcess id="Activity_1wp96uu" name="各部门子流程">
|
||||
<bpmn:incoming>Flow_0tgn37q</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0w3nr57</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="managerLeaderList" activiti:elementVariable="managerLeader">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1azjojy">
|
||||
<bpmn:outgoing>Flow_1g6zc95</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1g6zc95" sourceRef="Event_1azjojy" targetRef="gbmzgjldxf" />
|
||||
<bpmn:userTask id="gbmzgjldxf" name="各部门主管级领导下发" activiti:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1g6zc95</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_01dzmhe</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_08c4m85" name="模块负责人下发子流程">
|
||||
<bpmn:extensionElements />
|
||||
<bpmn:incoming>Flow_0ql7uu4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1o0npc9</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="moduleOwnerList" activiti:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1ian0ub">
|
||||
<bpmn:outgoing>Flow_0xb4gtd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_0xb4gtd" sourceRef="Event_1ian0ub" targetRef="mkfzrff" />
|
||||
<bpmn:userTask id="sjgcspg" name="设计工程师评估" activiti:assignee="${designEngineer}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_1d18hwv</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_07hxwn8</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_09f92lr</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="designEngineerList" activiti:elementVariable="designEngineer">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_1d18hwv" name="涉及人员" sourceRef="Gateway_1cgwh2s" targetRef="sjgcspg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:userTask id="mkfzrsp" name="模块负责人审批" activiti:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_09f92lr</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1w5wrt4</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_09f92lr" sourceRef="sjgcspg" targetRef="mkfzrsp" />
|
||||
<bpmn:exclusiveGateway id="Gateway_1vkxod2">
|
||||
<bpmn:incoming>Flow_1w5wrt4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1m6dxws</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_07hxwn8</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_1w5wrt4" sourceRef="mkfzrsp" targetRef="Gateway_1vkxod2" />
|
||||
<bpmn:endEvent id="Event_151o5cu">
|
||||
<bpmn:incoming>Flow_1m6dxws</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1m6dxws" name="通过" sourceRef="Gateway_1vkxod2" targetRef="Event_151o5cu">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_07hxwn8" name="驳回" sourceRef="Gateway_1vkxod2" targetRef="sjgcspg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:exclusiveGateway id="Gateway_1cgwh2s">
|
||||
<bpmn:incoming>Flow_0cx9yoz</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1g6f2ww</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_1d18hwv</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_0cx9yoz" sourceRef="mkfzrff" targetRef="Gateway_1cgwh2s" />
|
||||
<bpmn:endEvent id="Event_1r9lnkl">
|
||||
<bpmn:incoming>Flow_1g6f2ww</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1g6f2ww" name="全部不涉及" sourceRef="Gateway_1cgwh2s" targetRef="Event_1r9lnkl">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:userTask id="mkfzrff" name="模块负责人分发" activiti:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_0xb4gtd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0cx9yoz</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="gbmzgjldsp" name="各部门主管级领导(汇总)审批" activiti:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1o0npc9</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_0mpm9av</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_10o9sl2</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_1o0npc9" sourceRef="Activity_08c4m85" targetRef="gbmzgjldsp" />
|
||||
<bpmn:exclusiveGateway id="Gateway_1qktq5f">
|
||||
<bpmn:incoming>Flow_10o9sl2</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_11i64js</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_132fp4x</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_10o9sl2" sourceRef="gbmzgjldsp" targetRef="Gateway_1qktq5f" />
|
||||
<bpmn:sequenceFlow id="Flow_11i64js" name="驳回" sourceRef="Gateway_1qktq5f" targetRef="mkfzrxg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:endEvent id="Event_17bnh8x">
|
||||
<bpmn:incoming>Flow_132fp4x</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_132fp4x" name="通过" sourceRef="Gateway_1qktq5f" targetRef="Event_17bnh8x">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_0mpm9av" sourceRef="mkfzrxg" targetRef="gbmzgjldsp" />
|
||||
<bpmn:userTask id="mkfzrxg" name="模块负责人修改" activiti:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_11i64js</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0mpm9av</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="moduleOwnerList" activiti:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
</bpmn:userTask>
|
||||
<bpmn:exclusiveGateway id="Gateway_0r2qm3p">
|
||||
<bpmn:incoming>Flow_01dzmhe</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0ql7uu4</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_15xpnyd</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_01dzmhe" sourceRef="gbmzgjldxf" targetRef="Gateway_0r2qm3p" />
|
||||
<bpmn:sequenceFlow id="Flow_0ql7uu4" name="涉及人员" sourceRef="Gateway_0r2qm3p" targetRef="Activity_08c4m85">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerListSize > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:endEvent id="Event_1e8jif7">
|
||||
<bpmn:incoming>Flow_15xpnyd</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_15xpnyd" name="全部不涉及" sourceRef="Gateway_0r2qm3p" targetRef="Event_1e8jif7">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerListSize == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="fggcsgd" name="法规工程师归档" activiti:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_0w3nr57</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_14lgswg</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_0w3nr57" sourceRef="Activity_1wp96uu" targetRef="fggcsgd" />
|
||||
<bpmn:endEvent id="Event_0nxyypv">
|
||||
<bpmn:incoming>Flow_14lgswg</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_14lgswg" sourceRef="fggcsgd" targetRef="Event_0nxyypv" />
|
||||
</bpmn:process>
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="project-assessment">
|
||||
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
|
||||
<dc:Bounds x="159" y="172" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_03wwtxl_di" bpmnElement="fggcsfq">
|
||||
<dc:Bounds x="250" y="150" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1uw77uz" bpmnElement="fggcsgd">
|
||||
<dc:Bounds x="750" y="690" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_0nxyypv_di" bpmnElement="Event_0nxyypv">
|
||||
<dc:Bounds x="882" y="712" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0z0ilv7_di" bpmnElement="Activity_1wp96uu" isExpanded="true">
|
||||
<dc:Bounds x="430" y="40" width="1110" height="590" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1azjojy_di" bpmnElement="Event_1azjojy">
|
||||
<dc:Bounds x="470.3333333333333" y="147" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0x09ket_di" bpmnElement="gbmzgjldxf">
|
||||
<dc:Bounds x="550" y="125" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_0r2qm3p_di" bpmnElement="Gateway_0r2qm3p" isMarkerVisible="true">
|
||||
<dc:Bounds x="575" y="235" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1e8jif7_di" bpmnElement="Event_1e8jif7">
|
||||
<dc:Bounds x="582" y="352" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_155ubeu" bpmnElement="gbmzgjldsp">
|
||||
<dc:Bounds x="740" y="390" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_1qktq5f_di" bpmnElement="Gateway_1qktq5f" isMarkerVisible="true">
|
||||
<dc:Bounds x="765" y="485" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_17bnh8x_di" bpmnElement="Event_17bnh8x">
|
||||
<dc:Bounds x="772" y="562" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0p7dxnt_di" bpmnElement="mkfzrxg">
|
||||
<dc:Bounds x="950" y="470" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0njknr1_di" bpmnElement="Activity_08c4m85" isExpanded="true">
|
||||
<dc:Bounds x="710" y="70" width="790" height="300" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1ian0ub_di" bpmnElement="Event_1ian0ub">
|
||||
<dc:Bounds x="750.3333333333334" y="152" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_02udv1z_di" bpmnElement="mkfzrff">
|
||||
<dc:Bounds x="830" y="130" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_1vb9u4y_di" bpmnElement="sjgcspg">
|
||||
<dc:Bounds x="990" y="130" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_19iwpt2" bpmnElement="mkfzrsp">
|
||||
<dc:Bounds x="1160" y="130" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_1vkxod2_di" bpmnElement="Gateway_1vkxod2" isMarkerVisible="true">
|
||||
<dc:Bounds x="1315" y="145" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_151o5cu_di" bpmnElement="Event_151o5cu">
|
||||
<dc:Bounds x="1432" y="152" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1r9lnkl_di" bpmnElement="Event_1r9lnkl">
|
||||
<dc:Bounds x="862" y="322" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_1cgwh2s_di" bpmnElement="Gateway_1cgwh2s" isMarkerVisible="true">
|
||||
<dc:Bounds x="855" y="235" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="Flow_0xb4gtd_di" bpmnElement="Flow_0xb4gtd">
|
||||
<di:waypoint x="786" y="170" />
|
||||
<di:waypoint x="830" y="170" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1d18hwv_di" bpmnElement="Flow_1d18hwv">
|
||||
<di:waypoint x="905" y="260" />
|
||||
<di:waypoint x="1040" y="260" />
|
||||
<di:waypoint x="1040" y="210" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="951" y="242" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_09f92lr_di" bpmnElement="Flow_09f92lr">
|
||||
<di:waypoint x="1090" y="170" />
|
||||
<di:waypoint x="1160" y="170" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1w5wrt4_di" bpmnElement="Flow_1w5wrt4">
|
||||
<di:waypoint x="1260" y="170" />
|
||||
<di:waypoint x="1315" y="170" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1m6dxws_di" bpmnElement="Flow_1m6dxws">
|
||||
<di:waypoint x="1365" y="170" />
|
||||
<di:waypoint x="1432" y="170" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1388" y="152" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_07hxwn8_di" bpmnElement="Flow_07hxwn8">
|
||||
<di:waypoint x="1340" y="145" />
|
||||
<di:waypoint x="1340" y="90" />
|
||||
<di:waypoint x="1040" y="90" />
|
||||
<di:waypoint x="1040" y="130" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1180" y="72" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0cx9yoz_di" bpmnElement="Flow_0cx9yoz">
|
||||
<di:waypoint x="880" y="210" />
|
||||
<di:waypoint x="880" y="235" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1g6f2ww_di" bpmnElement="Flow_1g6f2ww">
|
||||
<di:waypoint x="880" y="285" />
|
||||
<di:waypoint x="880" y="322" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="868" y="301" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1g6zc95_di" bpmnElement="Flow_1g6zc95">
|
||||
<di:waypoint x="506" y="165" />
|
||||
<di:waypoint x="550" y="165" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1o0npc9_di" bpmnElement="Flow_1o0npc9">
|
||||
<di:waypoint x="790" y="370" />
|
||||
<di:waypoint x="790" y="390" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_01dzmhe_di" bpmnElement="Flow_01dzmhe">
|
||||
<di:waypoint x="600" y="205" />
|
||||
<di:waypoint x="600" y="235" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0ql7uu4_di" bpmnElement="Flow_0ql7uu4">
|
||||
<di:waypoint x="625" y="260" />
|
||||
<di:waypoint x="710" y="260" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="646" y="242" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_15xpnyd_di" bpmnElement="Flow_15xpnyd">
|
||||
<di:waypoint x="600" y="285" />
|
||||
<di:waypoint x="600" y="352" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="588" y="316" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0mpm9av_di" bpmnElement="Flow_0mpm9av">
|
||||
<di:waypoint x="1000" y="470" />
|
||||
<di:waypoint x="1000" y="430" />
|
||||
<di:waypoint x="840" y="430" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_10o9sl2_di" bpmnElement="Flow_10o9sl2">
|
||||
<di:waypoint x="790" y="470" />
|
||||
<di:waypoint x="790" y="485" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_11i64js_di" bpmnElement="Flow_11i64js">
|
||||
<di:waypoint x="815" y="510" />
|
||||
<di:waypoint x="950" y="510" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="869" y="498" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_132fp4x_di" bpmnElement="Flow_132fp4x">
|
||||
<di:waypoint x="790" y="535" />
|
||||
<di:waypoint x="790" y="562" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="794" y="538" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_12b9yhd_di" bpmnElement="Flow_12b9yhd">
|
||||
<di:waypoint x="195" y="190" />
|
||||
<di:waypoint x="250" y="190" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0tgn37q_di" bpmnElement="Flow_0tgn37q">
|
||||
<di:waypoint x="350" y="190" />
|
||||
<di:waypoint x="430" y="190" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0w3nr57_di" bpmnElement="Flow_0w3nr57">
|
||||
<di:waypoint x="800" y="630" />
|
||||
<di:waypoint x="800" y="690" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_14lgswg_di" bpmnElement="Flow_14lgswg">
|
||||
<di:waypoint x="850" y="730" />
|
||||
<di:waypoint x="882" y="730" />
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</bpmn:definitions>
|
||||
@@ -1,340 +1,368 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_0zmm786" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.13.0" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.19.0">
|
||||
<bpmn:process id="project-assessment" name="项目合规评估流程" isExecutable="true">
|
||||
<bpmn:startEvent id="StartEvent_1">
|
||||
<bpmn:outgoing>Flow_12b9yhd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_12b9yhd" sourceRef="StartEvent_1" targetRef="fggcsfq" />
|
||||
<bpmn:userTask id="fggcsfq" name="法规工程师发起" camunda:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_12b9yhd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0tgn37q</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_0tgn37q" sourceRef="fggcsfq" targetRef="Activity_1wp96uu" />
|
||||
<bpmn:subProcess id="Activity_1wp96uu" name="各部门子流程">
|
||||
<bpmn:incoming>Flow_0tgn37q</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0w3nr57</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="managerLeaderList" camunda:elementVariable="managerLeader">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1azjojy">
|
||||
<bpmn:outgoing>Flow_1g6zc95</bpmn:outgoing>
|
||||
<bpmn:definitions xmlns:bpmn="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:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="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">
|
||||
<bpmn:process id="project-assessment" name="项目合规评估流程" isExecutable="true">
|
||||
<bpmn:startEvent id="StartEvent_1">
|
||||
<bpmn:outgoing>Flow_12b9yhd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1g6zc95" sourceRef="Event_1azjojy" targetRef="gbmzgjldxf" />
|
||||
<bpmn:userTask id="gbmzgjldxf" name="各部门主管级领导下发" camunda:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1g6zc95</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_01dzmhe</bpmn:outgoing>
|
||||
<bpmn:userTask id="fggcsfq" name="法规工程师发起" activiti:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_12b9yhd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0tgn37q</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_08c4m85" name="模块负责人下发子流程">
|
||||
<bpmn:extensionElements />
|
||||
<bpmn:incoming>Flow_0ql7uu4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1o0npc9</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="moduleOwnerList" camunda:elementVariable="moduleOwner">
|
||||
<bpmn:subProcess id="Activity_1wp96uu" name="各部门子流程">
|
||||
<bpmn:incoming>Flow_0tgn37q</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0w3nr57</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="managerLeaderList" activiti:elementVariable="managerLeader">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1ian0ub">
|
||||
<bpmn:outgoing>Flow_0xb4gtd</bpmn:outgoing>
|
||||
<bpmn:startEvent id="Event_1azjojy">
|
||||
<bpmn:outgoing>Flow_1g6zc95</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:sequenceFlow id="Flow_0xb4gtd" sourceRef="Event_1ian0ub" targetRef="mkfzrff" />
|
||||
<bpmn:userTask id="sjgcspg" name="设计工程师评估" camunda:assignee="${designEngineer}">
|
||||
<bpmn:userTask id="gbmzgjldxf" name="各部门主管级领导下发" activiti:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1g6zc95</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_01dzmhe</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_08c4m85" name="模块负责人下发子流程">
|
||||
<bpmn:incoming>Flow_0ql7uu4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1o0npc9</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="moduleOwnerList" activiti:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1ian0ub">
|
||||
<bpmn:outgoing>Flow_0xb4gtd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:endEvent id="Event_151o5cu">
|
||||
<bpmn:incoming>Flow_1qgrfu1</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:exclusiveGateway id="Gateway_1cgwh2s">
|
||||
<bpmn:incoming>Flow_0cx9yoz</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1d18hwv</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_1g6f2ww</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_1r9lnkl">
|
||||
<bpmn:incoming>Flow_1g6f2ww</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:userTask id="mkfzrff" name="模块负责人分发" activiti:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_0xb4gtd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0cx9yoz</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_0g84odh" name="设计工程师评估子流程">
|
||||
<bpmn:incoming>Flow_1d18hwv</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1qgrfu1</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="designEngineerList" activiti:elementVariable="designEngineer">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1fv4qnw">
|
||||
<bpmn:outgoing>Flow_1fanjtp</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:userTask id="sjgcspg" name="设计工程师评估" activiti:assignee="${designEngineer}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_1fanjtp</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_06jkril</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_125j8kx</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:userTask id="mkfzrsp" name="模块负责人审批" activiti:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_125j8kx</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0gpy5vh</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:exclusiveGateway id="Gateway_09kbvyu">
|
||||
<bpmn:incoming>Flow_0gpy5vh</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_06jkril</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_1modke8</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_0lus7gq">
|
||||
<bpmn:incoming>Flow_1modke8</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1fanjtp" sourceRef="Event_1fv4qnw" targetRef="sjgcspg" />
|
||||
<bpmn:sequenceFlow id="Flow_06jkril" name="驳回" sourceRef="Gateway_09kbvyu" targetRef="sjgcspg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_125j8kx" sourceRef="sjgcspg" targetRef="mkfzrsp" />
|
||||
<bpmn:sequenceFlow id="Flow_0gpy5vh" sourceRef="mkfzrsp" targetRef="Gateway_09kbvyu" />
|
||||
<bpmn:sequenceFlow id="Flow_1modke8" name="通过" sourceRef="Gateway_09kbvyu" targetRef="Event_0lus7gq">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:sequenceFlow id="Flow_0xb4gtd" sourceRef="Event_1ian0ub" targetRef="mkfzrff" />
|
||||
<bpmn:sequenceFlow id="Flow_1qgrfu1" sourceRef="Activity_0g84odh" targetRef="Event_151o5cu" />
|
||||
<bpmn:sequenceFlow id="Flow_0cx9yoz" sourceRef="mkfzrff" targetRef="Gateway_1cgwh2s" />
|
||||
<bpmn:sequenceFlow id="Flow_1d18hwv" name="涉及人员" sourceRef="Gateway_1cgwh2s" targetRef="Activity_0g84odh">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_1g6f2ww" name="全部不涉及" sourceRef="Gateway_1cgwh2s" targetRef="Event_1r9lnkl">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="gbmzgjldsp" name="各部门主管级领导(汇总)审批" activiti:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1o0npc9</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_1ga3rk9</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_10o9sl2</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:exclusiveGateway id="Gateway_1qktq5f">
|
||||
<bpmn:incoming>Flow_10o9sl2</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_11i64js</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_132fp4x</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_17bnh8x">
|
||||
<bpmn:incoming>Flow_132fp4x</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:exclusiveGateway id="Gateway_0r2qm3p">
|
||||
<bpmn:incoming>Flow_01dzmhe</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0ql7uu4</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_15xpnyd</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_1e8jif7">
|
||||
<bpmn:incoming>Flow_15xpnyd</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:userTask id="mkfzrxg" name="模块负责人修改" activiti:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
<activiti:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_1d18hwv</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_07hxwn8</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_09f92lr</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="designEngineerList" camunda:elementVariable="designEngineer">
|
||||
<bpmn:incoming>Flow_11i64js</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1ga3rk9</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics activiti:collection="moduleOwnerList" activiti:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_1d18hwv" name="涉及人员" sourceRef="Gateway_1cgwh2s" targetRef="sjgcspg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize > 0}</bpmn:conditionExpression>
|
||||
<bpmn:sequenceFlow id="Flow_1g6zc95" sourceRef="Event_1azjojy" targetRef="gbmzgjldxf" />
|
||||
<bpmn:sequenceFlow id="Flow_01dzmhe" sourceRef="gbmzgjldxf" targetRef="Gateway_0r2qm3p" />
|
||||
<bpmn:sequenceFlow id="Flow_0ql7uu4" name="涉及人员" sourceRef="Gateway_0r2qm3p" targetRef="Activity_08c4m85">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerListSize > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:userTask id="mkfzrsp" name="模块负责人审批" camunda:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_09f92lr</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1w5wrt4</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_09f92lr" sourceRef="sjgcspg" targetRef="mkfzrsp" />
|
||||
<bpmn:exclusiveGateway id="Gateway_1vkxod2">
|
||||
<bpmn:incoming>Flow_1w5wrt4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1m6dxws</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_07hxwn8</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_1w5wrt4" sourceRef="mkfzrsp" targetRef="Gateway_1vkxod2" />
|
||||
<bpmn:endEvent id="Event_151o5cu">
|
||||
<bpmn:incoming>Flow_1m6dxws</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1m6dxws" name="通过" sourceRef="Gateway_1vkxod2" targetRef="Event_151o5cu">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_07hxwn8" name="驳回" sourceRef="Gateway_1vkxod2" targetRef="sjgcspg">
|
||||
<bpmn:sequenceFlow id="Flow_1o0npc9" sourceRef="Activity_08c4m85" targetRef="gbmzgjldsp" />
|
||||
<bpmn:sequenceFlow id="Flow_1ga3rk9" sourceRef="mkfzrxg" targetRef="gbmzgjldsp" />
|
||||
<bpmn:sequenceFlow id="Flow_10o9sl2" sourceRef="gbmzgjldsp" targetRef="Gateway_1qktq5f" />
|
||||
<bpmn:sequenceFlow id="Flow_11i64js" name="驳回" sourceRef="Gateway_1qktq5f" targetRef="mkfzrxg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:exclusiveGateway id="Gateway_1cgwh2s">
|
||||
<bpmn:incoming>Flow_0cx9yoz</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1g6f2ww</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_1d18hwv</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_0cx9yoz" sourceRef="mkfzrff" targetRef="Gateway_1cgwh2s" />
|
||||
<bpmn:endEvent id="Event_1r9lnkl">
|
||||
<bpmn:incoming>Flow_1g6f2ww</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1g6f2ww" name="全部不涉及" sourceRef="Gateway_1cgwh2s" targetRef="Event_1r9lnkl">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize == 0}</bpmn:conditionExpression>
|
||||
<bpmn:sequenceFlow id="Flow_132fp4x" name="通过" sourceRef="Gateway_1qktq5f" targetRef="Event_17bnh8x">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_15xpnyd" name="全部不涉及" sourceRef="Gateway_0r2qm3p" targetRef="Event_1e8jif7">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerListSize == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:userTask id="mkfzrff" name="模块负责人分发" camunda:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_0xb4gtd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0cx9yoz</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="gbmzgjldsp" name="各部门主管级领导(汇总)审批" camunda:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1o0npc9</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_0mpm9av</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_10o9sl2</bpmn:outgoing>
|
||||
<bpmn:userTask id="fggcsgd" name="法规工程师归档" activiti:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_0w3nr57</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_14lgswg</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_1o0npc9" sourceRef="Activity_08c4m85" targetRef="gbmzgjldsp" />
|
||||
<bpmn:exclusiveGateway id="Gateway_1qktq5f">
|
||||
<bpmn:incoming>Flow_10o9sl2</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_11i64js</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_132fp4x</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_10o9sl2" sourceRef="gbmzgjldsp" targetRef="Gateway_1qktq5f" />
|
||||
<bpmn:sequenceFlow id="Flow_11i64js" name="驳回" sourceRef="Gateway_1qktq5f" targetRef="mkfzrxg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:endEvent id="Event_17bnh8x">
|
||||
<bpmn:incoming>Flow_132fp4x</bpmn:incoming>
|
||||
<bpmn:endEvent id="Event_0nxyypv">
|
||||
<bpmn:incoming>Flow_14lgswg</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_132fp4x" name="通过" sourceRef="Gateway_1qktq5f" targetRef="Event_17bnh8x">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_0mpm9av" sourceRef="mkfzrxg" targetRef="gbmzgjldsp" />
|
||||
<bpmn:userTask id="mkfzrxg" name="模块负责人修改" camunda:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_11i64js</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0mpm9av</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="moduleOwnerList" camunda:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
</bpmn:userTask>
|
||||
<bpmn:exclusiveGateway id="Gateway_0r2qm3p">
|
||||
<bpmn:incoming>Flow_01dzmhe</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0ql7uu4</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_15xpnyd</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:sequenceFlow id="Flow_01dzmhe" sourceRef="gbmzgjldxf" targetRef="Gateway_0r2qm3p" />
|
||||
<bpmn:sequenceFlow id="Flow_0ql7uu4" name="涉及人员" sourceRef="Gateway_0r2qm3p" targetRef="Activity_08c4m85">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerList.size > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:endEvent id="Event_1e8jif7">
|
||||
<bpmn:incoming>Flow_15xpnyd</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_15xpnyd" name="全部不涉及" sourceRef="Gateway_0r2qm3p" targetRef="Event_1e8jif7">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerList.size == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="fggcsgd" name="法规工程师归档" camunda:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_0w3nr57</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_14lgswg</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_0w3nr57" sourceRef="Activity_1wp96uu" targetRef="fggcsgd" />
|
||||
<bpmn:endEvent id="Event_0nxyypv">
|
||||
<bpmn:incoming>Flow_14lgswg</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_14lgswg" sourceRef="fggcsgd" targetRef="Event_0nxyypv" />
|
||||
</bpmn:process>
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="project-assessment">
|
||||
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
|
||||
<dc:Bounds x="159" y="172" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_03wwtxl_di" bpmnElement="fggcsfq">
|
||||
<dc:Bounds x="250" y="150" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0z0ilv7_di" bpmnElement="Activity_1wp96uu" isExpanded="true">
|
||||
<dc:Bounds x="430" y="40" width="1110" height="590" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1azjojy_di" bpmnElement="Event_1azjojy">
|
||||
<dc:Bounds x="470.3333333333333" y="147" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0x09ket_di" bpmnElement="gbmzgjldxf">
|
||||
<dc:Bounds x="550" y="125" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0njknr1_di" bpmnElement="Activity_08c4m85" isExpanded="true">
|
||||
<dc:Bounds x="710" y="70" width="790" height="300" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1ian0ub_di" bpmnElement="Event_1ian0ub">
|
||||
<dc:Bounds x="750.3333333333334" y="152" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_1vb9u4y_di" bpmnElement="sjgcspg">
|
||||
<dc:Bounds x="990" y="130" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_19iwpt2" bpmnElement="mkfzrsp">
|
||||
<dc:Bounds x="1160" y="130" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_1vkxod2_di" bpmnElement="Gateway_1vkxod2" isMarkerVisible="true">
|
||||
<dc:Bounds x="1315" y="145" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_151o5cu_di" bpmnElement="Event_151o5cu">
|
||||
<dc:Bounds x="1432" y="152" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_1cgwh2s_di" bpmnElement="Gateway_1cgwh2s" isMarkerVisible="true">
|
||||
<dc:Bounds x="855" y="235" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1r9lnkl_di" bpmnElement="Event_1r9lnkl">
|
||||
<dc:Bounds x="862" y="322" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_02udv1z_di" bpmnElement="mkfzrff">
|
||||
<dc:Bounds x="830" y="130" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="Flow_0xb4gtd_di" bpmnElement="Flow_0xb4gtd">
|
||||
<di:waypoint x="786" y="170" />
|
||||
<di:waypoint x="830" y="170" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1d18hwv_di" bpmnElement="Flow_1d18hwv">
|
||||
<di:waypoint x="905" y="260" />
|
||||
<di:waypoint x="1040" y="260" />
|
||||
<di:waypoint x="1040" y="210" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="951" y="242" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_09f92lr_di" bpmnElement="Flow_09f92lr">
|
||||
<di:waypoint x="1090" y="170" />
|
||||
<di:waypoint x="1160" y="170" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1w5wrt4_di" bpmnElement="Flow_1w5wrt4">
|
||||
<di:waypoint x="1260" y="170" />
|
||||
<di:waypoint x="1315" y="170" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1m6dxws_di" bpmnElement="Flow_1m6dxws">
|
||||
<di:waypoint x="1365" y="170" />
|
||||
<di:waypoint x="1432" y="170" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1388" y="152" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_07hxwn8_di" bpmnElement="Flow_07hxwn8">
|
||||
<di:waypoint x="1340" y="145" />
|
||||
<di:waypoint x="1340" y="90" />
|
||||
<di:waypoint x="1040" y="90" />
|
||||
<di:waypoint x="1040" y="130" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1180" y="72" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0cx9yoz_di" bpmnElement="Flow_0cx9yoz">
|
||||
<di:waypoint x="880" y="210" />
|
||||
<di:waypoint x="880" y="235" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1g6f2ww_di" bpmnElement="Flow_1g6f2ww">
|
||||
<di:waypoint x="880" y="285" />
|
||||
<di:waypoint x="880" y="322" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="868" y="301" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNShape id="BPMNShape_155ubeu" bpmnElement="gbmzgjldsp">
|
||||
<dc:Bounds x="740" y="390" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_1qktq5f_di" bpmnElement="Gateway_1qktq5f" isMarkerVisible="true">
|
||||
<dc:Bounds x="765" y="485" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_17bnh8x_di" bpmnElement="Event_17bnh8x">
|
||||
<dc:Bounds x="772" y="562" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_0p7dxnt_di" bpmnElement="mkfzrxg">
|
||||
<dc:Bounds x="950" y="470" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Gateway_0r2qm3p_di" bpmnElement="Gateway_0r2qm3p" isMarkerVisible="true">
|
||||
<dc:Bounds x="575" y="235" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_1e8jif7_di" bpmnElement="Event_1e8jif7">
|
||||
<dc:Bounds x="582" y="352" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="Flow_1g6zc95_di" bpmnElement="Flow_1g6zc95">
|
||||
<di:waypoint x="506" y="165" />
|
||||
<di:waypoint x="550" y="165" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1o0npc9_di" bpmnElement="Flow_1o0npc9">
|
||||
<di:waypoint x="790" y="370" />
|
||||
<di:waypoint x="790" y="390" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_10o9sl2_di" bpmnElement="Flow_10o9sl2">
|
||||
<di:waypoint x="790" y="470" />
|
||||
<di:waypoint x="790" y="485" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_11i64js_di" bpmnElement="Flow_11i64js">
|
||||
<di:waypoint x="815" y="510" />
|
||||
<di:waypoint x="950" y="510" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="869" y="498" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_132fp4x_di" bpmnElement="Flow_132fp4x">
|
||||
<di:waypoint x="790" y="535" />
|
||||
<di:waypoint x="790" y="562" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="794" y="538" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0mpm9av_di" bpmnElement="Flow_0mpm9av">
|
||||
<di:waypoint x="1000" y="470" />
|
||||
<di:waypoint x="1000" y="430" />
|
||||
<di:waypoint x="840" y="430" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_01dzmhe_di" bpmnElement="Flow_01dzmhe">
|
||||
<di:waypoint x="600" y="205" />
|
||||
<di:waypoint x="600" y="235" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0ql7uu4_di" bpmnElement="Flow_0ql7uu4">
|
||||
<di:waypoint x="625" y="260" />
|
||||
<di:waypoint x="710" y="260" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="646" y="242" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_15xpnyd_di" bpmnElement="Flow_15xpnyd">
|
||||
<di:waypoint x="600" y="285" />
|
||||
<di:waypoint x="600" y="352" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="588" y="316" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1uw77uz" bpmnElement="fggcsgd">
|
||||
<dc:Bounds x="750" y="690" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Event_0nxyypv_di" bpmnElement="Event_0nxyypv">
|
||||
<dc:Bounds x="882" y="712" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="Flow_12b9yhd_di" bpmnElement="Flow_12b9yhd">
|
||||
<di:waypoint x="195" y="190" />
|
||||
<di:waypoint x="250" y="190" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0tgn37q_di" bpmnElement="Flow_0tgn37q">
|
||||
<di:waypoint x="350" y="190" />
|
||||
<di:waypoint x="430" y="190" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_0w3nr57_di" bpmnElement="Flow_0w3nr57">
|
||||
<di:waypoint x="800" y="630" />
|
||||
<di:waypoint x="800" y="690" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_14lgswg_di" bpmnElement="Flow_14lgswg">
|
||||
<di:waypoint x="850" y="730" />
|
||||
<di:waypoint x="882" y="730" />
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</bpmn:definitions>
|
||||
<bpmn:sequenceFlow id="Flow_12b9yhd" sourceRef="StartEvent_1" targetRef="fggcsfq" />
|
||||
<bpmn:sequenceFlow id="Flow_0tgn37q" sourceRef="fggcsfq" targetRef="Activity_1wp96uu" />
|
||||
<bpmn:sequenceFlow id="Flow_0w3nr57" sourceRef="Activity_1wp96uu" targetRef="fggcsgd" />
|
||||
<bpmn:sequenceFlow id="Flow_14lgswg" sourceRef="fggcsgd" targetRef="Event_0nxyypv" />
|
||||
</bpmn:process>
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="project-assessment">
|
||||
<bpmndi:BPMNShape id="BPMNShape_1pmcoyu" bpmnElement="StartEvent_1">
|
||||
<dc:Bounds x="152" y="212" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_10n5hi3" bpmnElement="fggcsfq">
|
||||
<dc:Bounds x="243" y="190" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1juvv7v" bpmnElement="fggcsgd">
|
||||
<dc:Bounds x="723" y="830" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0mel25j" bpmnElement="Event_0nxyypv">
|
||||
<dc:Bounds x="935" y="852" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1k4a687" bpmnElement="Activity_1wp96uu" isExpanded="true">
|
||||
<dc:Bounds x="423" y="80" width="1340" height="690" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1662izv" bpmnElement="Event_1azjojy">
|
||||
<dc:Bounds x="463" y="187" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0xqkboi" bpmnElement="gbmzgjldxf">
|
||||
<dc:Bounds x="543" y="165" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1a5owds" bpmnElement="gbmzgjldsp">
|
||||
<dc:Bounds x="733" y="450" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1fguvdb" bpmnElement="Gateway_1qktq5f" isMarkerVisible="true">
|
||||
<dc:Bounds x="758" y="595" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1y0xl45" bpmnElement="Event_17bnh8x">
|
||||
<dc:Bounds x="765" y="702" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0coxith" bpmnElement="Gateway_0r2qm3p" isMarkerVisible="true">
|
||||
<dc:Bounds x="568" y="275" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1wnjq5x" bpmnElement="Event_1e8jif7">
|
||||
<dc:Bounds x="575" y="392" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_045st2m_di" bpmnElement="mkfzrxg">
|
||||
<dc:Bounds x="933" y="580" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_07ajss5" bpmnElement="Activity_08c4m85" isExpanded="true">
|
||||
<dc:Bounds x="703" y="110" width="1030" height="310" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1vk1td1" bpmnElement="Event_1ian0ub">
|
||||
<dc:Bounds x="743" y="192" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0gmysn6" bpmnElement="Event_151o5cu">
|
||||
<dc:Bounds x="1665" y="232" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1h785yv" bpmnElement="Gateway_1cgwh2s" isMarkerVisible="true">
|
||||
<dc:Bounds x="848" y="275" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_02qhva1" bpmnElement="Event_1r9lnkl">
|
||||
<dc:Bounds x="855" y="362" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_18m557f" bpmnElement="mkfzrff">
|
||||
<dc:Bounds x="823" y="170" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_112twwt" bpmnElement="Activity_0g84odh" isExpanded="true">
|
||||
<dc:Bounds x="963" y="150" width="650" height="210" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0qzrsra" bpmnElement="Event_1fv4qnw">
|
||||
<dc:Bounds x="1003" y="262" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0cp6yrg" bpmnElement="sjgcspg">
|
||||
<dc:Bounds x="1093" y="240" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1y4go9b" bpmnElement="mkfzrsp">
|
||||
<dc:Bounds x="1263" y="240" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_02c9vsg" bpmnElement="Gateway_09kbvyu" isMarkerVisible="true">
|
||||
<dc:Bounds x="1438" y="255" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_09oda52" bpmnElement="Event_0lus7gq">
|
||||
<dc:Bounds x="1535" y="262" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_0dly3ba" bpmnElement="Flow_1fanjtp">
|
||||
<di:waypoint x="1039" y="280" />
|
||||
<di:waypoint x="1093" y="280" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1ujrm80" bpmnElement="Flow_06jkril">
|
||||
<di:waypoint x="1463" y="255" />
|
||||
<di:waypoint x="1463" y="200" />
|
||||
<di:waypoint x="1143" y="200" />
|
||||
<di:waypoint x="1143" y="240" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1293" y="182" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_19fi9ao" bpmnElement="Flow_125j8kx">
|
||||
<di:waypoint x="1193" y="280" />
|
||||
<di:waypoint x="1263" y="280" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1k6k9y4" bpmnElement="Flow_0gpy5vh">
|
||||
<di:waypoint x="1363" y="280" />
|
||||
<di:waypoint x="1438" y="280" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1f2o885" bpmnElement="Flow_1modke8">
|
||||
<di:waypoint x="1488" y="280" />
|
||||
<di:waypoint x="1535" y="280" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1501" y="262" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_10uk0q8" bpmnElement="Flow_0xb4gtd">
|
||||
<di:waypoint x="779" y="210" />
|
||||
<di:waypoint x="823" y="210" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1qgrfu1_di" bpmnElement="Flow_1qgrfu1">
|
||||
<di:waypoint x="1613" y="250" />
|
||||
<di:waypoint x="1665" y="250" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_02pqtgn" bpmnElement="Flow_0cx9yoz">
|
||||
<di:waypoint x="873" y="250" />
|
||||
<di:waypoint x="873" y="275" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1nb0gl3" bpmnElement="Flow_1d18hwv">
|
||||
<di:waypoint x="898" y="300" />
|
||||
<di:waypoint x="963" y="300" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="909" y="282" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_01xuuyl" bpmnElement="Flow_1g6f2ww">
|
||||
<di:waypoint x="873" y="325" />
|
||||
<di:waypoint x="873" y="362" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="861" y="341" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_109wxtv" bpmnElement="Flow_1g6zc95">
|
||||
<di:waypoint x="499" y="205" />
|
||||
<di:waypoint x="543" y="205" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1y19xdp" bpmnElement="Flow_01dzmhe">
|
||||
<di:waypoint x="593" y="245" />
|
||||
<di:waypoint x="593" y="275" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1pny97o" bpmnElement="Flow_0ql7uu4">
|
||||
<di:waypoint x="618" y="300" />
|
||||
<di:waypoint x="703" y="300" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="639" y="282" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_05xs142" bpmnElement="Flow_1o0npc9">
|
||||
<di:waypoint x="783" y="420" />
|
||||
<di:waypoint x="783" y="450" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1ga3rk9_di" bpmnElement="Flow_1ga3rk9">
|
||||
<di:waypoint x="983" y="580" />
|
||||
<di:waypoint x="983" y="490" />
|
||||
<di:waypoint x="833" y="490" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_041ub24" bpmnElement="Flow_10o9sl2">
|
||||
<di:waypoint x="783" y="530" />
|
||||
<di:waypoint x="783" y="595" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1keogr1" bpmnElement="Flow_11i64js">
|
||||
<di:waypoint x="808" y="620" />
|
||||
<di:waypoint x="933" y="620" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="852" y="593" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_13kv2tx" bpmnElement="Flow_132fp4x">
|
||||
<di:waypoint x="783" y="645" />
|
||||
<di:waypoint x="783" y="702" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="787" y="659" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_0td9vsx" bpmnElement="Flow_15xpnyd">
|
||||
<di:waypoint x="593" y="325" />
|
||||
<di:waypoint x="593" y="392" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="581" y="356" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_17jq6oq" bpmnElement="Flow_12b9yhd">
|
||||
<di:waypoint x="188" y="230" />
|
||||
<di:waypoint x="243" y="230" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_13ux1n2" bpmnElement="Flow_0tgn37q">
|
||||
<di:waypoint x="343" y="230" />
|
||||
<di:waypoint x="423" y="230" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_0ju5880" bpmnElement="Flow_0w3nr57">
|
||||
<di:waypoint x="773" y="770" />
|
||||
<di:waypoint x="773" y="830" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_16dw8k1" bpmnElement="Flow_14lgswg">
|
||||
<di:waypoint x="823" y="870" />
|
||||
<di:waypoint x="935" y="870" />
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</bpmn:definitions>
|
||||
|
||||
@@ -0,0 +1,368 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_0zmm786" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.13.0" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.19.0">
|
||||
<bpmn:process id="project-assessment" name="项目合规评估流程" isExecutable="true">
|
||||
<bpmn:startEvent id="StartEvent_1">
|
||||
<bpmn:outgoing>Flow_12b9yhd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:userTask id="fggcsfq" name="法规工程师发起" camunda:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_12b9yhd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0tgn37q</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_1wp96uu" name="各部门子流程">
|
||||
<bpmn:incoming>Flow_0tgn37q</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0w3nr57</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="managerLeaderList" camunda:elementVariable="managerLeader">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1azjojy">
|
||||
<bpmn:outgoing>Flow_1g6zc95</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:userTask id="gbmzgjldxf" name="各部门主管级领导下发" camunda:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1g6zc95</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_01dzmhe</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_08c4m85" name="模块负责人下发子流程">
|
||||
<bpmn:incoming>Flow_0ql7uu4</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1o0npc9</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="moduleOwnerList" camunda:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1ian0ub">
|
||||
<bpmn:outgoing>Flow_0xb4gtd</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:endEvent id="Event_151o5cu">
|
||||
<bpmn:incoming>Flow_1qgrfu1</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:exclusiveGateway id="Gateway_1cgwh2s">
|
||||
<bpmn:incoming>Flow_0cx9yoz</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1d18hwv</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_1g6f2ww</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_1r9lnkl">
|
||||
<bpmn:incoming>Flow_1g6f2ww</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:userTask id="mkfzrff" name="模块负责人分发" camunda:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_0xb4gtd</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0cx9yoz</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:subProcess id="Activity_0g84odh" name="设计工程师评估子流程">
|
||||
<bpmn:incoming>Flow_1d18hwv</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1qgrfu1</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="designEngineerList" camunda:elementVariable="designEngineer">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
<bpmn:startEvent id="Event_1fv4qnw">
|
||||
<bpmn:outgoing>Flow_1fanjtp</bpmn:outgoing>
|
||||
</bpmn:startEvent>
|
||||
<bpmn:userTask id="sjgcspg" name="设计工程师评估" camunda:assignee="${designEngineer}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_1fanjtp</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_06jkril</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_125j8kx</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:userTask id="mkfzrsp" name="模块负责人审批" camunda:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_125j8kx</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0gpy5vh</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:exclusiveGateway id="Gateway_09kbvyu">
|
||||
<bpmn:incoming>Flow_0gpy5vh</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_06jkril</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_1modke8</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_0lus7gq">
|
||||
<bpmn:incoming>Flow_1modke8</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_1fanjtp" sourceRef="Event_1fv4qnw" targetRef="sjgcspg" />
|
||||
<bpmn:sequenceFlow id="Flow_06jkril" name="驳回" sourceRef="Gateway_09kbvyu" targetRef="sjgcspg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_125j8kx" sourceRef="sjgcspg" targetRef="mkfzrsp" />
|
||||
<bpmn:sequenceFlow id="Flow_0gpy5vh" sourceRef="mkfzrsp" targetRef="Gateway_09kbvyu" />
|
||||
<bpmn:sequenceFlow id="Flow_1modke8" name="通过" sourceRef="Gateway_09kbvyu" targetRef="Event_0lus7gq">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:sequenceFlow id="Flow_0xb4gtd" sourceRef="Event_1ian0ub" targetRef="mkfzrff" />
|
||||
<bpmn:sequenceFlow id="Flow_1qgrfu1" sourceRef="Activity_0g84odh" targetRef="Event_151o5cu" />
|
||||
<bpmn:sequenceFlow id="Flow_0cx9yoz" sourceRef="mkfzrff" targetRef="Gateway_1cgwh2s" />
|
||||
<bpmn:sequenceFlow id="Flow_1d18hwv" name="涉及人员" sourceRef="Gateway_1cgwh2s" targetRef="Activity_0g84odh">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_1g6f2ww" name="全部不涉及" sourceRef="Gateway_1cgwh2s" targetRef="Event_1r9lnkl">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${designEngineerListSize == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="gbmzgjldsp" name="各部门主管级领导(汇总)审批" camunda:assignee="${managerLeader}">
|
||||
<bpmn:incoming>Flow_1o0npc9</bpmn:incoming>
|
||||
<bpmn:incoming>Flow_1ga3rk9</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_10o9sl2</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:exclusiveGateway id="Gateway_1qktq5f">
|
||||
<bpmn:incoming>Flow_10o9sl2</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_11i64js</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_132fp4x</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_17bnh8x">
|
||||
<bpmn:incoming>Flow_132fp4x</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:exclusiveGateway id="Gateway_0r2qm3p">
|
||||
<bpmn:incoming>Flow_01dzmhe</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_0ql7uu4</bpmn:outgoing>
|
||||
<bpmn:outgoing>Flow_15xpnyd</bpmn:outgoing>
|
||||
</bpmn:exclusiveGateway>
|
||||
<bpmn:endEvent id="Event_1e8jif7">
|
||||
<bpmn:incoming>Flow_15xpnyd</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:userTask id="mkfzrxg" name="模块负责人修改" camunda:assignee="${moduleOwner}">
|
||||
<bpmn:extensionElements>
|
||||
<camunda:taskListener class="com.jero.modules.activiti.process.projectassess.listener.ProcessProjectAssessCreateListener" event="create" />
|
||||
</bpmn:extensionElements>
|
||||
<bpmn:incoming>Flow_11i64js</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_1ga3rk9</bpmn:outgoing>
|
||||
<bpmn:multiInstanceLoopCharacteristics camunda:collection="moduleOwnerList" camunda:elementVariable="moduleOwner">
|
||||
<bpmn:completionCondition xsi:type="bpmn:tFormalExpression">${nrOfInstances == nrOfCompletedInstances}</bpmn:completionCondition>
|
||||
</bpmn:multiInstanceLoopCharacteristics>
|
||||
</bpmn:userTask>
|
||||
<bpmn:sequenceFlow id="Flow_1g6zc95" sourceRef="Event_1azjojy" targetRef="gbmzgjldxf" />
|
||||
<bpmn:sequenceFlow id="Flow_01dzmhe" sourceRef="gbmzgjldxf" targetRef="Gateway_0r2qm3p" />
|
||||
<bpmn:sequenceFlow id="Flow_0ql7uu4" name="涉及人员" sourceRef="Gateway_0r2qm3p" targetRef="Activity_08c4m85">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerListSize > 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_1o0npc9" sourceRef="Activity_08c4m85" targetRef="gbmzgjldsp" />
|
||||
<bpmn:sequenceFlow id="Flow_1ga3rk9" sourceRef="mkfzrxg" targetRef="gbmzgjldsp" />
|
||||
<bpmn:sequenceFlow id="Flow_10o9sl2" sourceRef="gbmzgjldsp" targetRef="Gateway_1qktq5f" />
|
||||
<bpmn:sequenceFlow id="Flow_11i64js" name="驳回" sourceRef="Gateway_1qktq5f" targetRef="mkfzrxg">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_132fp4x" name="通过" sourceRef="Gateway_1qktq5f" targetRef="Event_17bnh8x">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${pass}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
<bpmn:sequenceFlow id="Flow_15xpnyd" name="全部不涉及" sourceRef="Gateway_0r2qm3p" targetRef="Event_1e8jif7">
|
||||
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${moduleOwnerListSize == 0}</bpmn:conditionExpression>
|
||||
</bpmn:sequenceFlow>
|
||||
</bpmn:subProcess>
|
||||
<bpmn:userTask id="fggcsgd" name="法规工程师归档" camunda:assignee="${standardsEngineer}">
|
||||
<bpmn:incoming>Flow_0w3nr57</bpmn:incoming>
|
||||
<bpmn:outgoing>Flow_14lgswg</bpmn:outgoing>
|
||||
</bpmn:userTask>
|
||||
<bpmn:endEvent id="Event_0nxyypv">
|
||||
<bpmn:incoming>Flow_14lgswg</bpmn:incoming>
|
||||
</bpmn:endEvent>
|
||||
<bpmn:sequenceFlow id="Flow_12b9yhd" sourceRef="StartEvent_1" targetRef="fggcsfq" />
|
||||
<bpmn:sequenceFlow id="Flow_0tgn37q" sourceRef="fggcsfq" targetRef="Activity_1wp96uu" />
|
||||
<bpmn:sequenceFlow id="Flow_0w3nr57" sourceRef="Activity_1wp96uu" targetRef="fggcsgd" />
|
||||
<bpmn:sequenceFlow id="Flow_14lgswg" sourceRef="fggcsgd" targetRef="Event_0nxyypv" />
|
||||
</bpmn:process>
|
||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
||||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="project-assessment">
|
||||
<bpmndi:BPMNShape id="BPMNShape_1pmcoyu" bpmnElement="StartEvent_1">
|
||||
<dc:Bounds x="152" y="212" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_10n5hi3" bpmnElement="fggcsfq">
|
||||
<dc:Bounds x="243" y="190" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1juvv7v" bpmnElement="fggcsgd">
|
||||
<dc:Bounds x="723" y="830" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0mel25j" bpmnElement="Event_0nxyypv">
|
||||
<dc:Bounds x="935" y="852" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1k4a687" bpmnElement="Activity_1wp96uu" isExpanded="true">
|
||||
<dc:Bounds x="423" y="80" width="1340" height="690" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1662izv" bpmnElement="Event_1azjojy">
|
||||
<dc:Bounds x="463" y="187" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0xqkboi" bpmnElement="gbmzgjldxf">
|
||||
<dc:Bounds x="543" y="165" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1a5owds" bpmnElement="gbmzgjldsp">
|
||||
<dc:Bounds x="733" y="450" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1fguvdb" bpmnElement="Gateway_1qktq5f" isMarkerVisible="true">
|
||||
<dc:Bounds x="758" y="595" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1y0xl45" bpmnElement="Event_17bnh8x">
|
||||
<dc:Bounds x="765" y="702" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0coxith" bpmnElement="Gateway_0r2qm3p" isMarkerVisible="true">
|
||||
<dc:Bounds x="568" y="275" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1wnjq5x" bpmnElement="Event_1e8jif7">
|
||||
<dc:Bounds x="575" y="392" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="Activity_045st2m_di" bpmnElement="mkfzrxg">
|
||||
<dc:Bounds x="933" y="580" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_07ajss5" bpmnElement="Activity_08c4m85" isExpanded="true">
|
||||
<dc:Bounds x="703" y="110" width="1030" height="310" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1vk1td1" bpmnElement="Event_1ian0ub">
|
||||
<dc:Bounds x="743" y="192" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0gmysn6" bpmnElement="Event_151o5cu">
|
||||
<dc:Bounds x="1665" y="232" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1h785yv" bpmnElement="Gateway_1cgwh2s" isMarkerVisible="true">
|
||||
<dc:Bounds x="848" y="275" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_02qhva1" bpmnElement="Event_1r9lnkl">
|
||||
<dc:Bounds x="855" y="362" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_18m557f" bpmnElement="mkfzrff">
|
||||
<dc:Bounds x="823" y="170" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_112twwt" bpmnElement="Activity_0g84odh" isExpanded="true">
|
||||
<dc:Bounds x="963" y="150" width="650" height="210" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0qzrsra" bpmnElement="Event_1fv4qnw">
|
||||
<dc:Bounds x="1003" y="262" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_0cp6yrg" bpmnElement="sjgcspg">
|
||||
<dc:Bounds x="1093" y="240" width="100" height="80" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_1y4go9b" bpmnElement="mkfzrsp">
|
||||
<dc:Bounds x="1263" y="240" width="100" height="80" />
|
||||
<bpmndi:BPMNLabel />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_02c9vsg" bpmnElement="Gateway_09kbvyu" isMarkerVisible="true">
|
||||
<dc:Bounds x="1438" y="255" width="50" height="50" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNShape id="BPMNShape_09oda52" bpmnElement="Event_0lus7gq">
|
||||
<dc:Bounds x="1535" y="262" width="36" height="36" />
|
||||
</bpmndi:BPMNShape>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_0dly3ba" bpmnElement="Flow_1fanjtp">
|
||||
<di:waypoint x="1039" y="280" />
|
||||
<di:waypoint x="1093" y="280" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1ujrm80" bpmnElement="Flow_06jkril">
|
||||
<di:waypoint x="1463" y="255" />
|
||||
<di:waypoint x="1463" y="200" />
|
||||
<di:waypoint x="1143" y="200" />
|
||||
<di:waypoint x="1143" y="240" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1293" y="182" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_19fi9ao" bpmnElement="Flow_125j8kx">
|
||||
<di:waypoint x="1193" y="280" />
|
||||
<di:waypoint x="1263" y="280" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1k6k9y4" bpmnElement="Flow_0gpy5vh">
|
||||
<di:waypoint x="1363" y="280" />
|
||||
<di:waypoint x="1438" y="280" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1f2o885" bpmnElement="Flow_1modke8">
|
||||
<di:waypoint x="1488" y="280" />
|
||||
<di:waypoint x="1535" y="280" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="1501" y="262" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_10uk0q8" bpmnElement="Flow_0xb4gtd">
|
||||
<di:waypoint x="779" y="210" />
|
||||
<di:waypoint x="823" y="210" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1qgrfu1_di" bpmnElement="Flow_1qgrfu1">
|
||||
<di:waypoint x="1613" y="250" />
|
||||
<di:waypoint x="1665" y="250" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_02pqtgn" bpmnElement="Flow_0cx9yoz">
|
||||
<di:waypoint x="873" y="250" />
|
||||
<di:waypoint x="873" y="275" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1nb0gl3" bpmnElement="Flow_1d18hwv">
|
||||
<di:waypoint x="898" y="300" />
|
||||
<di:waypoint x="963" y="300" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="909" y="282" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_01xuuyl" bpmnElement="Flow_1g6f2ww">
|
||||
<di:waypoint x="873" y="325" />
|
||||
<di:waypoint x="873" y="362" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="861" y="341" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_109wxtv" bpmnElement="Flow_1g6zc95">
|
||||
<di:waypoint x="499" y="205" />
|
||||
<di:waypoint x="543" y="205" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1y19xdp" bpmnElement="Flow_01dzmhe">
|
||||
<di:waypoint x="593" y="245" />
|
||||
<di:waypoint x="593" y="275" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1pny97o" bpmnElement="Flow_0ql7uu4">
|
||||
<di:waypoint x="618" y="300" />
|
||||
<di:waypoint x="703" y="300" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="639" y="282" width="44" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_05xs142" bpmnElement="Flow_1o0npc9">
|
||||
<di:waypoint x="783" y="420" />
|
||||
<di:waypoint x="783" y="450" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="Flow_1ga3rk9_di" bpmnElement="Flow_1ga3rk9">
|
||||
<di:waypoint x="983" y="580" />
|
||||
<di:waypoint x="983" y="490" />
|
||||
<di:waypoint x="833" y="490" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_041ub24" bpmnElement="Flow_10o9sl2">
|
||||
<di:waypoint x="783" y="530" />
|
||||
<di:waypoint x="783" y="595" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_1keogr1" bpmnElement="Flow_11i64js">
|
||||
<di:waypoint x="808" y="620" />
|
||||
<di:waypoint x="933" y="620" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="852" y="593" width="21" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_13kv2tx" bpmnElement="Flow_132fp4x">
|
||||
<di:waypoint x="783" y="645" />
|
||||
<di:waypoint x="783" y="702" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="787" y="659" width="22" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_0td9vsx" bpmnElement="Flow_15xpnyd">
|
||||
<di:waypoint x="593" y="325" />
|
||||
<di:waypoint x="593" y="392" />
|
||||
<bpmndi:BPMNLabel>
|
||||
<dc:Bounds x="581" y="356" width="55" height="14" />
|
||||
</bpmndi:BPMNLabel>
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_17jq6oq" bpmnElement="Flow_12b9yhd">
|
||||
<di:waypoint x="188" y="230" />
|
||||
<di:waypoint x="243" y="230" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_13ux1n2" bpmnElement="Flow_0tgn37q">
|
||||
<di:waypoint x="343" y="230" />
|
||||
<di:waypoint x="423" y="230" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_0ju5880" bpmnElement="Flow_0w3nr57">
|
||||
<di:waypoint x="773" y="770" />
|
||||
<di:waypoint x="773" y="830" />
|
||||
</bpmndi:BPMNEdge>
|
||||
<bpmndi:BPMNEdge id="BPMNEdge_16dw8k1" bpmnElement="Flow_14lgswg">
|
||||
<di:waypoint x="823" y="870" />
|
||||
<di:waypoint x="935" y="870" />
|
||||
</bpmndi:BPMNEdge>
|
||||
</bpmndi:BPMNPlane>
|
||||
</bpmndi:BPMNDiagram>
|
||||
</bpmn:definitions>
|
||||
Reference in New Issue
Block a user