lhbg.bpmn 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <process id="lhbg" name="理货变更" isExecutable="true">
  4. <startEvent id="startevent1" name="Start" activiti:initiator="applyUserId"></startEvent>
  5. <userTask id="sljbr" name="受理经办人" activiti:assignee="${applyUserId}">
  6. <extensionElements>
  7. <activiti:taskListener event="create" delegateExpression="${taskVarBean}">
  8. <activiti:field name="varName">
  9. <activiti:string><![CDATA[var_autoComplete]]></activiti:string>
  10. </activiti:field>
  11. <activiti:field name="varValue">
  12. <activiti:string><![CDATA[true]]></activiti:string>
  13. </activiti:field>
  14. </activiti:taskListener>
  15. </extensionElements>
  16. </userTask>
  17. <sequenceFlow id="flow1" sourceRef="startevent1" targetRef="sljbr"></sequenceFlow>
  18. <userTask id="kssc" name="科室审查" activiti:candidateGroups="${role_ks}"></userTask>
  19. <userTask id="fgldsp" name="分管领导审批" activiti:candidateGroups="${role_fgld}"></userTask>
  20. <userTask id="ldpz" name="领导批准" activiti:candidateGroups="${role_ld}"></userTask>
  21. <endEvent id="endevent1" name="End"></endEvent>
  22. <exclusiveGateway id="exclusivegateway16" name="Exclusive Gateway"></exclusiveGateway>
  23. <sequenceFlow id="flow57" sourceRef="sljbr" targetRef="exclusivegateway16"></sequenceFlow>
  24. <sequenceFlow id="flow58" name="通过" sourceRef="exclusivegateway16" targetRef="kssc">
  25. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${auditPass_sljbr}]]></conditionExpression>
  26. </sequenceFlow>
  27. <sequenceFlow id="flow59" name="不通过" sourceRef="exclusivegateway16" targetRef="endevent1">
  28. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!auditPass_sljbr}]]></conditionExpression>
  29. </sequenceFlow>
  30. <exclusiveGateway id="exclusivegateway17" name="Exclusive Gateway"></exclusiveGateway>
  31. <sequenceFlow id="flow60" sourceRef="kssc" targetRef="exclusivegateway17"></sequenceFlow>
  32. <sequenceFlow id="flow61" name="通过" sourceRef="exclusivegateway17" targetRef="fgldsp">
  33. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${auditPass_kssc}]]></conditionExpression>
  34. </sequenceFlow>
  35. <sequenceFlow id="flow62" name="不通过" sourceRef="exclusivegateway17" targetRef="sljbr">
  36. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!auditPass_kssc}]]></conditionExpression>
  37. </sequenceFlow>
  38. <exclusiveGateway id="exclusivegateway18" name="Exclusive Gateway"></exclusiveGateway>
  39. <sequenceFlow id="flow63" sourceRef="fgldsp" targetRef="exclusivegateway18"></sequenceFlow>
  40. <sequenceFlow id="flow64" name="通过" sourceRef="exclusivegateway18" targetRef="ldpz">
  41. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${auditPass_fgldsp}]]></conditionExpression>
  42. </sequenceFlow>
  43. <sequenceFlow id="flow66" name="不通过" sourceRef="exclusivegateway18" targetRef="sljbr">
  44. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!auditPass_fgldsp}]]></conditionExpression>
  45. </sequenceFlow>
  46. <exclusiveGateway id="exclusivegateway19" name="Exclusive Gateway"></exclusiveGateway>
  47. <sequenceFlow id="flow67" sourceRef="ldpz" targetRef="exclusivegateway19"></sequenceFlow>
  48. <sequenceFlow id="flow68" name="通过" sourceRef="exclusivegateway19" targetRef="endevent1">
  49. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${auditPass_ldpz}]]></conditionExpression>
  50. </sequenceFlow>
  51. <sequenceFlow id="flow69" name="不通过" sourceRef="exclusivegateway19" targetRef="sljbr">
  52. <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!auditPass_ldpz}]]></conditionExpression>
  53. </sequenceFlow>
  54. </process>
  55. <bpmndi:BPMNDiagram id="BPMNDiagram_lhbg">
  56. <bpmndi:BPMNPlane bpmnElement="lhbg" id="BPMNPlane_lhbg">
  57. <bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
  58. <omgdc:Bounds height="35.0" width="35.0" x="30.0" y="270.0"></omgdc:Bounds>
  59. </bpmndi:BPMNShape>
  60. <bpmndi:BPMNShape bpmnElement="sljbr" id="BPMNShape_sljbr">
  61. <omgdc:Bounds height="55.0" width="105.0" x="90.0" y="260.0"></omgdc:Bounds>
  62. </bpmndi:BPMNShape>
  63. <bpmndi:BPMNShape bpmnElement="kssc" id="BPMNShape_kssc">
  64. <omgdc:Bounds height="55.0" width="105.0" x="350.0" y="260.0"></omgdc:Bounds>
  65. </bpmndi:BPMNShape>
  66. <bpmndi:BPMNShape bpmnElement="fgldsp" id="BPMNShape_fgldsp">
  67. <omgdc:Bounds height="55.0" width="105.0" x="656.0" y="264.0"></omgdc:Bounds>
  68. </bpmndi:BPMNShape>
  69. <bpmndi:BPMNShape bpmnElement="ldpz" id="BPMNShape_ldpz">
  70. <omgdc:Bounds height="55.0" width="105.0" x="940.0" y="264.0"></omgdc:Bounds>
  71. </bpmndi:BPMNShape>
  72. <bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
  73. <omgdc:Bounds height="35.0" width="35.0" x="980.0" y="600.0"></omgdc:Bounds>
  74. </bpmndi:BPMNShape>
  75. <bpmndi:BPMNShape bpmnElement="exclusivegateway16" id="BPMNShape_exclusivegateway16">
  76. <omgdc:Bounds height="40.0" width="40.0" x="240.0" y="268.0"></omgdc:Bounds>
  77. </bpmndi:BPMNShape>
  78. <bpmndi:BPMNShape bpmnElement="exclusivegateway17" id="BPMNShape_exclusivegateway17">
  79. <omgdc:Bounds height="40.0" width="40.0" x="382.0" y="160.0"></omgdc:Bounds>
  80. </bpmndi:BPMNShape>
  81. <bpmndi:BPMNShape bpmnElement="exclusivegateway18" id="BPMNShape_exclusivegateway18">
  82. <omgdc:Bounds height="40.0" width="40.0" x="806.0" y="272.0"></omgdc:Bounds>
  83. </bpmndi:BPMNShape>
  84. <bpmndi:BPMNShape bpmnElement="exclusivegateway19" id="BPMNShape_exclusivegateway19">
  85. <omgdc:Bounds height="40.0" width="40.0" x="972.0" y="120.0"></omgdc:Bounds>
  86. </bpmndi:BPMNShape>
  87. <bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
  88. <omgdi:waypoint x="65.0" y="287.0"></omgdi:waypoint>
  89. <omgdi:waypoint x="90.0" y="287.0"></omgdi:waypoint>
  90. </bpmndi:BPMNEdge>
  91. <bpmndi:BPMNEdge bpmnElement="flow57" id="BPMNEdge_flow57">
  92. <omgdi:waypoint x="195.0" y="287.0"></omgdi:waypoint>
  93. <omgdi:waypoint x="240.0" y="288.0"></omgdi:waypoint>
  94. </bpmndi:BPMNEdge>
  95. <bpmndi:BPMNEdge bpmnElement="flow58" id="BPMNEdge_flow58">
  96. <omgdi:waypoint x="280.0" y="288.0"></omgdi:waypoint>
  97. <omgdi:waypoint x="350.0" y="287.0"></omgdi:waypoint>
  98. <bpmndi:BPMNLabel>
  99. <omgdc:Bounds height="14.0" width="24.0" x="290.0" y="288.0"></omgdc:Bounds>
  100. </bpmndi:BPMNLabel>
  101. </bpmndi:BPMNEdge>
  102. <bpmndi:BPMNEdge bpmnElement="flow59" id="BPMNEdge_flow59">
  103. <omgdi:waypoint x="260.0" y="308.0"></omgdi:waypoint>
  104. <omgdi:waypoint x="260.0" y="617.0"></omgdi:waypoint>
  105. <omgdi:waypoint x="980.0" y="617.0"></omgdi:waypoint>
  106. <bpmndi:BPMNLabel>
  107. <omgdc:Bounds height="14.0" width="36.0" x="270.0" y="308.0"></omgdc:Bounds>
  108. </bpmndi:BPMNLabel>
  109. </bpmndi:BPMNEdge>
  110. <bpmndi:BPMNEdge bpmnElement="flow60" id="BPMNEdge_flow60">
  111. <omgdi:waypoint x="402.0" y="260.0"></omgdi:waypoint>
  112. <omgdi:waypoint x="402.0" y="200.0"></omgdi:waypoint>
  113. </bpmndi:BPMNEdge>
  114. <bpmndi:BPMNEdge bpmnElement="flow61" id="BPMNEdge_flow61">
  115. <omgdi:waypoint x="422.0" y="180.0"></omgdi:waypoint>
  116. <omgdi:waypoint x="708.0" y="180.0"></omgdi:waypoint>
  117. <omgdi:waypoint x="708.0" y="264.0"></omgdi:waypoint>
  118. <bpmndi:BPMNLabel>
  119. <omgdc:Bounds height="14.0" width="24.0" x="432.0" y="180.0"></omgdc:Bounds>
  120. </bpmndi:BPMNLabel>
  121. </bpmndi:BPMNEdge>
  122. <bpmndi:BPMNEdge bpmnElement="flow62" id="BPMNEdge_flow62">
  123. <omgdi:waypoint x="382.0" y="180.0"></omgdi:waypoint>
  124. <omgdi:waypoint x="142.0" y="180.0"></omgdi:waypoint>
  125. <omgdi:waypoint x="142.0" y="260.0"></omgdi:waypoint>
  126. <bpmndi:BPMNLabel>
  127. <omgdc:Bounds height="14.0" width="36.0" x="281.0" y="180.0"></omgdc:Bounds>
  128. </bpmndi:BPMNLabel>
  129. </bpmndi:BPMNEdge>
  130. <bpmndi:BPMNEdge bpmnElement="flow63" id="BPMNEdge_flow63">
  131. <omgdi:waypoint x="761.0" y="291.0"></omgdi:waypoint>
  132. <omgdi:waypoint x="806.0" y="292.0"></omgdi:waypoint>
  133. </bpmndi:BPMNEdge>
  134. <bpmndi:BPMNEdge bpmnElement="flow64" id="BPMNEdge_flow64">
  135. <omgdi:waypoint x="846.0" y="292.0"></omgdi:waypoint>
  136. <omgdi:waypoint x="940.0" y="291.0"></omgdi:waypoint>
  137. <bpmndi:BPMNLabel>
  138. <omgdc:Bounds height="14.0" width="24.0" x="856.0" y="292.0"></omgdc:Bounds>
  139. </bpmndi:BPMNLabel>
  140. </bpmndi:BPMNEdge>
  141. <bpmndi:BPMNEdge bpmnElement="flow66" id="BPMNEdge_flow66">
  142. <omgdi:waypoint x="826.0" y="312.0"></omgdi:waypoint>
  143. <omgdi:waypoint x="826.0" y="508.0"></omgdi:waypoint>
  144. <omgdi:waypoint x="142.0" y="508.0"></omgdi:waypoint>
  145. <omgdi:waypoint x="142.0" y="315.0"></omgdi:waypoint>
  146. <bpmndi:BPMNLabel>
  147. <omgdc:Bounds height="14.0" width="36.0" x="790.0" y="369.0"></omgdc:Bounds>
  148. </bpmndi:BPMNLabel>
  149. </bpmndi:BPMNEdge>
  150. <bpmndi:BPMNEdge bpmnElement="flow67" id="BPMNEdge_flow67">
  151. <omgdi:waypoint x="992.0" y="264.0"></omgdi:waypoint>
  152. <omgdi:waypoint x="992.0" y="160.0"></omgdi:waypoint>
  153. </bpmndi:BPMNEdge>
  154. <bpmndi:BPMNEdge bpmnElement="flow68" id="BPMNEdge_flow68">
  155. <omgdi:waypoint x="1012.0" y="140.0"></omgdi:waypoint>
  156. <omgdi:waypoint x="1158.0" y="140.0"></omgdi:waypoint>
  157. <omgdi:waypoint x="1159.0" y="617.0"></omgdi:waypoint>
  158. <omgdi:waypoint x="1015.0" y="617.0"></omgdi:waypoint>
  159. <bpmndi:BPMNLabel>
  160. <omgdc:Bounds height="14.0" width="24.0" x="1022.0" y="140.0"></omgdc:Bounds>
  161. </bpmndi:BPMNLabel>
  162. </bpmndi:BPMNEdge>
  163. <bpmndi:BPMNEdge bpmnElement="flow69" id="BPMNEdge_flow69">
  164. <omgdi:waypoint x="972.0" y="140.0"></omgdi:waypoint>
  165. <omgdi:waypoint x="142.0" y="139.0"></omgdi:waypoint>
  166. <omgdi:waypoint x="142.0" y="260.0"></omgdi:waypoint>
  167. <bpmndi:BPMNLabel>
  168. <omgdc:Bounds height="14.0" width="36.0" x="858.0" y="141.0"></omgdc:Bounds>
  169. </bpmndi:BPMNLabel>
  170. </bpmndi:BPMNEdge>
  171. </bpmndi:BPMNPlane>
  172. </bpmndi:BPMNDiagram>
  173. </definitions>