写出 bpmn带审批驳回的流程图的xml文件
时间: 2024-02-10 17:10:38 浏览: 114
vue使用 bpmn.js
以下是一个带审批驳回的 BPMN 流程图的 XML 文件示例:
```xml
<?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:activiti="http://activiti.org/bpmn"
targetNamespace="http://www.activiti.org/test">
<process id="process_with_approval" name="Process with Approval" isExecutable="true">
<startEvent id="startEvent1" name="Start"></startEvent>
<userTask id="userTask1" name="User Task"></userTask>
<exclusiveGateway id="exclusiveGateway1" name="Exclusive Gateway"></exclusiveGateway>
<userTask id="userTask2" name="Approval Task"></userTask>
<endEvent id="endEvent1" name="End"></endEvent>
<sequenceFlow id="flow1" sourceRef="startEvent1" targetRef="userTask1"></sequenceFlow>
<sequenceFlow id="flow2" sourceRef="userTask1" targetRef="exclusiveGateway1"></sequenceFlow>
<sequenceFlow id="flow3" sourceRef="exclusiveGateway1" targetRef="userTask2">
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${approved}]]></conditionExpression>
</sequenceFlow>
<sequenceFlow id="flow4" sourceRef="exclusiveGateway1" targetRef="endEvent1">
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${!approved}]]></conditionExpression>
</sequenceFlow>
</process>
</definitions>
```
在这个 XML 文件中,我们定义了一个名为 `Process with Approval` 的流程,其中包含了开始事件 `startEvent1`、用户任务 `userTask1`、排他网关 `exclusiveGateway1`、审批任务 `userTask2` 和结束事件 `endEvent1`。流程的基本流程和前面提到的一样。
在流程的定义中,我们使用了条件表达式来判断流程的走向。如果条件表达式 `${approved}` 的值为 true(即审批人同意),则流程从排他网关 `exclusiveGateway1` 进入审批任务 `userTask2`;如果条件表达式 `${!approved}` 的值为 true(即审批人驳回),则流程从排他网关 `exclusiveGateway1` 进入结束事件 `endEvent1`。
阅读全文