1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="UTF-8"?>
- <definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.kafeitu.me/activiti/leave">
- <process id="leave" name="请假流程-普通表单" isExecutable="true">
- <documentation>请假流程演示</documentation>
- <userTask id="hrVerify" name="人事审批" activiti:candidateGroups="117"></userTask>
- <exclusiveGateway id="exclusivegateway6" name="Exclusive Gateway"></exclusiveGateway>
- <endEvent id="endevent1" name="End"></endEvent>
- <sequenceFlow id="flow6" sourceRef="hrVerify" targetRef="exclusivegateway6"></sequenceFlow>
- <sequenceFlow id="flow13" name="同意" sourceRef="exclusivegateway6" targetRef="endevent1">
- <conditionExpression xsi:type="tFormalExpression"><![CDATA[${hrStatus=="1"}]]></conditionExpression>
- </sequenceFlow>
- <startEvent id="startevent1" name="Start" activiti:initiator="applyUserId"></startEvent>
- <sequenceFlow id="flow14" name="不同意" sourceRef="exclusivegateway6" targetRef="hrVerify">
- <conditionExpression xsi:type="tFormalExpression"><![CDATA[${hrStatus=="0"}]]></conditionExpression>
- </sequenceFlow>
- <sequenceFlow id="flow15" sourceRef="startevent1" targetRef="hrVerify"></sequenceFlow>
- </process>
- <bpmndi:BPMNDiagram id="BPMNDiagram_leave">
- <bpmndi:BPMNPlane bpmnElement="leave" id="BPMNPlane_leave">
- <bpmndi:BPMNShape bpmnElement="hrVerify" id="BPMNShape_hrVerify">
- <omgdc:Bounds height="55.0" width="105.0" x="260.0" y="100.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="exclusivegateway6" id="BPMNShape_exclusivegateway6">
- <omgdc:Bounds height="40.0" width="40.0" x="448.0" y="107.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
- <omgdc:Bounds height="35.0" width="35.0" x="550.0" y="280.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
- <omgdc:Bounds height="35.0" width="35.0" x="70.0" y="110.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
- <omgdi:waypoint x="365.0" y="127.0"></omgdi:waypoint>
- <omgdi:waypoint x="448.0" y="127.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow13" id="BPMNEdge_flow13">
- <omgdi:waypoint x="488.0" y="127.0"></omgdi:waypoint>
- <omgdi:waypoint x="567.0" y="127.0"></omgdi:waypoint>
- <omgdi:waypoint x="567.0" y="280.0"></omgdi:waypoint>
- <bpmndi:BPMNLabel>
- <omgdc:Bounds height="14.0" width="24.0" x="488.0" y="127.0"></omgdc:Bounds>
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow14" id="BPMNEdge_flow14">
- <omgdi:waypoint x="468.0" y="147.0"></omgdi:waypoint>
- <omgdi:waypoint x="468.0" y="344.0"></omgdi:waypoint>
- <omgdi:waypoint x="312.0" y="344.0"></omgdi:waypoint>
- <omgdi:waypoint x="312.0" y="155.0"></omgdi:waypoint>
- <bpmndi:BPMNLabel>
- <omgdc:Bounds height="14.0" width="36.0" x="349.0" y="313.0"></omgdc:Bounds>
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow15" id="BPMNEdge_flow15">
- <omgdi:waypoint x="105.0" y="127.0"></omgdi:waypoint>
- <omgdi:waypoint x="260.0" y="127.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- </bpmndi:BPMNPlane>
- </bpmndi:BPMNDiagram>
- </definitions>
|