燕鹏
4 년 전
17개의 변경된 파일과 1547개의 추가작업 그리고 169개의 파일을 삭제
@ -0,0 +1,61 @@ |
|||
package com.example.demo.controller; |
|||
|
|||
import com.example.demo.entity.Holiday; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.activiti.api.process.model.builders.ProcessPayloadBuilder; |
|||
import org.activiti.api.process.runtime.ProcessRuntime; |
|||
import org.activiti.api.runtime.shared.query.Page; |
|||
import org.activiti.api.runtime.shared.query.Pageable; |
|||
import org.activiti.api.task.runtime.TaskRuntime; |
|||
import org.activiti.engine.ProcessEngine; |
|||
import org.activiti.engine.RepositoryService; |
|||
import org.activiti.engine.RuntimeService; |
|||
import org.activiti.engine.TaskService; |
|||
import org.activiti.engine.repository.Deployment; |
|||
import org.activiti.engine.repository.ProcessDefinition; |
|||
import org.activiti.engine.repository.ProcessDefinitionQuery; |
|||
import org.activiti.engine.runtime.ProcessInstance; |
|||
import org.activiti.engine.task.Task; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import java.util.HashMap; |
|||
import java.util.List; |
|||
import java.util.Map; |
|||
|
|||
/** |
|||
* @author yanpeng |
|||
* @version 1.0 |
|||
* @desc TODO |
|||
* @company 北京中经网软件有限公司 |
|||
* @date 2020/10/27 14:34 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("process") |
|||
@Api(tags = "工作流流程接口") |
|||
public class ProcessController { |
|||
|
|||
@Autowired |
|||
private RepositoryService repositoryService; |
|||
|
|||
@ApiOperation(value = "查询工作流") |
|||
@GetMapping("page") |
|||
public void page() { |
|||
ProcessDefinitionQuery processDefinitionQuery = repositoryService |
|||
.createProcessDefinitionQuery(); |
|||
List<ProcessDefinition> list = processDefinitionQuery.processDefinitionKey("holidayex").orderByProcessDefinitionVersion().asc().list(); |
|||
|
|||
for(ProcessDefinition t :list){ |
|||
if(t.isSuspended()){ |
|||
// repositoryService.suspendProcessDefinitionByKey("holidayex");
|
|||
// repositoryService.suspendProcessDefinitionById(t.getId(),true,null);
|
|||
repositoryService.activateProcessDefinitionById(t.getId(),true,null); |
|||
}else{ |
|||
repositoryService.suspendProcessDefinitionById(t.getId(),true,null); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_3" name="填写请假单"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="部门经理审核"/> |
|||
<sequenceFlow id="_8" sourceRef="_2" targetRef="_3"/> |
|||
<sequenceFlow id="_9" sourceRef="_3" targetRef="_5"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<userTask activiti:exclusive="true" id="_16" name="总经理审核审核"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_18" sourceRef="_4" targetRef="_16"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${holiday.num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<userTask activiti:exclusive="true" id="_10" name="副总经理审核"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_10"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${holiday.num>=2 && holiday.num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<userTask activiti:exclusive="true" id="_19" name="HR存档"/> |
|||
<sequenceFlow id="_20" sourceRef="_4" targetRef="_19"/> |
|||
<sequenceFlow id="_21" sourceRef="_10" targetRef="_19"/> |
|||
<sequenceFlow id="_22" sourceRef="_16" targetRef="_19"/> |
|||
<sequenceFlow id="_23" sourceRef="_19" targetRef="_12"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="5.0" y="195.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_3" id="Shape-_3"> |
|||
<dc:Bounds height="55.0" width="85.0" x="85.0" y="180.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="225.0" y="180.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="730.0" y="315.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="365.0" y="200.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_16" id="Shape-_16"> |
|||
<dc:Bounds height="55.0" width="85.0" x="555.0" y="235.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="485.0" y="100.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_19" id="Shape-_19"> |
|||
<dc:Bounds height="55.0" width="85.0" x="520.0" y="355.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_10"> |
|||
<di:waypoint x="397.0" y="216.0"/> |
|||
<di:waypoint x="485.0" y="127.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_23" id="BPMNEdge__23" sourceElement="_19" targetElement="_12"> |
|||
<di:waypoint x="605.0" y="382.5"/> |
|||
<di:waypoint x="730.0" y="331.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="310.0" y="207.5"/> |
|||
<di:waypoint x="365.0" y="216.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_4" targetElement="_16"> |
|||
<di:waypoint x="397.0" y="216.0"/> |
|||
<di:waypoint x="555.0" y="262.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_2" targetElement="_3"> |
|||
<di:waypoint x="37.0" y="211.0"/> |
|||
<di:waypoint x="85.0" y="207.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_9" id="BPMNEdge__9" sourceElement="_3" targetElement="_5"> |
|||
<di:waypoint x="170.0" y="207.5"/> |
|||
<di:waypoint x="225.0" y="207.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_20" id="BPMNEdge__20" sourceElement="_4" targetElement="_19"> |
|||
<di:waypoint x="397.0" y="216.0"/> |
|||
<di:waypoint x="520.0" y="382.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_22" id="BPMNEdge__22" sourceElement="_16" targetElement="_19"> |
|||
<di:waypoint x="580.0" y="290.0"/> |
|||
<di:waypoint x="580.0" y="355.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_21" id="BPMNEdge__21" sourceElement="_10" targetElement="_19"> |
|||
<di:waypoint x="545.0" y="155.0"/> |
|||
<di:waypoint x="545.0" y="355.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_8" name="默认分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_14" sourceRef="_4" targetRef="_8"/> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_16" sourceRef="_8" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_8" id="Shape-_8"> |
|||
<dc:Bounds height="55.0" width="85.0" x="450.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="290.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_4" targetElement="_8"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="450.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_16" id="BPMNEdge__16" sourceElement="_8" targetElement="_10"> |
|||
<di:waypoint x="535.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="317.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="317.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_8" name="默认分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_14" sourceRef="_4" targetRef="_8"/> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_16" sourceRef="_8" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_8" id="Shape-_8"> |
|||
<dc:Bounds height="55.0" width="85.0" x="450.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="290.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_4" targetElement="_8"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="450.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_16" id="BPMNEdge__16" sourceElement="_8" targetElement="_10"> |
|||
<di:waypoint x="535.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="317.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="317.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -1,61 +0,0 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604021504826" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604021504826" name="" targetNamespace="http://www.activiti.org/testm1604021504826" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="testbpmn" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_3" name="提交请假审批"/> |
|||
<userTask activiti:exclusive="true" id="_4" name="部门经理审核"/> |
|||
<endEvent id="_5" name="EndEvent"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_3"/> |
|||
<sequenceFlow id="_7" sourceRef="_3" targetRef="_4"/> |
|||
<sequenceFlow id="_8" sourceRef="_4" targetRef="_5"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="testbpmn"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="355.0" y="60.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_3" id="Shape-_3"> |
|||
<dc:Bounds height="55.0" width="85.0" x="335.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4"> |
|||
<dc:Bounds height="55.0" width="85.0" x="340.0" y="260.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="32.0" width="32.0" x="365.0" y="370.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_3"> |
|||
<di:waypoint x="371.0" y="92.0"/> |
|||
<di:waypoint x="371.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_7" id="BPMNEdge__7" sourceElement="_3" targetElement="_4"> |
|||
<di:waypoint x="380.0" y="200.0"/> |
|||
<di:waypoint x="380.0" y="260.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_4" targetElement="_5"> |
|||
<di:waypoint x="381.0" y="315.0"/> |
|||
<di:waypoint x="381.0" y="370.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
Before Width: | Height: | Size: 4.1 KiB |
@ -1,61 +0,0 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604021504826" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604021504826" name="" targetNamespace="http://www.activiti.org/testm1604021504826" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="myProcess_1" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_3" name="提交请假审批"/> |
|||
<userTask activiti:exclusive="true" id="_4" name="部门经理审核"/> |
|||
<endEvent id="_5" name="EndEvent"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_3"/> |
|||
<sequenceFlow id="_7" sourceRef="_3" targetRef="_4"/> |
|||
<sequenceFlow id="_8" sourceRef="_4" targetRef="_5"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="myProcess_1"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="355.0" y="60.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_3" id="Shape-_3"> |
|||
<dc:Bounds height="55.0" width="85.0" x="335.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4"> |
|||
<dc:Bounds height="55.0" width="85.0" x="340.0" y="260.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="32.0" width="32.0" x="365.0" y="370.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_3"> |
|||
<di:waypoint x="371.0" y="92.0"/> |
|||
<di:waypoint x="371.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_7" id="BPMNEdge__7" sourceElement="_3" targetElement="_4"> |
|||
<di:waypoint x="380.0" y="200.0"/> |
|||
<di:waypoint x="380.0" y="260.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_4" targetElement="_5"> |
|||
<di:waypoint x="381.0" y="315.0"/> |
|||
<di:waypoint x="381.0" y="370.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
<userTask activiti:exclusive="true" id="_20" name="默认分支"/> |
|||
<sequenceFlow id="_8" sourceRef="_4" targetRef="_20"/> |
|||
<sequenceFlow id="_14" sourceRef="_20" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="275.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_20" id="Shape-_20"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_20" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="302.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="302.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_4" targetElement="_20"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
<userTask activiti:exclusive="true" id="_20" name="默认分支"/> |
|||
<sequenceFlow id="_8" sourceRef="_4" targetRef="_20"/> |
|||
<sequenceFlow id="_14" sourceRef="_20" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="275.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_20" id="Shape-_20"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_20" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="302.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="302.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_4" targetElement="_20"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holiday请假" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_20" name="默认分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_8" sourceRef="_4" targetRef="_20"/> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
<sequenceFlow id="_14" sourceRef="_20" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holiday请假"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="270.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_20" id="Shape-_20"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_20" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="297.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="297.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_4" targetElement="_20"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_20" name="默认分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_8" sourceRef="_4" targetRef="_20"/> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
<sequenceFlow id="_14" sourceRef="_20" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="275.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_20" id="Shape-_20"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_20" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="302.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="302.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_8" id="BPMNEdge__8" sourceElement="_4" targetElement="_20"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_8" name="默认分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num<7 && num >=3}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_14" sourceRef="_4" targetRef="_8"/> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_16" sourceRef="_8" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_8" id="Shape-_8"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="290.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_4" targetElement="_8"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_16" id="BPMNEdge__16" sourceElement="_8" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="317.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="317.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
@ -0,0 +1,145 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
|||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" 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" xmlns:tns="http://www.activiti.org/testm1604633800390" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1604633800390" name="" targetNamespace="http://www.activiti.org/testm1604633800390" typeLanguage="http://www.w3.org/2001/XMLSchema"> |
|||
<process id="holidayex" isClosed="false" isExecutable="true" processType="None"> |
|||
<startEvent id="_2" name="StartEvent"/> |
|||
<userTask activiti:exclusive="true" id="_5" name="启动任务"/> |
|||
<endEvent id="_12" name="EndEvent"/> |
|||
<exclusiveGateway gatewayDirection="Unspecified" id="_4" name="ExclusiveGateway"/> |
|||
<sequenceFlow id="_17" sourceRef="_5" targetRef="_4"/> |
|||
<sequenceFlow id="_6" sourceRef="_2" targetRef="_5"/> |
|||
<userTask activiti:exclusive="true" id="_7" name="第一分支"/> |
|||
<userTask activiti:exclusive="true" id="_8" name="默认分支"/> |
|||
<userTask activiti:exclusive="true" id="_9" name="第三分支"/> |
|||
<userTask activiti:exclusive="true" id="_10" name="结束节点"/> |
|||
<sequenceFlow id="_11" sourceRef="_10" targetRef="_12"/> |
|||
<sequenceFlow id="_13" sourceRef="_4" targetRef="_7"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_3" sourceRef="_4" targetRef="_9"> |
|||
<conditionExpression xsi:type="tFormalExpression"> |
|||
<![CDATA[${num>=3 && num<7}]]> |
|||
</conditionExpression> |
|||
</sequenceFlow> |
|||
<sequenceFlow id="_14" sourceRef="_4" targetRef="_8"/> |
|||
<sequenceFlow id="_15" sourceRef="_7" targetRef="_10"/> |
|||
<sequenceFlow id="_16" sourceRef="_8" targetRef="_10"/> |
|||
<sequenceFlow id="_18" sourceRef="_9" targetRef="_10"/> |
|||
</process> |
|||
<bpmndi:BPMNDiagram documentation="background=#3C3F41;count=1;horizontalcount=1;orientation=0;width=842.4;height=1195.2;imageableWidth=832.4;imageableHeight=1185.2;imageableX=5.0;imageableY=5.0" id="Diagram-_1" name="New Diagram"> |
|||
<bpmndi:BPMNPlane bpmnElement="holidayex"> |
|||
<bpmndi:BPMNShape bpmnElement="_2" id="Shape-_2"> |
|||
<dc:Bounds height="32.0" width="32.0" x="15.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_5" id="Shape-_5"> |
|||
<dc:Bounds height="55.0" width="85.0" x="125.0" y="145.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_12" id="Shape-_12"> |
|||
<dc:Bounds height="32.0" width="32.0" x="835.0" y="130.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_4" id="Shape-_4" isMarkerVisible="false"> |
|||
<dc:Bounds height="32.0" width="32.0" x="295.0" y="150.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="32.0" width="32.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_7" id="Shape-_7"> |
|||
<dc:Bounds height="55.0" width="85.0" x="440.0" y="40.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_8" id="Shape-_8"> |
|||
<dc:Bounds height="55.0" width="85.0" x="450.0" y="155.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_9" id="Shape-_9"> |
|||
<dc:Bounds height="55.0" width="85.0" x="445.0" y="290.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNShape bpmnElement="_10" id="Shape-_10"> |
|||
<dc:Bounds height="55.0" width="85.0" x="675.0" y="135.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="55.0" width="85.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNShape> |
|||
<bpmndi:BPMNEdge bpmnElement="_13" id="BPMNEdge__13" sourceElement="_4" targetElement="_7"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="440.0" y="67.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_15" id="BPMNEdge__15" sourceElement="_7" targetElement="_10"> |
|||
<di:waypoint x="525.0" y="67.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_14" id="BPMNEdge__14" sourceElement="_4" targetElement="_8"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="450.0" y="182.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_17" id="BPMNEdge__17" sourceElement="_5" targetElement="_4"> |
|||
<di:waypoint x="210.0" y="172.5"/> |
|||
<di:waypoint x="295.0" y="166.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_16" id="BPMNEdge__16" sourceElement="_8" targetElement="_10"> |
|||
<di:waypoint x="535.0" y="182.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_18" id="BPMNEdge__18" sourceElement="_9" targetElement="_10"> |
|||
<di:waypoint x="530.0" y="317.5"/> |
|||
<di:waypoint x="675.0" y="162.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_3" id="BPMNEdge__3" sourceElement="_4" targetElement="_9"> |
|||
<di:waypoint x="327.0" y="166.0"/> |
|||
<di:waypoint x="445.0" y="317.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_6" id="BPMNEdge__6" sourceElement="_2" targetElement="_5"> |
|||
<di:waypoint x="47.0" y="166.0"/> |
|||
<di:waypoint x="125.0" y="172.5"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
<bpmndi:BPMNEdge bpmnElement="_11" id="BPMNEdge__11" sourceElement="_10" targetElement="_12"> |
|||
<di:waypoint x="760.0" y="162.5"/> |
|||
<di:waypoint x="835.0" y="146.0"/> |
|||
<bpmndi:BPMNLabel> |
|||
<dc:Bounds height="0.0" width="0.0" x="0.0" y="0.0"/> |
|||
</bpmndi:BPMNLabel> |
|||
</bpmndi:BPMNEdge> |
|||
</bpmndi:BPMNPlane> |
|||
</bpmndi:BPMNDiagram> |
|||
</definitions> |
불러오는 중...
Reference in new issue