1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="UTF-8"?>
- <definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.activiti.org/test">
- <process id="pssrMgrConfirm" name="PSSR装置经理审批" isExecutable="true">
- <startEvent id="applyUser" name="Start" activiti:initiator="${applyUser}"></startEvent>
- <userTask id="jlUser" name="装置经理" activiti:candidateUsers="#{chargePerson}"></userTask>
- <sequenceFlow id="flow1" sourceRef="applyUser" targetRef="jlUser"></sequenceFlow>
- <endEvent id="endevent2" name="End"></endEvent>
- <sequenceFlow id="flow3" sourceRef="jlUser" targetRef="endevent2">
- <conditionExpression xsi:type="tFormalExpression"><![CDATA[${condition == 0}]]></conditionExpression>
- </sequenceFlow>
- <endEvent id="endevent3" name="End"></endEvent>
- <sequenceFlow id="flow4" sourceRef="jlUser" targetRef="endevent3">
- <conditionExpression xsi:type="tFormalExpression"><![CDATA[${condition == 1}]]></conditionExpression>
- </sequenceFlow>
- </process>
- <bpmndi:BPMNDiagram id="BPMNDiagram_pssrMgrConfirm">
- <bpmndi:BPMNPlane bpmnElement="pssrMgrConfirm" id="BPMNPlane_pssrMgrConfirm">
- <bpmndi:BPMNShape bpmnElement="applyUser" id="BPMNShape_applyUser">
- <omgdc:Bounds height="35.0" width="35.0" x="140.0" y="260.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="jlUser" id="BPMNShape_jlUser">
- <omgdc:Bounds height="55.0" width="105.0" x="220.0" y="250.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="endevent2" id="BPMNShape_endevent2">
- <omgdc:Bounds height="35.0" width="35.0" x="370.0" y="260.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="endevent3" id="BPMNShape_endevent3">
- <omgdc:Bounds height="35.0" width="35.0" x="250.0" y="340.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
- <omgdi:waypoint x="175.0" y="277.0"></omgdi:waypoint>
- <omgdi:waypoint x="220.0" y="277.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
- <omgdi:waypoint x="325.0" y="277.0"></omgdi:waypoint>
- <omgdi:waypoint x="370.0" y="277.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
- <omgdi:waypoint x="272.0" y="305.0"></omgdi:waypoint>
- <omgdi:waypoint x="267.0" y="340.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- </bpmndi:BPMNPlane>
- </bpmndi:BPMNDiagram>
- </definitions>
|