@nanobpm/nano-workforce 0.187.4 → 0.187.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/SPEC.md +93 -7
- package/app/convergeGate.test.ts +161 -4
- package/app/convergenceEscalationGuard.test.ts +3 -2
- package/app/currentHead.ts +60 -0
- package/app/github.test.ts +189 -1
- package/app/github.ts +134 -27
- package/app/persist-escalation.test.ts +7 -5
- package/app/persist-round.test.ts +178 -11
- package/app/pollReviewsStale.test.ts +187 -0
- package/app/pullRequestReadModel.test.ts +1 -1
- package/app/reviewWait.test.ts +33 -0
- package/app/reviewWait.ts +21 -0
- package/app/roundProgress.test.ts +755 -33
- package/app/roundProgress.ts +144 -0
- package/app/roundResultDefault.test.ts +10 -8
- package/app/service.test.ts +14 -0
- package/app/service.ts +72 -2
- package/db/migrations/102_rounds_process_instance_key.sql +28 -0
- package/db/migrations/103_pr_progress_idempotency.sql +29 -0
- package/db/migrations/104_pull_requests_read_model_progress_idempotency.sql +55 -0
- package/e2e/convergence-escalation.e2e.ts +5 -4
- package/e2e/feature-run.e2e.ts +6 -1
- package/e2e/plan-fanout-sla.e2e.ts +5 -2
- package/e2e/plan-fanout.e2e.ts +6 -2
- package/e2e/support/time.ts +34 -0
- package/nano.app.json +4 -0
- package/package.json +1 -1
- package/resources/processes/convergence-loop.bpmn +238 -148
- package/resources/prompts/review-round.md +10 -0
- package/test/derivation-parity/README.md +3 -3
- package/test/derivation-parity/derivation-parity.test.ts +9 -3
- package/test/derivation-parity/flows.ts +4 -4
- package/workers/capture-head/worker.test.ts +77 -0
- package/workers/capture-head/worker.ts +64 -0
- package/workers/converge-gate/worker.ts +48 -21
- package/workers/persist-escalation/worker.ts +4 -0
- package/workers/persist-round/worker.ts +75 -9
- package/workers/progress-check/worker.ts +359 -38
|
@@ -38,9 +38,24 @@
|
|
|
38
38
|
<nano:extend name="status" type="string" optional="true" />
|
|
39
39
|
<nano:extend name="repo" type="string" optional="true" />
|
|
40
40
|
<nano:extend name="prNumber" type="integer" optional="true" />
|
|
41
|
+
<nano:extend name="round" type="integer" optional="true" />
|
|
42
|
+
<nano:extend name="huskRetries" type="integer" optional="true" />
|
|
43
|
+
<nano:extend name="roundEntryHead" type="string" optional="true" />
|
|
44
|
+
</nano:shape>
|
|
45
|
+
<nano:shape id="PrCaptureHeadIn" name="Capture round-entry head — input">
|
|
46
|
+
<nano:extend name="prKey" type="string" />
|
|
47
|
+
<nano:extend name="repo" type="string" optional="true" />
|
|
48
|
+
<nano:extend name="prNumber" type="integer" optional="true" />
|
|
49
|
+
</nano:shape>
|
|
50
|
+
<nano:shape id="PrCaptureHeadOut" name="Capture round-entry head — result">
|
|
51
|
+
<nano:extend name="roundEntryHead" type="string" optional="true" />
|
|
41
52
|
</nano:shape>
|
|
42
53
|
<nano:shape id="PrProgressCheckOut" name="Check progress — result">
|
|
43
54
|
<nano:extend name="progressed" type="boolean" />
|
|
55
|
+
<nano:extend name="huskRetries" type="integer" />
|
|
56
|
+
<nano:extend name="huskRetry" type="boolean" optional="true" />
|
|
57
|
+
<nano:extend name="noProgressReason" type="string" optional="true" />
|
|
58
|
+
<nano:extend name="noProgressQuestion" type="string" optional="true" />
|
|
44
59
|
</nano:shape>
|
|
45
60
|
<nano:shape id="PrConvergeGateIn" name="Converge gate — input">
|
|
46
61
|
<nano:extend name="prKey" type="string" />
|
|
@@ -50,6 +65,7 @@
|
|
|
50
65
|
<nano:shape id="PrConvergeGateOut" name="Converge gate — result">
|
|
51
66
|
<nano:extend name="convergeBlocked" type="boolean" />
|
|
52
67
|
<nano:extend name="convergeBlockReason" type="string" optional="true" />
|
|
68
|
+
<nano:extend name="reviewStale" type="boolean" optional="true" />
|
|
53
69
|
</nano:shape>
|
|
54
70
|
<nano:shape id="EscalationIn" name="Record escalation — input">
|
|
55
71
|
<nano:extend name="prKey" type="string" />
|
|
@@ -114,10 +130,22 @@
|
|
|
114
130
|
<zeebe:output source="=false" target="scopePending" />
|
|
115
131
|
</zeebe:ioMapping>
|
|
116
132
|
</bpmn:extensionElements>
|
|
133
|
+
<bpmn:incoming>f_capture</bpmn:incoming>
|
|
134
|
+
<bpmn:outgoing>f_toStatus</bpmn:outgoing>
|
|
135
|
+
</bpmn:serviceTask>
|
|
136
|
+
<bpmn:serviceTask id="capture-head" name="Capture round-entry head">
|
|
137
|
+
<bpmn:extensionElements>
|
|
138
|
+
<zeebe:taskDefinition type="pr.capture-head" />
|
|
139
|
+
<zeebe:properties>
|
|
140
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="PrCaptureHeadIn" />
|
|
141
|
+
<zeebe:property name="io.nanobpm.dataEnvelope.out" value="PrCaptureHeadOut" />
|
|
142
|
+
</zeebe:properties>
|
|
143
|
+
</bpmn:extensionElements>
|
|
117
144
|
<bpmn:incoming>f_start</bpmn:incoming>
|
|
118
145
|
<bpmn:incoming>f_reviewLoop</bpmn:incoming>
|
|
119
146
|
<bpmn:incoming>f_answerLoop</bpmn:incoming>
|
|
120
|
-
<bpmn:
|
|
147
|
+
<bpmn:incoming>f_huskRetry</bpmn:incoming>
|
|
148
|
+
<bpmn:outgoing>f_capture</bpmn:outgoing>
|
|
121
149
|
</bpmn:serviceTask>
|
|
122
150
|
<bpmn:exclusiveGateway id="gw-status" name="status?" default="f_addressed">
|
|
123
151
|
<bpmn:incoming>f_toStatus</bpmn:incoming>
|
|
@@ -127,9 +155,7 @@
|
|
|
127
155
|
<bpmn:outgoing>f_escalate</bpmn:outgoing>
|
|
128
156
|
</bpmn:exclusiveGateway>
|
|
129
157
|
<bpmn:exclusiveGateway id="gw-guard" name="rounds left?" default="f_guardOk">
|
|
130
|
-
<bpmn:incoming>
|
|
131
|
-
<bpmn:incoming>f_waiting</bpmn:incoming>
|
|
132
|
-
<bpmn:incoming>f_escReenter</bpmn:incoming>
|
|
158
|
+
<bpmn:incoming>f_progressOk</bpmn:incoming>
|
|
133
159
|
<bpmn:outgoing>f_guardMax</bpmn:outgoing>
|
|
134
160
|
<bpmn:outgoing>f_guardOk</bpmn:outgoing>
|
|
135
161
|
</bpmn:exclusiveGateway>
|
|
@@ -140,7 +166,10 @@
|
|
|
140
166
|
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="PrPersistRoundIn" />
|
|
141
167
|
</zeebe:properties>
|
|
142
168
|
</bpmn:extensionElements>
|
|
143
|
-
<bpmn:incoming>
|
|
169
|
+
<bpmn:incoming>f_addressed</bpmn:incoming>
|
|
170
|
+
<bpmn:incoming>f_waiting</bpmn:incoming>
|
|
171
|
+
<bpmn:incoming>f_escReenter</bpmn:incoming>
|
|
172
|
+
<bpmn:incoming>f_convergeStale</bpmn:incoming>
|
|
144
173
|
<bpmn:outgoing>f_roundWait</bpmn:outgoing>
|
|
145
174
|
</bpmn:serviceTask>
|
|
146
175
|
<bpmn:serviceTask id="check-progress" name="Check progress">
|
|
@@ -159,6 +188,11 @@
|
|
|
159
188
|
<bpmn:outgoing>f_noProgress</bpmn:outgoing>
|
|
160
189
|
<bpmn:outgoing>f_progressOk</bpmn:outgoing>
|
|
161
190
|
</bpmn:exclusiveGateway>
|
|
191
|
+
<bpmn:exclusiveGateway id="gw-husk" name="husk — auto-retry?" default="f_huskEscalate">
|
|
192
|
+
<bpmn:incoming>f_noProgress</bpmn:incoming>
|
|
193
|
+
<bpmn:outgoing>f_huskRetry</bpmn:outgoing>
|
|
194
|
+
<bpmn:outgoing>f_huskEscalate</bpmn:outgoing>
|
|
195
|
+
</bpmn:exclusiveGateway>
|
|
162
196
|
<bpmn:serviceTask id="persist-escalation-noprogress" name="Escalate: no progress">
|
|
163
197
|
<bpmn:extensionElements>
|
|
164
198
|
<zeebe:taskDefinition type="pr.persist-escalation" />
|
|
@@ -169,14 +203,14 @@
|
|
|
169
203
|
<zeebe:ioMapping>
|
|
170
204
|
<zeebe:input source="="blocked"" target="status" />
|
|
171
205
|
<zeebe:input source="=false" target="recordRound" />
|
|
172
|
-
<zeebe:input source="
|
|
206
|
+
<zeebe:input source="=if (noProgressQuestion != null and trim(noProgressQuestion) != "") then noProgressQuestion else "Round " + string(round) + " reported the review comments were addressed, but the PR head did not advance (no commit was pushed), so another review round would loop on identical code. A human must decide how to proceed (reply to resume the loop)."" target="question" />
|
|
173
207
|
</zeebe:ioMapping>
|
|
174
208
|
</bpmn:extensionElements>
|
|
175
|
-
<bpmn:incoming>
|
|
209
|
+
<bpmn:incoming>f_huskEscalate</bpmn:incoming>
|
|
176
210
|
<bpmn:outgoing>f_noprogressGate</bpmn:outgoing>
|
|
177
211
|
</bpmn:serviceTask>
|
|
178
212
|
<bpmn:eventBasedGateway id="gw-review-wait" name="review ready or timeout?">
|
|
179
|
-
<bpmn:incoming>
|
|
213
|
+
<bpmn:incoming>f_guardOk</bpmn:incoming>
|
|
180
214
|
<bpmn:outgoing>f_toReviewWait</bpmn:outgoing>
|
|
181
215
|
<bpmn:outgoing>f_toReviewTimeout</bpmn:outgoing>
|
|
182
216
|
</bpmn:eventBasedGateway>
|
|
@@ -184,6 +218,7 @@
|
|
|
184
218
|
<bpmn:extensionElements>
|
|
185
219
|
<zeebe:ioMapping>
|
|
186
220
|
<zeebe:output source="=round + 1" target="round" />
|
|
221
|
+
<zeebe:output source="=false" target="reviewStale" />
|
|
187
222
|
</zeebe:ioMapping>
|
|
188
223
|
</bpmn:extensionElements>
|
|
189
224
|
<bpmn:incoming>f_toReviewWait</bpmn:incoming>
|
|
@@ -243,6 +278,7 @@
|
|
|
243
278
|
</zeebe:properties>
|
|
244
279
|
<zeebe:ioMapping>
|
|
245
280
|
<zeebe:input source="="blocked"" target="status" />
|
|
281
|
+
<zeebe:input source="=false" target="recordRound" />
|
|
246
282
|
<zeebe:input source="="Not converged after " + string(maxRounds) + " rounds. A human must decide how to proceed."" target="question" />
|
|
247
283
|
</zeebe:ioMapping>
|
|
248
284
|
</bpmn:extensionElements>
|
|
@@ -271,6 +307,8 @@
|
|
|
271
307
|
<zeebe:input source="=prKey" target="prKey" />
|
|
272
308
|
<zeebe:input source="=answer" target="answer" />
|
|
273
309
|
<zeebe:output source="=(if scopePending = true then answer else scopeAnswer)" target="scopeAnswer" />
|
|
310
|
+
<zeebe:output source="=0" target="huskRetries" />
|
|
311
|
+
<zeebe:output source="=false" target="reviewStale" />
|
|
274
312
|
</zeebe:ioMapping>
|
|
275
313
|
</bpmn:extensionElements>
|
|
276
314
|
<bpmn:incoming>f_answerRecord</bpmn:incoming>
|
|
@@ -300,6 +338,7 @@
|
|
|
300
338
|
<bpmn:exclusiveGateway id="gw-converge-gate" name="comments addressed?" default="f_convergeOk">
|
|
301
339
|
<bpmn:incoming>f_toConvergeGate</bpmn:incoming>
|
|
302
340
|
<bpmn:outgoing>f_convergeBlocked</bpmn:outgoing>
|
|
341
|
+
<bpmn:outgoing>f_convergeStale</bpmn:outgoing>
|
|
303
342
|
<bpmn:outgoing>f_convergeOk</bpmn:outgoing>
|
|
304
343
|
</bpmn:exclusiveGateway>
|
|
305
344
|
<bpmn:serviceTask id="persist-escalation-blockedcomments" name="Escalate: unaddressed comments">
|
|
@@ -361,7 +400,8 @@
|
|
|
361
400
|
<bpmn:endEvent id="End" name="Converged">
|
|
362
401
|
<bpmn:incoming>f_finalize</bpmn:incoming>
|
|
363
402
|
</bpmn:endEvent>
|
|
364
|
-
<bpmn:sequenceFlow id="f_start" sourceRef="Start" targetRef="
|
|
403
|
+
<bpmn:sequenceFlow id="f_start" sourceRef="Start" targetRef="capture-head" />
|
|
404
|
+
<bpmn:sequenceFlow id="f_capture" sourceRef="capture-head" targetRef="review-round" />
|
|
365
405
|
<bpmn:sequenceFlow id="f_toStatus" sourceRef="review-round" targetRef="gw-status" />
|
|
366
406
|
<bpmn:sequenceFlow id="f_converged" name="converged" sourceRef="gw-status" targetRef="check-converge">
|
|
367
407
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=status = "converged"</bpmn:conditionExpression>
|
|
@@ -370,6 +410,9 @@
|
|
|
370
410
|
<bpmn:sequenceFlow id="f_convergeBlocked" name="unaddressed comments" sourceRef="gw-converge-gate" targetRef="persist-escalation-blockedcomments">
|
|
371
411
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=convergeBlocked = true</bpmn:conditionExpression>
|
|
372
412
|
</bpmn:sequenceFlow>
|
|
413
|
+
<bpmn:sequenceFlow id="f_convergeStale" name="review stale" sourceRef="gw-converge-gate" targetRef="persist-round">
|
|
414
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=reviewStale = true</bpmn:conditionExpression>
|
|
415
|
+
</bpmn:sequenceFlow>
|
|
373
416
|
<bpmn:sequenceFlow id="f_convergeOk" name="addressed / default" sourceRef="gw-converge-gate" targetRef="classify-scope" />
|
|
374
417
|
<bpmn:sequenceFlow id="f_toScopeGate" sourceRef="classify-scope" targetRef="gw-scope-gate" />
|
|
375
418
|
<bpmn:sequenceFlow id="f_scopeBlocked" name="scope under-delivered" sourceRef="gw-scope-gate" targetRef="persist-escalation-scope">
|
|
@@ -378,37 +421,41 @@
|
|
|
378
421
|
<bpmn:sequenceFlow id="f_scopeOk" name="scope delivered / default" sourceRef="gw-scope-gate" targetRef="persist-converged" />
|
|
379
422
|
<bpmn:sequenceFlow id="f_scopeEscGate" sourceRef="persist-escalation-scope" targetRef="gw-escalated" />
|
|
380
423
|
<bpmn:sequenceFlow id="f_blockedGate" sourceRef="persist-escalation-blockedcomments" targetRef="gw-escalated" />
|
|
381
|
-
<bpmn:sequenceFlow id="f_addressed" name="addressed / default" sourceRef="gw-status" targetRef="
|
|
382
|
-
<bpmn:sequenceFlow id="f_waiting" name="waiting" sourceRef="gw-status" targetRef="
|
|
424
|
+
<bpmn:sequenceFlow id="f_addressed" name="addressed / default" sourceRef="gw-status" targetRef="persist-round" />
|
|
425
|
+
<bpmn:sequenceFlow id="f_waiting" name="waiting" sourceRef="gw-status" targetRef="persist-round">
|
|
383
426
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=status = "waiting"</bpmn:conditionExpression>
|
|
384
427
|
</bpmn:sequenceFlow>
|
|
385
428
|
<bpmn:sequenceFlow id="f_escalate" name="needs_input / blocked" sourceRef="gw-status" targetRef="persist-escalation">
|
|
386
429
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=(status = "needs_input" or status = "blocked") and question != null and trim(question) != ""</bpmn:conditionExpression>
|
|
387
430
|
</bpmn:sequenceFlow>
|
|
388
431
|
<bpmn:sequenceFlow id="f_guardMax" name="max rounds" sourceRef="gw-guard" targetRef="persist-escalation-maxrounds">
|
|
389
|
-
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=round >= maxRounds</bpmn:conditionExpression>
|
|
432
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=round >= maxRounds and reviewStale != true</bpmn:conditionExpression>
|
|
390
433
|
</bpmn:sequenceFlow>
|
|
391
|
-
<bpmn:sequenceFlow id="f_guardOk" name="continue" sourceRef="gw-guard" targetRef="
|
|
434
|
+
<bpmn:sequenceFlow id="f_guardOk" name="continue" sourceRef="gw-guard" targetRef="gw-review-wait" />
|
|
392
435
|
<bpmn:sequenceFlow id="f_roundWait" sourceRef="persist-round" targetRef="check-progress" />
|
|
393
436
|
<bpmn:sequenceFlow id="f_checkGate" sourceRef="check-progress" targetRef="gw-progress" />
|
|
394
|
-
<bpmn:sequenceFlow id="f_noProgress" name="no progress" sourceRef="gw-progress" targetRef="
|
|
437
|
+
<bpmn:sequenceFlow id="f_noProgress" name="no progress" sourceRef="gw-progress" targetRef="gw-husk">
|
|
395
438
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=progressed = false</bpmn:conditionExpression>
|
|
396
439
|
</bpmn:sequenceFlow>
|
|
397
|
-
<bpmn:sequenceFlow id="
|
|
440
|
+
<bpmn:sequenceFlow id="f_huskRetry" name="husk — retry same round" sourceRef="gw-husk" targetRef="capture-head">
|
|
441
|
+
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=huskRetry = true</bpmn:conditionExpression>
|
|
442
|
+
</bpmn:sequenceFlow>
|
|
443
|
+
<bpmn:sequenceFlow id="f_huskEscalate" name="escalate" sourceRef="gw-husk" targetRef="persist-escalation-noprogress" />
|
|
444
|
+
<bpmn:sequenceFlow id="f_progressOk" name="progress / default" sourceRef="gw-progress" targetRef="gw-guard" />
|
|
398
445
|
<bpmn:sequenceFlow id="f_noprogressGate" sourceRef="persist-escalation-noprogress" targetRef="gw-escalated" />
|
|
399
446
|
<bpmn:sequenceFlow id="f_toReviewWait" sourceRef="gw-review-wait" targetRef="wait-review" />
|
|
400
447
|
<bpmn:sequenceFlow id="f_toReviewTimeout" sourceRef="gw-review-wait" targetRef="wait-review-timeout" />
|
|
401
|
-
<bpmn:sequenceFlow id="f_reviewLoop" sourceRef="wait-review" targetRef="
|
|
448
|
+
<bpmn:sequenceFlow id="f_reviewLoop" sourceRef="wait-review" targetRef="capture-head" />
|
|
402
449
|
<bpmn:sequenceFlow id="f_reviewStalled" sourceRef="wait-review-timeout" targetRef="persist-review-stalled" />
|
|
403
450
|
<bpmn:sequenceFlow id="f_stalledGate" sourceRef="persist-review-stalled" targetRef="gw-escalated" />
|
|
404
451
|
<bpmn:sequenceFlow id="f_escGate" sourceRef="persist-escalation" targetRef="gw-escalated" />
|
|
405
452
|
<bpmn:sequenceFlow id="f_escWait" sourceRef="gw-escalated" targetRef="wait-answer">
|
|
406
453
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=escalated = true</bpmn:conditionExpression>
|
|
407
454
|
</bpmn:sequenceFlow>
|
|
408
|
-
<bpmn:sequenceFlow id="f_escReenter" name="no escalation opened" sourceRef="gw-escalated" targetRef="
|
|
455
|
+
<bpmn:sequenceFlow id="f_escReenter" name="no escalation opened" sourceRef="gw-escalated" targetRef="persist-round" />
|
|
409
456
|
<bpmn:sequenceFlow id="f_maxGate" sourceRef="persist-escalation-maxrounds" targetRef="gw-escalated" />
|
|
410
457
|
<bpmn:sequenceFlow id="f_answerRecord" sourceRef="wait-answer" targetRef="record-answer" />
|
|
411
|
-
<bpmn:sequenceFlow id="f_answerLoop" sourceRef="record-answer" targetRef="
|
|
458
|
+
<bpmn:sequenceFlow id="f_answerLoop" sourceRef="record-answer" targetRef="capture-head" />
|
|
412
459
|
<bpmn:sequenceFlow id="f_finalize" sourceRef="persist-converged" targetRef="End" />
|
|
413
460
|
</bpmn:process>
|
|
414
461
|
<bpmndi:BPMNDiagram id="BPMNDiagram_convergence-loop">
|
|
@@ -420,298 +467,341 @@
|
|
|
420
467
|
</bpmndi:BPMNLabel>
|
|
421
468
|
</bpmndi:BPMNShape>
|
|
422
469
|
<bpmndi:BPMNShape id="BPMNShape_review-round" bpmnElement="review-round">
|
|
470
|
+
<dc:Bounds x="416" y="80" width="100" height="80" />
|
|
471
|
+
</bpmndi:BPMNShape>
|
|
472
|
+
<bpmndi:BPMNShape id="BPMNShape_capture-head" bpmnElement="capture-head">
|
|
423
473
|
<dc:Bounds x="216" y="80" width="100" height="80" />
|
|
424
474
|
</bpmndi:BPMNShape>
|
|
425
475
|
<bpmndi:BPMNShape id="BPMNShape_gw-status" bpmnElement="gw-status" isMarkerVisible="true">
|
|
426
|
-
<dc:Bounds x="
|
|
476
|
+
<dc:Bounds x="616" y="95" width="50" height="50" />
|
|
427
477
|
<bpmndi:BPMNLabel>
|
|
428
|
-
<dc:Bounds x="
|
|
478
|
+
<dc:Bounds x="615" y="76" width="53" height="14" />
|
|
429
479
|
</bpmndi:BPMNLabel>
|
|
430
480
|
</bpmndi:BPMNShape>
|
|
431
481
|
<bpmndi:BPMNShape id="BPMNShape_gw-guard" bpmnElement="gw-guard" isMarkerVisible="true">
|
|
432
|
-
<dc:Bounds x="
|
|
482
|
+
<dc:Bounds x="1716" y="575" width="50" height="50" />
|
|
433
483
|
<bpmndi:BPMNLabel>
|
|
434
|
-
<dc:Bounds x="
|
|
484
|
+
<dc:Bounds x="1699" y="556" width="85" height="14" />
|
|
435
485
|
</bpmndi:BPMNLabel>
|
|
436
486
|
</bpmndi:BPMNShape>
|
|
437
487
|
<bpmndi:BPMNShape id="BPMNShape_persist-round" bpmnElement="persist-round">
|
|
438
|
-
<dc:Bounds x="
|
|
488
|
+
<dc:Bounds x="1116" y="560" width="100" height="80" />
|
|
439
489
|
</bpmndi:BPMNShape>
|
|
440
490
|
<bpmndi:BPMNShape id="BPMNShape_check-progress" bpmnElement="check-progress">
|
|
441
|
-
<dc:Bounds x="
|
|
491
|
+
<dc:Bounds x="1316" y="560" width="100" height="80" />
|
|
442
492
|
</bpmndi:BPMNShape>
|
|
443
493
|
<bpmndi:BPMNShape id="BPMNShape_gw-progress" bpmnElement="gw-progress" isMarkerVisible="true">
|
|
444
|
-
<dc:Bounds x="
|
|
494
|
+
<dc:Bounds x="1541" y="575" width="50" height="50" />
|
|
495
|
+
<bpmndi:BPMNLabel>
|
|
496
|
+
<dc:Bounds x="1536" y="542" width="60" height="28" />
|
|
497
|
+
</bpmndi:BPMNLabel>
|
|
498
|
+
</bpmndi:BPMNShape>
|
|
499
|
+
<bpmndi:BPMNShape id="BPMNShape_gw-husk" bpmnElement="gw-husk" isMarkerVisible="true">
|
|
500
|
+
<dc:Bounds x="1716" y="1055" width="50" height="50" />
|
|
445
501
|
<bpmndi:BPMNLabel>
|
|
446
|
-
<dc:Bounds x="
|
|
502
|
+
<dc:Bounds x="1701" y="1022" width="81" height="28" />
|
|
447
503
|
</bpmndi:BPMNLabel>
|
|
448
504
|
</bpmndi:BPMNShape>
|
|
449
505
|
<bpmndi:BPMNShape id="BPMNShape_persist-escalation-noprogress" bpmnElement="persist-escalation-noprogress">
|
|
450
|
-
<dc:Bounds x="
|
|
506
|
+
<dc:Bounds x="1866" y="1040" width="100" height="80" />
|
|
451
507
|
</bpmndi:BPMNShape>
|
|
452
508
|
<bpmndi:BPMNShape id="BPMNShape_gw-review-wait" bpmnElement="gw-review-wait" isMarkerVisible="true">
|
|
453
|
-
<dc:Bounds x="
|
|
509
|
+
<dc:Bounds x="1891" y="575" width="50" height="50" />
|
|
454
510
|
<bpmndi:BPMNLabel>
|
|
455
|
-
<dc:Bounds x="
|
|
511
|
+
<dc:Bounds x="1872" y="542" width="88" height="28" />
|
|
456
512
|
</bpmndi:BPMNLabel>
|
|
457
513
|
</bpmndi:BPMNShape>
|
|
458
514
|
<bpmndi:BPMNShape id="BPMNShape_wait-review" bpmnElement="wait-review">
|
|
459
|
-
<dc:Bounds x="
|
|
515
|
+
<dc:Bounds x="2066" y="582" width="36" height="36" />
|
|
460
516
|
<bpmndi:BPMNLabel>
|
|
461
|
-
<dc:Bounds x="
|
|
517
|
+
<dc:Bounds x="2040" y="549" width="88" height="28" />
|
|
462
518
|
</bpmndi:BPMNLabel>
|
|
463
519
|
</bpmndi:BPMNShape>
|
|
464
520
|
<bpmndi:BPMNShape id="BPMNShape_wait-review-timeout" bpmnElement="wait-review-timeout">
|
|
465
|
-
<dc:Bounds x="
|
|
521
|
+
<dc:Bounds x="2066" y="742" width="36" height="36" />
|
|
466
522
|
<bpmndi:BPMNLabel>
|
|
467
|
-
<dc:Bounds x="
|
|
523
|
+
<dc:Bounds x="2056" y="783" width="56" height="42" />
|
|
468
524
|
</bpmndi:BPMNLabel>
|
|
469
525
|
</bpmndi:BPMNShape>
|
|
470
526
|
<bpmndi:BPMNShape id="BPMNShape_persist-review-stalled" bpmnElement="persist-review-stalled">
|
|
471
|
-
<dc:Bounds x="
|
|
527
|
+
<dc:Bounds x="2202" y="720" width="100" height="80" />
|
|
472
528
|
</bpmndi:BPMNShape>
|
|
473
529
|
<bpmndi:BPMNShape id="BPMNShape_persist-escalation" bpmnElement="persist-escalation">
|
|
474
|
-
<dc:Bounds x="
|
|
530
|
+
<dc:Bounds x="766" y="1200" width="100" height="80" />
|
|
475
531
|
</bpmndi:BPMNShape>
|
|
476
532
|
<bpmndi:BPMNShape id="BPMNShape_gw-escalated" bpmnElement="gw-escalated" isMarkerVisible="true">
|
|
477
|
-
<dc:Bounds x="
|
|
533
|
+
<dc:Bounds x="2402" y="255" width="50" height="50" />
|
|
478
534
|
<bpmndi:BPMNLabel>
|
|
479
|
-
<dc:Bounds x="
|
|
535
|
+
<dc:Bounds x="2390" y="222" width="74" height="28" />
|
|
480
536
|
</bpmndi:BPMNLabel>
|
|
481
537
|
</bpmndi:BPMNShape>
|
|
482
538
|
<bpmndi:BPMNShape id="BPMNShape_persist-escalation-maxrounds" bpmnElement="persist-escalation-maxrounds">
|
|
483
|
-
<dc:Bounds x="
|
|
539
|
+
<dc:Bounds x="1866" y="880" width="100" height="80" />
|
|
484
540
|
</bpmndi:BPMNShape>
|
|
485
541
|
<bpmndi:BPMNShape id="BPMNShape_wait-answer" bpmnElement="wait-answer">
|
|
486
|
-
<dc:Bounds x="
|
|
542
|
+
<dc:Bounds x="2552" y="240" width="100" height="80" />
|
|
487
543
|
</bpmndi:BPMNShape>
|
|
488
544
|
<bpmndi:BPMNShape id="BPMNShape_record-answer" bpmnElement="record-answer">
|
|
489
|
-
<dc:Bounds x="
|
|
545
|
+
<dc:Bounds x="2752" y="240" width="100" height="80" />
|
|
490
546
|
</bpmndi:BPMNShape>
|
|
491
547
|
<bpmndi:BPMNShape id="BPMNShape_persist-converged" bpmnElement="persist-converged">
|
|
492
|
-
<dc:Bounds x="
|
|
548
|
+
<dc:Bounds x="1516" y="80" width="100" height="80" />
|
|
493
549
|
</bpmndi:BPMNShape>
|
|
494
550
|
<bpmndi:BPMNShape id="BPMNShape_check-converge" bpmnElement="check-converge">
|
|
495
|
-
<dc:Bounds x="
|
|
551
|
+
<dc:Bounds x="766" y="80" width="100" height="80" />
|
|
496
552
|
</bpmndi:BPMNShape>
|
|
497
553
|
<bpmndi:BPMNShape id="BPMNShape_gw-converge-gate" bpmnElement="gw-converge-gate" isMarkerVisible="true">
|
|
498
|
-
<dc:Bounds x="
|
|
554
|
+
<dc:Bounds x="966" y="95" width="50" height="50" />
|
|
499
555
|
<bpmndi:BPMNLabel>
|
|
500
|
-
<dc:Bounds x="
|
|
556
|
+
<dc:Bounds x="954" y="62" width="74" height="28" />
|
|
501
557
|
</bpmndi:BPMNLabel>
|
|
502
558
|
</bpmndi:BPMNShape>
|
|
503
559
|
<bpmndi:BPMNShape id="BPMNShape_persist-escalation-blockedcomments" bpmnElement="persist-escalation-blockedcomments">
|
|
504
|
-
<dc:Bounds x="
|
|
560
|
+
<dc:Bounds x="1116" y="400" width="100" height="80" />
|
|
505
561
|
</bpmndi:BPMNShape>
|
|
506
562
|
<bpmndi:BPMNShape id="BPMNShape_classify-scope" bpmnElement="classify-scope">
|
|
507
|
-
<dc:Bounds x="
|
|
563
|
+
<dc:Bounds x="1116" y="80" width="100" height="80" />
|
|
508
564
|
</bpmndi:BPMNShape>
|
|
509
565
|
<bpmndi:BPMNShape id="BPMNShape_gw-scope-gate" bpmnElement="gw-scope-gate" isMarkerVisible="true">
|
|
510
|
-
<dc:Bounds x="
|
|
566
|
+
<dc:Bounds x="1341" y="95" width="50" height="50" />
|
|
511
567
|
<bpmndi:BPMNLabel>
|
|
512
|
-
<dc:Bounds x="
|
|
568
|
+
<dc:Bounds x="1329" y="62" width="74" height="28" />
|
|
513
569
|
</bpmndi:BPMNLabel>
|
|
514
570
|
</bpmndi:BPMNShape>
|
|
515
571
|
<bpmndi:BPMNShape id="BPMNShape_persist-escalation-scope" bpmnElement="persist-escalation-scope">
|
|
516
|
-
<dc:Bounds x="
|
|
572
|
+
<dc:Bounds x="1516" y="240" width="100" height="80" />
|
|
517
573
|
</bpmndi:BPMNShape>
|
|
518
574
|
<bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
|
|
519
|
-
<dc:Bounds x="
|
|
575
|
+
<dc:Bounds x="1723" y="102" width="36" height="36" />
|
|
520
576
|
<bpmndi:BPMNLabel>
|
|
521
|
-
<dc:Bounds x="
|
|
577
|
+
<dc:Bounds x="1707" y="143" width="69" height="14" />
|
|
522
578
|
</bpmndi:BPMNLabel>
|
|
523
579
|
</bpmndi:BPMNShape>
|
|
524
580
|
<bpmndi:BPMNEdge id="BPMNEdge_f_start" bpmnElement="f_start">
|
|
525
581
|
<di:waypoint x="116" y="120" />
|
|
526
582
|
<di:waypoint x="216" y="120" />
|
|
527
583
|
</bpmndi:BPMNEdge>
|
|
528
|
-
<bpmndi:BPMNEdge id="
|
|
584
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_capture" bpmnElement="f_capture">
|
|
529
585
|
<di:waypoint x="316" y="120" />
|
|
530
586
|
<di:waypoint x="416" y="120" />
|
|
531
587
|
</bpmndi:BPMNEdge>
|
|
588
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_toStatus" bpmnElement="f_toStatus">
|
|
589
|
+
<di:waypoint x="516" y="120" />
|
|
590
|
+
<di:waypoint x="616" y="120" />
|
|
591
|
+
</bpmndi:BPMNEdge>
|
|
532
592
|
<bpmndi:BPMNEdge id="BPMNEdge_f_converged" bpmnElement="f_converged">
|
|
533
|
-
<di:waypoint x="
|
|
534
|
-
<di:waypoint x="
|
|
593
|
+
<di:waypoint x="666" y="120" />
|
|
594
|
+
<di:waypoint x="766" y="120" />
|
|
535
595
|
<bpmndi:BPMNLabel>
|
|
536
|
-
<dc:Bounds x="
|
|
596
|
+
<dc:Bounds x="683" y="98" width="67" height="14" />
|
|
537
597
|
</bpmndi:BPMNLabel>
|
|
538
598
|
</bpmndi:BPMNEdge>
|
|
539
599
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toConvergeGate" bpmnElement="f_toConvergeGate">
|
|
540
|
-
<di:waypoint x="
|
|
541
|
-
<di:waypoint x="
|
|
600
|
+
<di:waypoint x="866" y="120" />
|
|
601
|
+
<di:waypoint x="966" y="120" />
|
|
542
602
|
</bpmndi:BPMNEdge>
|
|
543
603
|
<bpmndi:BPMNEdge id="BPMNEdge_f_convergeOk" bpmnElement="f_convergeOk">
|
|
544
|
-
<di:waypoint x="
|
|
545
|
-
<di:waypoint x="
|
|
604
|
+
<di:waypoint x="1016" y="120" />
|
|
605
|
+
<di:waypoint x="1116" y="120" />
|
|
546
606
|
<bpmndi:BPMNLabel>
|
|
547
|
-
<dc:Bounds x="
|
|
607
|
+
<dc:Bounds x="1027" y="125" width="78" height="28" />
|
|
548
608
|
</bpmndi:BPMNLabel>
|
|
549
609
|
</bpmndi:BPMNEdge>
|
|
550
610
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toScopeGate" bpmnElement="f_toScopeGate">
|
|
551
|
-
<di:waypoint x="
|
|
552
|
-
<di:waypoint x="
|
|
611
|
+
<di:waypoint x="1216" y="120" />
|
|
612
|
+
<di:waypoint x="1341" y="120" />
|
|
553
613
|
</bpmndi:BPMNEdge>
|
|
554
614
|
<bpmndi:BPMNEdge id="BPMNEdge_f_scopeOk" bpmnElement="f_scopeOk">
|
|
555
|
-
<di:waypoint x="
|
|
556
|
-
<di:waypoint x="
|
|
615
|
+
<di:waypoint x="1391" y="120" />
|
|
616
|
+
<di:waypoint x="1516" y="120" />
|
|
557
617
|
<bpmndi:BPMNLabel>
|
|
558
|
-
<dc:Bounds x="
|
|
618
|
+
<dc:Bounds x="1415" y="73" width="78" height="42" />
|
|
559
619
|
</bpmndi:BPMNLabel>
|
|
560
620
|
</bpmndi:BPMNEdge>
|
|
561
621
|
<bpmndi:BPMNEdge id="BPMNEdge_f_finalize" bpmnElement="f_finalize">
|
|
562
|
-
<di:waypoint x="
|
|
563
|
-
<di:waypoint x="
|
|
622
|
+
<di:waypoint x="1616" y="120" />
|
|
623
|
+
<di:waypoint x="1723" y="120" />
|
|
564
624
|
</bpmndi:BPMNEdge>
|
|
565
625
|
<bpmndi:BPMNEdge id="BPMNEdge_f_guardOk" bpmnElement="f_guardOk">
|
|
566
|
-
<di:waypoint x="
|
|
567
|
-
<di:waypoint x="
|
|
626
|
+
<di:waypoint x="1766" y="600" />
|
|
627
|
+
<di:waypoint x="1891" y="600" />
|
|
568
628
|
<bpmndi:BPMNLabel>
|
|
569
|
-
<dc:Bounds x="
|
|
629
|
+
<dc:Bounds x="1776" y="608" width="60" height="14" />
|
|
570
630
|
</bpmndi:BPMNLabel>
|
|
571
631
|
</bpmndi:BPMNEdge>
|
|
572
632
|
<bpmndi:BPMNEdge id="BPMNEdge_f_roundWait" bpmnElement="f_roundWait">
|
|
573
|
-
<di:waypoint x="
|
|
574
|
-
<di:waypoint x="
|
|
633
|
+
<di:waypoint x="1216" y="600" />
|
|
634
|
+
<di:waypoint x="1316" y="600" />
|
|
575
635
|
</bpmndi:BPMNEdge>
|
|
576
636
|
<bpmndi:BPMNEdge id="BPMNEdge_f_checkGate" bpmnElement="f_checkGate">
|
|
577
|
-
<di:waypoint x="
|
|
578
|
-
<di:waypoint x="
|
|
637
|
+
<di:waypoint x="1416" y="600" />
|
|
638
|
+
<di:waypoint x="1541" y="600" />
|
|
639
|
+
</bpmndi:BPMNEdge>
|
|
640
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_huskEscalate" bpmnElement="f_huskEscalate">
|
|
641
|
+
<di:waypoint x="1766" y="1080" />
|
|
642
|
+
<di:waypoint x="1866" y="1080" />
|
|
643
|
+
<bpmndi:BPMNLabel>
|
|
644
|
+
<dc:Bounds x="1786" y="1088" width="60" height="14" />
|
|
645
|
+
</bpmndi:BPMNLabel>
|
|
579
646
|
</bpmndi:BPMNEdge>
|
|
580
647
|
<bpmndi:BPMNEdge id="BPMNEdge_f_progressOk" bpmnElement="f_progressOk">
|
|
581
|
-
<di:waypoint x="
|
|
582
|
-
<di:waypoint x="
|
|
648
|
+
<di:waypoint x="1591" y="600" />
|
|
649
|
+
<di:waypoint x="1716" y="600" />
|
|
583
650
|
<bpmndi:BPMNLabel>
|
|
584
|
-
<dc:Bounds x="
|
|
651
|
+
<dc:Bounds x="1608" y="567" width="71" height="28" />
|
|
585
652
|
</bpmndi:BPMNLabel>
|
|
586
653
|
</bpmndi:BPMNEdge>
|
|
654
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_noprogressGate" bpmnElement="f_noprogressGate">
|
|
655
|
+
<di:waypoint x="1966" y="1080" />
|
|
656
|
+
<di:waypoint x="2427" y="1080" />
|
|
657
|
+
<di:waypoint x="2427" y="305" />
|
|
658
|
+
</bpmndi:BPMNEdge>
|
|
587
659
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReviewWait" bpmnElement="f_toReviewWait">
|
|
588
|
-
<di:waypoint x="
|
|
589
|
-
<di:waypoint x="
|
|
660
|
+
<di:waypoint x="1941" y="600" />
|
|
661
|
+
<di:waypoint x="2066" y="600" />
|
|
590
662
|
</bpmndi:BPMNEdge>
|
|
591
663
|
<bpmndi:BPMNEdge id="BPMNEdge_f_reviewLoop" bpmnElement="f_reviewLoop">
|
|
592
|
-
<di:waypoint x="
|
|
593
|
-
<di:waypoint x="
|
|
664
|
+
<di:waypoint x="2084" y="618" />
|
|
665
|
+
<di:waypoint x="2084" y="660" />
|
|
594
666
|
<di:waypoint x="266" y="660" />
|
|
595
667
|
<di:waypoint x="266" y="160" />
|
|
596
668
|
</bpmndi:BPMNEdge>
|
|
597
669
|
<bpmndi:BPMNEdge id="BPMNEdge_f_escReenter" bpmnElement="f_escReenter">
|
|
598
|
-
<di:waypoint x="
|
|
599
|
-
<di:waypoint x="
|
|
600
|
-
<di:waypoint x="
|
|
601
|
-
<di:waypoint x="
|
|
670
|
+
<di:waypoint x="2427" y="305" />
|
|
671
|
+
<di:waypoint x="2427" y="660" />
|
|
672
|
+
<di:waypoint x="1166" y="660" />
|
|
673
|
+
<di:waypoint x="1166" y="640" />
|
|
602
674
|
<bpmndi:BPMNLabel>
|
|
603
|
-
<dc:Bounds x="
|
|
675
|
+
<dc:Bounds x="2159" y="613" width="74" height="42" />
|
|
604
676
|
</bpmndi:BPMNLabel>
|
|
605
677
|
</bpmndi:BPMNEdge>
|
|
606
678
|
<bpmndi:BPMNEdge id="BPMNEdge_f_convergeBlocked" bpmnElement="f_convergeBlocked">
|
|
607
|
-
<di:waypoint x="
|
|
608
|
-
<di:waypoint x="
|
|
609
|
-
<di:waypoint x="
|
|
610
|
-
<
|
|
679
|
+
<di:waypoint x="991" y="145" />
|
|
680
|
+
<di:waypoint x="991" y="440" />
|
|
681
|
+
<di:waypoint x="1116" y="440" />
|
|
682
|
+
<bpmndi:BPMNLabel>
|
|
683
|
+
<dc:Bounds x="1013" y="407" width="81" height="28" />
|
|
684
|
+
</bpmndi:BPMNLabel>
|
|
685
|
+
</bpmndi:BPMNEdge>
|
|
686
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_convergeStale" bpmnElement="f_convergeStale">
|
|
687
|
+
<di:waypoint x="991" y="145" />
|
|
688
|
+
<di:waypoint x="991" y="600" />
|
|
689
|
+
<di:waypoint x="1116" y="600" />
|
|
611
690
|
<bpmndi:BPMNLabel>
|
|
612
|
-
<dc:Bounds x="
|
|
691
|
+
<dc:Bounds x="996" y="513" width="88" height="14" />
|
|
613
692
|
</bpmndi:BPMNLabel>
|
|
614
693
|
</bpmndi:BPMNEdge>
|
|
615
694
|
<bpmndi:BPMNEdge id="BPMNEdge_f_scopeBlocked" bpmnElement="f_scopeBlocked">
|
|
616
|
-
<di:waypoint x="
|
|
617
|
-
<di:waypoint x="
|
|
618
|
-
<di:waypoint x="
|
|
619
|
-
<di:waypoint x="1366" y="240" />
|
|
695
|
+
<di:waypoint x="1366" y="145" />
|
|
696
|
+
<di:waypoint x="1366" y="280" />
|
|
697
|
+
<di:waypoint x="1516" y="280" />
|
|
620
698
|
<bpmndi:BPMNLabel>
|
|
621
|
-
<dc:Bounds x="
|
|
699
|
+
<dc:Bounds x="1371" y="192" width="88" height="42" />
|
|
622
700
|
</bpmndi:BPMNLabel>
|
|
623
701
|
</bpmndi:BPMNEdge>
|
|
624
702
|
<bpmndi:BPMNEdge id="BPMNEdge_f_addressed" bpmnElement="f_addressed">
|
|
625
|
-
<di:waypoint x="
|
|
626
|
-
<di:waypoint x="
|
|
627
|
-
<di:waypoint x="
|
|
703
|
+
<di:waypoint x="641" y="145" />
|
|
704
|
+
<di:waypoint x="641" y="600" />
|
|
705
|
+
<di:waypoint x="1116" y="600" />
|
|
628
706
|
<bpmndi:BPMNLabel>
|
|
629
|
-
<dc:Bounds x="
|
|
707
|
+
<dc:Bounds x="646" y="359" width="78" height="28" />
|
|
630
708
|
</bpmndi:BPMNLabel>
|
|
631
709
|
</bpmndi:BPMNEdge>
|
|
632
710
|
<bpmndi:BPMNEdge id="BPMNEdge_f_waiting" bpmnElement="f_waiting">
|
|
633
|
-
<di:waypoint x="
|
|
634
|
-
<di:waypoint x="
|
|
635
|
-
<di:waypoint x="
|
|
711
|
+
<di:waypoint x="641" y="145" />
|
|
712
|
+
<di:waypoint x="641" y="600" />
|
|
713
|
+
<di:waypoint x="1116" y="600" />
|
|
636
714
|
<bpmndi:BPMNLabel>
|
|
637
|
-
<dc:Bounds x="
|
|
715
|
+
<dc:Bounds x="580" y="366" width="56" height="14" />
|
|
638
716
|
</bpmndi:BPMNLabel>
|
|
639
717
|
</bpmndi:BPMNEdge>
|
|
640
718
|
<bpmndi:BPMNEdge id="BPMNEdge_f_escalate" bpmnElement="f_escalate">
|
|
641
|
-
<di:waypoint x="
|
|
642
|
-
<di:waypoint x="
|
|
643
|
-
<di:waypoint x="
|
|
719
|
+
<di:waypoint x="641" y="145" />
|
|
720
|
+
<di:waypoint x="641" y="1240" />
|
|
721
|
+
<di:waypoint x="766" y="1240" />
|
|
644
722
|
<bpmndi:BPMNLabel>
|
|
645
|
-
<dc:Bounds x="
|
|
723
|
+
<dc:Bounds x="646" y="906" width="81" height="28" />
|
|
646
724
|
</bpmndi:BPMNLabel>
|
|
647
725
|
</bpmndi:BPMNEdge>
|
|
648
726
|
<bpmndi:BPMNEdge id="BPMNEdge_f_guardMax" bpmnElement="f_guardMax">
|
|
649
|
-
<di:waypoint x="
|
|
650
|
-
<di:waypoint x="
|
|
651
|
-
<di:waypoint x="
|
|
652
|
-
<di:waypoint x="
|
|
727
|
+
<di:waypoint x="1766" y="600" />
|
|
728
|
+
<di:waypoint x="1846" y="600" />
|
|
729
|
+
<di:waypoint x="1846" y="920" />
|
|
730
|
+
<di:waypoint x="1866" y="920" />
|
|
653
731
|
<bpmndi:BPMNLabel>
|
|
654
|
-
<dc:Bounds x="
|
|
732
|
+
<dc:Bounds x="1767" y="753" width="74" height="14" />
|
|
655
733
|
</bpmndi:BPMNLabel>
|
|
656
734
|
</bpmndi:BPMNEdge>
|
|
657
735
|
<bpmndi:BPMNEdge id="BPMNEdge_f_noProgress" bpmnElement="f_noProgress">
|
|
658
|
-
<di:waypoint x="
|
|
659
|
-
<di:waypoint x="
|
|
660
|
-
<di:waypoint x="
|
|
661
|
-
<di:waypoint x="
|
|
736
|
+
<di:waypoint x="1591" y="600" />
|
|
737
|
+
<di:waypoint x="1696" y="600" />
|
|
738
|
+
<di:waypoint x="1696" y="1080" />
|
|
739
|
+
<di:waypoint x="1716" y="1080" />
|
|
662
740
|
<bpmndi:BPMNLabel>
|
|
663
|
-
<dc:Bounds x="
|
|
741
|
+
<dc:Bounds x="1701" y="833" width="78" height="14" />
|
|
664
742
|
</bpmndi:BPMNLabel>
|
|
665
743
|
</bpmndi:BPMNEdge>
|
|
666
744
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReviewTimeout" bpmnElement="f_toReviewTimeout">
|
|
667
|
-
<di:waypoint x="
|
|
668
|
-
<di:waypoint x="
|
|
669
|
-
<di:waypoint x="
|
|
745
|
+
<di:waypoint x="1916" y="625" />
|
|
746
|
+
<di:waypoint x="1916" y="760" />
|
|
747
|
+
<di:waypoint x="2066" y="760" />
|
|
670
748
|
</bpmndi:BPMNEdge>
|
|
671
749
|
<bpmndi:BPMNEdge id="BPMNEdge_f_scopeEscGate" bpmnElement="f_scopeEscGate">
|
|
672
|
-
<di:waypoint x="
|
|
673
|
-
<di:waypoint x="
|
|
750
|
+
<di:waypoint x="1616" y="280" />
|
|
751
|
+
<di:waypoint x="2402" y="280" />
|
|
674
752
|
</bpmndi:BPMNEdge>
|
|
675
753
|
<bpmndi:BPMNEdge id="BPMNEdge_f_blockedGate" bpmnElement="f_blockedGate">
|
|
676
|
-
<di:waypoint x="
|
|
677
|
-
<di:waypoint x="
|
|
678
|
-
<di:waypoint x="
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
<di:waypoint x="
|
|
682
|
-
<di:waypoint x="1877" y="920" />
|
|
683
|
-
<di:waypoint x="1877" y="305" />
|
|
754
|
+
<di:waypoint x="1216" y="440" />
|
|
755
|
+
<di:waypoint x="1636" y="440" />
|
|
756
|
+
<di:waypoint x="1636" y="305" />
|
|
757
|
+
<di:waypoint x="2382" y="305" />
|
|
758
|
+
<di:waypoint x="2382" y="280" />
|
|
759
|
+
<di:waypoint x="2402" y="280" />
|
|
684
760
|
</bpmndi:BPMNEdge>
|
|
685
761
|
<bpmndi:BPMNEdge id="BPMNEdge_f_reviewStalled" bpmnElement="f_reviewStalled">
|
|
686
|
-
<di:waypoint x="
|
|
687
|
-
<di:waypoint x="
|
|
762
|
+
<di:waypoint x="2102" y="760" />
|
|
763
|
+
<di:waypoint x="2202" y="760" />
|
|
688
764
|
</bpmndi:BPMNEdge>
|
|
689
765
|
<bpmndi:BPMNEdge id="BPMNEdge_f_stalledGate" bpmnElement="f_stalledGate">
|
|
690
|
-
<di:waypoint x="
|
|
691
|
-
<di:waypoint x="
|
|
692
|
-
<di:waypoint x="
|
|
766
|
+
<di:waypoint x="2252" y="720" />
|
|
767
|
+
<di:waypoint x="2252" y="280" />
|
|
768
|
+
<di:waypoint x="2402" y="280" />
|
|
693
769
|
</bpmndi:BPMNEdge>
|
|
694
770
|
<bpmndi:BPMNEdge id="BPMNEdge_f_escGate" bpmnElement="f_escGate">
|
|
695
|
-
<di:waypoint x="
|
|
696
|
-
<di:waypoint x="
|
|
697
|
-
<di:waypoint x="
|
|
771
|
+
<di:waypoint x="866" y="1240" />
|
|
772
|
+
<di:waypoint x="2472" y="1240" />
|
|
773
|
+
<di:waypoint x="2472" y="305" />
|
|
774
|
+
<di:waypoint x="2472" y="280" />
|
|
775
|
+
<di:waypoint x="2452" y="280" />
|
|
698
776
|
</bpmndi:BPMNEdge>
|
|
699
777
|
<bpmndi:BPMNEdge id="BPMNEdge_f_escWait" bpmnElement="f_escWait">
|
|
700
|
-
<di:waypoint x="
|
|
701
|
-
<di:waypoint x="
|
|
778
|
+
<di:waypoint x="2452" y="280" />
|
|
779
|
+
<di:waypoint x="2552" y="280" />
|
|
702
780
|
</bpmndi:BPMNEdge>
|
|
703
781
|
<bpmndi:BPMNEdge id="BPMNEdge_f_maxGate" bpmnElement="f_maxGate">
|
|
704
|
-
<di:waypoint x="
|
|
705
|
-
<di:waypoint x="
|
|
706
|
-
<di:waypoint x="
|
|
782
|
+
<di:waypoint x="1966" y="920" />
|
|
783
|
+
<di:waypoint x="2322" y="920" />
|
|
784
|
+
<di:waypoint x="2322" y="305" />
|
|
785
|
+
<di:waypoint x="2382" y="305" />
|
|
786
|
+
<di:waypoint x="2382" y="280" />
|
|
787
|
+
<di:waypoint x="2402" y="280" />
|
|
707
788
|
</bpmndi:BPMNEdge>
|
|
708
789
|
<bpmndi:BPMNEdge id="BPMNEdge_f_answerRecord" bpmnElement="f_answerRecord">
|
|
709
|
-
<di:waypoint x="
|
|
710
|
-
<di:waypoint x="
|
|
790
|
+
<di:waypoint x="2652" y="280" />
|
|
791
|
+
<di:waypoint x="2752" y="280" />
|
|
792
|
+
</bpmndi:BPMNEdge>
|
|
793
|
+
<bpmndi:BPMNEdge id="BPMNEdge_f_huskRetry" bpmnElement="f_huskRetry">
|
|
794
|
+
<di:waypoint x="1741" y="1105" />
|
|
795
|
+
<di:waypoint x="1741" y="1125" />
|
|
796
|
+
<di:waypoint x="266" y="1125" />
|
|
797
|
+
<di:waypoint x="266" y="160" />
|
|
798
|
+
<bpmndi:BPMNLabel>
|
|
799
|
+
<dc:Bounds x="963" y="1092" width="82" height="28" />
|
|
800
|
+
</bpmndi:BPMNLabel>
|
|
711
801
|
</bpmndi:BPMNEdge>
|
|
712
802
|
<bpmndi:BPMNEdge id="BPMNEdge_f_answerLoop" bpmnElement="f_answerLoop">
|
|
713
|
-
<di:waypoint x="
|
|
714
|
-
<di:waypoint x="
|
|
803
|
+
<di:waypoint x="2802" y="320" />
|
|
804
|
+
<di:waypoint x="2802" y="340" />
|
|
715
805
|
<di:waypoint x="266" y="340" />
|
|
716
806
|
<di:waypoint x="266" y="160" />
|
|
717
807
|
</bpmndi:BPMNEdge>
|