@nanobpm/nano-workforce 0.171.2 → 0.171.4
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/app/deliveryDispatch.test.ts +6 -2
- package/app/escalationTaxonomy.ts +5 -4
- package/app/fineGrainedCells.test.ts +93 -0
- package/app/planFanoutCleanTerminal.test.ts +29 -26
- package/app/planFanoutPreflight.test.ts +11 -4
- package/app/service.ts +44 -25
- package/e2e/agent-answerable.e2e.ts +15 -12
- package/e2e/feature-preflight.e2e.ts +6 -4
- package/e2e/feature-run.e2e.ts +38 -26
- package/e2e/plan-fanout-sla.e2e.ts +14 -10
- package/e2e/plan-fanout.e2e.ts +26 -21
- package/nano.app.json +0 -4
- package/package.json +3 -3
- package/pages/cockpit/cockpit.css +4 -2
- package/resources/processes/feature.bpmn +55 -175
- package/resources/processes/implement-cell.bpmn +78 -22
- package/resources/processes/plan-fanout.bpmn +245 -296
- package/workers/record-feature-escalation/worker.test.ts +74 -25
- package/workers/record-feature-escalation/worker.ts +79 -32
- package/workers/record-feature-implementing/worker.test.ts +31 -1
- package/workers/record-feature-implementing/worker.ts +36 -12
- package/workers/record-wave-escalation/worker.test.ts +0 -95
- package/workers/record-wave-escalation/worker.ts +0 -69
|
@@ -59,11 +59,6 @@
|
|
|
59
59
|
<nano:reference name="waveTasks" ref="RecordWaveTaskRef" list="true" />
|
|
60
60
|
<nano:reference name="waveResults" ref="RecordWaveResult" list="true" />
|
|
61
61
|
</nano:shape>
|
|
62
|
-
<nano:shape id="RecordWaveEscalationIn" name="Record wave escalation — input">
|
|
63
|
-
<nano:extend name="planKey" type="string" />
|
|
64
|
-
<nano:extend name="status" type="string" optional="true" />
|
|
65
|
-
<nano:extend name="question" type="string" optional="true" />
|
|
66
|
-
</nano:shape>
|
|
67
62
|
<nano:shape id="RecordTrialMergeHead" name="Record trial merge — open head">
|
|
68
63
|
<nano:extend name="repo" type="string" />
|
|
69
64
|
<nano:extend name="prNumber" type="integer" />
|
|
@@ -440,48 +435,36 @@
|
|
|
440
435
|
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=capsWaitTimeout</bpmn:timeDuration>
|
|
441
436
|
</bpmn:timerEventDefinition>
|
|
442
437
|
</bpmn:intermediateCatchEvent>
|
|
443
|
-
<bpmn:
|
|
438
|
+
<bpmn:callActivity id="implement-cell-call" name="Implement cell">
|
|
444
439
|
<bpmn:extensionElements>
|
|
445
|
-
<zeebe:
|
|
446
|
-
<zeebe:linkedResources>
|
|
447
|
-
<zeebe:linkedResource resourceId="prompts/feature.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
|
|
448
|
-
</zeebe:linkedResources>
|
|
440
|
+
<zeebe:calledElement processId="implement-cell" />
|
|
449
441
|
<zeebe:ioMapping>
|
|
450
|
-
<zeebe:input source="
|
|
442
|
+
<zeebe:input source="=task" target="task" />
|
|
443
|
+
<zeebe:input source="=planKey" target="subjectKey" />
|
|
444
|
+
<zeebe:input source="=escalationSlaTimeout" target="escalationSlaTimeout" />
|
|
445
|
+
<zeebe:input source="=if (is defined(escalationAssignee)) then escalationAssignee else null" target="escalationAssignee" />
|
|
446
|
+
<zeebe:input source="=if (is defined(baseBranchBrief)) then baseBranchBrief else null" target="baseBranchBrief" />
|
|
447
|
+
<zeebe:input source="=if (is defined(blackboardBrief)) then blackboardBrief else null" target="blackboardBrief" />
|
|
448
|
+
<zeebe:input source="=if (is defined(resolvedDepsBrief)) then resolvedDepsBrief else null" target="resolvedDepsBrief" />
|
|
449
|
+
<zeebe:input source="=if (is defined(resolvedArtifacts)) then resolvedArtifacts else null" target="resolvedArtifacts" />
|
|
451
450
|
<zeebe:output source="=status" target="status" />
|
|
452
|
-
<zeebe:output source="=
|
|
451
|
+
<zeebe:output source="=if (is defined(summary)) then summary else null" target="summary" />
|
|
452
|
+
<zeebe:output source="=if (is defined(pr)) then pr else null" target="pr" />
|
|
453
|
+
<zeebe:output source="=if (is defined(delta)) then delta else null" target="delta" />
|
|
454
|
+
<zeebe:output source="=if (is defined(question)) then question else null" target="question" />
|
|
453
455
|
</zeebe:ioMapping>
|
|
454
456
|
</bpmn:extensionElements>
|
|
455
457
|
<bpmn:incoming>w_noNeeds</bpmn:incoming>
|
|
456
458
|
<bpmn:incoming>w_capsResolved</bpmn:incoming>
|
|
457
459
|
<bpmn:incoming>w_answerLoop</bpmn:incoming>
|
|
458
|
-
<bpmn:outgoing>
|
|
459
|
-
</bpmn:
|
|
460
|
-
<bpmn:exclusiveGateway id="w_gw" name="clean terminal?" default="w_escalate">
|
|
461
|
-
<bpmn:incoming>w_toGw</bpmn:incoming>
|
|
462
|
-
<bpmn:outgoing>w_escalate</bpmn:outgoing>
|
|
463
|
-
<bpmn:outgoing>w_done</bpmn:outgoing>
|
|
464
|
-
</bpmn:exclusiveGateway>
|
|
465
|
-
<bpmn:serviceTask id="record-wave-escalation" name="Record escalation">
|
|
466
|
-
<bpmn:extensionElements>
|
|
467
|
-
<zeebe:taskDefinition type="pr.record-wave-escalation" />
|
|
468
|
-
<zeebe:properties>
|
|
469
|
-
<zeebe:property name="io.nanobpm.dataEnvelope.in" value="RecordWaveEscalationIn" />
|
|
470
|
-
</zeebe:properties>
|
|
471
|
-
<zeebe:ioMapping>
|
|
472
|
-
<zeebe:output source="=question" target="question" />
|
|
473
|
-
</zeebe:ioMapping>
|
|
474
|
-
</bpmn:extensionElements>
|
|
475
|
-
<bpmn:incoming>w_escalate</bpmn:incoming>
|
|
476
|
-
<bpmn:outgoing>w_toEscalationTask</bpmn:outgoing>
|
|
477
|
-
</bpmn:serviceTask>
|
|
460
|
+
<bpmn:outgoing>w_toEnd</bpmn:outgoing>
|
|
461
|
+
</bpmn:callActivity>
|
|
478
462
|
<bpmn:userTask id="feature-escalation" name="Task escalation (human)">
|
|
479
463
|
<bpmn:extensionElements>
|
|
480
464
|
<zeebe:formDefinition formId="feature-escalation" />
|
|
481
465
|
<zeebe:userTask />
|
|
482
466
|
<zeebe:assignmentDefinition candidateGroups="operators" assignee="=escalationAssignee" />
|
|
483
467
|
</bpmn:extensionElements>
|
|
484
|
-
<bpmn:incoming>w_toEscalationTask</bpmn:incoming>
|
|
485
468
|
<bpmn:incoming>w_capsTimeout</bpmn:incoming>
|
|
486
469
|
<bpmn:outgoing>w_toAnswerGw</bpmn:outgoing>
|
|
487
470
|
</bpmn:userTask>
|
|
@@ -497,7 +480,7 @@
|
|
|
497
480
|
<bpmn:outgoing>w_abandon</bpmn:outgoing>
|
|
498
481
|
</bpmn:exclusiveGateway>
|
|
499
482
|
<bpmn:endEvent id="w_end" name="Task done">
|
|
500
|
-
<bpmn:incoming>
|
|
483
|
+
<bpmn:incoming>w_toEnd</bpmn:incoming>
|
|
501
484
|
<bpmn:incoming>w_abandon</bpmn:incoming>
|
|
502
485
|
<bpmn:incoming>w_sla</bpmn:incoming>
|
|
503
486
|
</bpmn:endEvent>
|
|
@@ -509,16 +492,11 @@
|
|
|
509
492
|
<bpmn:sequenceFlow id="w_capsToWait" sourceRef="w_gw_caps" targetRef="wait-caps-resolved" />
|
|
510
493
|
<bpmn:sequenceFlow id="w_capsToTimeout" sourceRef="w_gw_caps" targetRef="wait-caps-timeout" />
|
|
511
494
|
<bpmn:sequenceFlow id="w_capsTimeout" name="caps SLA" sourceRef="wait-caps-timeout" targetRef="feature-escalation" />
|
|
512
|
-
<bpmn:sequenceFlow id="w_noNeeds" name="none" sourceRef="w_gw_needs" targetRef="implement-
|
|
513
|
-
<bpmn:sequenceFlow id="w_capsResolved" sourceRef="wait-caps-resolved" targetRef="implement-
|
|
514
|
-
<bpmn:sequenceFlow id="
|
|
515
|
-
<bpmn:sequenceFlow id="w_escalate" name="not clean" sourceRef="w_gw" targetRef="record-wave-escalation" />
|
|
516
|
-
<bpmn:sequenceFlow id="w_toEscalationTask" sourceRef="record-wave-escalation" targetRef="feature-escalation" />
|
|
517
|
-
<bpmn:sequenceFlow id="w_done" name="done" sourceRef="w_gw" targetRef="w_end">
|
|
518
|
-
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=status = "opened" or status = "blocked" or status = "skipped"</bpmn:conditionExpression>
|
|
519
|
-
</bpmn:sequenceFlow>
|
|
495
|
+
<bpmn:sequenceFlow id="w_noNeeds" name="none" sourceRef="w_gw_needs" targetRef="implement-cell-call" />
|
|
496
|
+
<bpmn:sequenceFlow id="w_capsResolved" sourceRef="wait-caps-resolved" targetRef="implement-cell-call" />
|
|
497
|
+
<bpmn:sequenceFlow id="w_toEnd" sourceRef="implement-cell-call" targetRef="w_end" />
|
|
520
498
|
<bpmn:sequenceFlow id="w_toAnswerGw" sourceRef="feature-escalation" targetRef="w_gw_answer" />
|
|
521
|
-
<bpmn:sequenceFlow id="w_answerLoop" name="answer" sourceRef="w_gw_answer" targetRef="implement-
|
|
499
|
+
<bpmn:sequenceFlow id="w_answerLoop" name="answer" sourceRef="w_gw_answer" targetRef="implement-cell-call">
|
|
522
500
|
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=resolution = "answer"</bpmn:conditionExpression>
|
|
523
501
|
</bpmn:sequenceFlow>
|
|
524
502
|
<bpmn:sequenceFlow id="w_abandon" name="abandon" sourceRef="w_gw_answer" targetRef="w_end" />
|
|
@@ -696,404 +674,404 @@
|
|
|
696
674
|
<bpmndi:BPMNDiagram id="BPMNDiagram_plan-fanout">
|
|
697
675
|
<bpmndi:BPMNPlane id="BPMNPlane_plan-fanout" bpmnElement="plan-fanout">
|
|
698
676
|
<bpmndi:BPMNShape id="BPMNShape_Start" bpmnElement="Start">
|
|
699
|
-
<dc:Bounds x="80" y="
|
|
677
|
+
<dc:Bounds x="80" y="311" width="36" height="36" />
|
|
700
678
|
<bpmndi:BPMNLabel>
|
|
701
|
-
<dc:Bounds x="63" y="
|
|
679
|
+
<dc:Bounds x="63" y="352" width="70" height="28" />
|
|
702
680
|
</bpmndi:BPMNLabel>
|
|
703
681
|
</bpmndi:BPMNShape>
|
|
704
682
|
<bpmndi:BPMNShape id="BPMNShape_gw-readiness" bpmnElement="gw-readiness" isMarkerVisible="true">
|
|
705
|
-
<dc:Bounds x="216" y="
|
|
683
|
+
<dc:Bounds x="216" y="304" width="50" height="50" />
|
|
706
684
|
<bpmndi:BPMNLabel>
|
|
707
|
-
<dc:Bounds x="204" y="
|
|
685
|
+
<dc:Bounds x="204" y="243" width="74" height="56" />
|
|
708
686
|
</bpmndi:BPMNLabel>
|
|
709
687
|
</bpmndi:BPMNShape>
|
|
710
688
|
<bpmndi:BPMNShape id="BPMNShape_readiness-preflight" bpmnElement="readiness-preflight">
|
|
711
|
-
<dc:Bounds x="366" y="
|
|
689
|
+
<dc:Bounds x="366" y="449" width="100" height="80" />
|
|
712
690
|
</bpmndi:BPMNShape>
|
|
713
691
|
<bpmndi:BPMNShape id="BPMNShape_ensure-base-branch" bpmnElement="ensure-base-branch">
|
|
714
|
-
<dc:Bounds x="566" y="
|
|
692
|
+
<dc:Bounds x="566" y="289" width="100" height="80" />
|
|
715
693
|
</bpmndi:BPMNShape>
|
|
716
694
|
<bpmndi:BPMNShape id="BPMNShape_plan" bpmnElement="plan">
|
|
717
|
-
<dc:Bounds x="766" y="
|
|
695
|
+
<dc:Bounds x="766" y="289" width="100" height="80" />
|
|
718
696
|
</bpmndi:BPMNShape>
|
|
719
697
|
<bpmndi:BPMNShape id="BPMNShape_record-plan" bpmnElement="record-plan">
|
|
720
|
-
<dc:Bounds x="966" y="
|
|
698
|
+
<dc:Bounds x="966" y="289" width="100" height="80" />
|
|
721
699
|
</bpmndi:BPMNShape>
|
|
722
700
|
<bpmndi:BPMNShape id="BPMNShape_gw-plan-empty" bpmnElement="gw-plan-empty" isMarkerVisible="true">
|
|
723
|
-
<dc:Bounds x="1166" y="
|
|
701
|
+
<dc:Bounds x="1166" y="304" width="50" height="50" />
|
|
724
702
|
<bpmndi:BPMNLabel>
|
|
725
|
-
<dc:Bounds x="1163" y="
|
|
703
|
+
<dc:Bounds x="1163" y="379" width="57" height="28" />
|
|
726
704
|
</bpmndi:BPMNLabel>
|
|
727
705
|
</bpmndi:BPMNShape>
|
|
728
706
|
<bpmndi:BPMNShape id="BPMNShape_empty-plan-escalation" bpmnElement="empty-plan-escalation">
|
|
729
|
-
<dc:Bounds x="1316" y="
|
|
707
|
+
<dc:Bounds x="1316" y="609" width="100" height="80" />
|
|
730
708
|
</bpmndi:BPMNShape>
|
|
731
709
|
<bpmndi:BPMNShape id="BPMNShape_gw-empty-plan-answer" bpmnElement="gw-empty-plan-answer" isMarkerVisible="true">
|
|
732
|
-
<dc:Bounds x="1541" y="
|
|
710
|
+
<dc:Bounds x="1541" y="624" width="50" height="50" />
|
|
733
711
|
<bpmndi:BPMNLabel>
|
|
734
|
-
<dc:Bounds x="1543" y="
|
|
712
|
+
<dc:Bounds x="1543" y="719" width="46" height="28" />
|
|
735
713
|
</bpmndi:BPMNLabel>
|
|
736
714
|
</bpmndi:BPMNShape>
|
|
737
715
|
<bpmndi:BPMNShape id="BPMNShape_EndTasklessDone" bpmnElement="EndTasklessDone">
|
|
738
|
-
<dc:Bounds x="1723" y="
|
|
716
|
+
<dc:Bounds x="1723" y="631" width="36" height="36" />
|
|
739
717
|
<bpmndi:BPMNLabel>
|
|
740
|
-
<dc:Bounds x="1702" y="
|
|
718
|
+
<dc:Bounds x="1702" y="672" width="78" height="42" />
|
|
741
719
|
</bpmndi:BPMNLabel>
|
|
742
720
|
</bpmndi:BPMNShape>
|
|
743
721
|
<bpmndi:BPMNShape id="BPMNShape_review-plan" bpmnElement="review-plan">
|
|
744
|
-
<dc:Bounds x="1316" y="
|
|
722
|
+
<dc:Bounds x="1316" y="289" width="100" height="80" />
|
|
745
723
|
</bpmndi:BPMNShape>
|
|
746
724
|
<bpmndi:BPMNShape id="BPMNShape_record-plan-review" bpmnElement="record-plan-review">
|
|
747
|
-
<dc:Bounds x="1516" y="
|
|
725
|
+
<dc:Bounds x="1516" y="289" width="100" height="80" />
|
|
748
726
|
</bpmndi:BPMNShape>
|
|
749
727
|
<bpmndi:BPMNShape id="BPMNShape_gw-plan-review" bpmnElement="gw-plan-review" isMarkerVisible="true">
|
|
750
|
-
<dc:Bounds x="1716" y="
|
|
728
|
+
<dc:Bounds x="1716" y="304" width="50" height="50" />
|
|
751
729
|
<bpmndi:BPMNLabel>
|
|
752
|
-
<dc:Bounds x="1668" y="
|
|
730
|
+
<dc:Bounds x="1668" y="379" width="67" height="28" />
|
|
753
731
|
</bpmndi:BPMNLabel>
|
|
754
732
|
</bpmndi:BPMNShape>
|
|
755
733
|
<bpmndi:BPMNShape id="BPMNShape_plan-review-decision" bpmnElement="plan-review-decision">
|
|
756
|
-
<dc:Bounds x="1866" y="
|
|
734
|
+
<dc:Bounds x="1866" y="449" width="100" height="80" />
|
|
757
735
|
</bpmndi:BPMNShape>
|
|
758
736
|
<bpmndi:BPMNShape id="BPMNShape_gw-plan-answer" bpmnElement="gw-plan-answer" isMarkerVisible="true">
|
|
759
|
-
<dc:Bounds x="2066" y="
|
|
737
|
+
<dc:Bounds x="2066" y="464" width="50" height="50" />
|
|
760
738
|
<bpmndi:BPMNLabel>
|
|
761
|
-
<dc:Bounds x="2058" y="
|
|
739
|
+
<dc:Bounds x="2058" y="431" width="67" height="28" />
|
|
762
740
|
</bpmndi:BPMNLabel>
|
|
763
741
|
</bpmndi:BPMNShape>
|
|
764
742
|
<bpmndi:BPMNShape id="BPMNShape_select-wave" bpmnElement="select-wave">
|
|
765
|
-
<dc:Bounds x="2216" y="
|
|
743
|
+
<dc:Bounds x="2216" y="289" width="100" height="80" />
|
|
766
744
|
</bpmndi:BPMNShape>
|
|
767
745
|
<bpmndi:BPMNShape id="BPMNShape_implement" bpmnElement="implement" isExpanded="true">
|
|
768
|
-
<dc:Bounds x="2416" y="80" width="
|
|
746
|
+
<dc:Bounds x="2416" y="80" width="1438" height="498" />
|
|
769
747
|
</bpmndi:BPMNShape>
|
|
770
748
|
<bpmndi:BPMNShape id="BPMNShape_record-wave" bpmnElement="record-wave">
|
|
771
|
-
<dc:Bounds x="
|
|
749
|
+
<dc:Bounds x="3954" y="289" width="100" height="80" />
|
|
772
750
|
</bpmndi:BPMNShape>
|
|
773
751
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial-needed" bpmnElement="gw-trial-needed" isMarkerVisible="true">
|
|
774
|
-
<dc:Bounds x="
|
|
752
|
+
<dc:Bounds x="4154" y="304" width="50" height="50" />
|
|
775
753
|
<bpmndi:BPMNLabel>
|
|
776
|
-
<dc:Bounds x="
|
|
754
|
+
<dc:Bounds x="4135" y="285" width="88" height="14" />
|
|
777
755
|
</bpmndi:BPMNLabel>
|
|
778
756
|
</bpmndi:BPMNShape>
|
|
779
757
|
<bpmndi:BPMNShape id="BPMNShape_trial-merge" bpmnElement="trial-merge">
|
|
780
|
-
<dc:Bounds x="
|
|
758
|
+
<dc:Bounds x="4304" y="929" width="100" height="80" />
|
|
781
759
|
</bpmndi:BPMNShape>
|
|
782
760
|
<bpmndi:BPMNShape id="BPMNShape_record-trial-merge" bpmnElement="record-trial-merge">
|
|
783
|
-
<dc:Bounds x="
|
|
761
|
+
<dc:Bounds x="4504" y="929" width="100" height="80" />
|
|
784
762
|
</bpmndi:BPMNShape>
|
|
785
763
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial" bpmnElement="gw-trial" isMarkerVisible="true">
|
|
786
|
-
<dc:Bounds x="
|
|
764
|
+
<dc:Bounds x="4704" y="944" width="50" height="50" />
|
|
787
765
|
<bpmndi:BPMNLabel>
|
|
788
|
-
<dc:Bounds x="
|
|
766
|
+
<dc:Bounds x="4694" y="999" width="71" height="14" />
|
|
789
767
|
</bpmndi:BPMNLabel>
|
|
790
768
|
</bpmndi:BPMNShape>
|
|
791
769
|
<bpmndi:BPMNShape id="BPMNShape_trial-merge-decision" bpmnElement="trial-merge-decision">
|
|
792
|
-
<dc:Bounds x="
|
|
770
|
+
<dc:Bounds x="4854" y="449" width="100" height="80" />
|
|
793
771
|
</bpmndi:BPMNShape>
|
|
794
772
|
<bpmndi:BPMNShape id="BPMNShape_resolve-trial-attention" bpmnElement="resolve-trial-attention">
|
|
795
|
-
<dc:Bounds x="
|
|
773
|
+
<dc:Bounds x="5054" y="449" width="100" height="80" />
|
|
796
774
|
</bpmndi:BPMNShape>
|
|
797
775
|
<bpmndi:BPMNShape id="BPMNShape_gw-trial-answer" bpmnElement="gw-trial-answer" isMarkerVisible="true">
|
|
798
|
-
<dc:Bounds x="
|
|
776
|
+
<dc:Bounds x="5254" y="464" width="50" height="50" />
|
|
799
777
|
<bpmndi:BPMNLabel>
|
|
800
|
-
<dc:Bounds x="
|
|
778
|
+
<dc:Bounds x="5253" y="519" width="53" height="14" />
|
|
801
779
|
</bpmndi:BPMNLabel>
|
|
802
780
|
</bpmndi:BPMNShape>
|
|
803
781
|
<bpmndi:BPMNShape id="BPMNShape_gw-more" bpmnElement="gw-more" isMarkerVisible="true">
|
|
804
|
-
<dc:Bounds x="
|
|
782
|
+
<dc:Bounds x="5404" y="304" width="50" height="50" />
|
|
805
783
|
<bpmndi:BPMNLabel>
|
|
806
|
-
<dc:Bounds x="
|
|
784
|
+
<dc:Bounds x="5327" y="359" width="84" height="14" />
|
|
807
785
|
</bpmndi:BPMNLabel>
|
|
808
786
|
</bpmndi:BPMNShape>
|
|
809
787
|
<bpmndi:BPMNShape id="BPMNShape_wait-wave-merged" bpmnElement="wait-wave-merged">
|
|
810
|
-
<dc:Bounds x="
|
|
788
|
+
<dc:Bounds x="5586" y="471" width="36" height="36" />
|
|
811
789
|
<bpmndi:BPMNLabel>
|
|
812
|
-
<dc:Bounds x="
|
|
790
|
+
<dc:Bounds x="5565" y="438" width="78" height="28" />
|
|
813
791
|
</bpmndi:BPMNLabel>
|
|
814
792
|
</bpmndi:BPMNShape>
|
|
815
793
|
<bpmndi:BPMNShape id="BPMNShape_record-results" bpmnElement="record-results">
|
|
816
|
-
<dc:Bounds x="
|
|
794
|
+
<dc:Bounds x="5554" y="289" width="100" height="80" />
|
|
817
795
|
</bpmndi:BPMNShape>
|
|
818
796
|
<bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
|
|
819
|
-
<dc:Bounds x="
|
|
797
|
+
<dc:Bounds x="5754" y="311" width="36" height="36" />
|
|
820
798
|
<bpmndi:BPMNLabel>
|
|
821
|
-
<dc:Bounds x="
|
|
799
|
+
<dc:Bounds x="5735" y="352" width="74" height="28" />
|
|
822
800
|
</bpmndi:BPMNLabel>
|
|
823
801
|
</bpmndi:BPMNShape>
|
|
824
802
|
<bpmndi:BPMNShape id="BPMNShape_be_plan_sla" bpmnElement="be_plan_sla">
|
|
825
|
-
<dc:Bounds x="1898" y="
|
|
803
|
+
<dc:Bounds x="1898" y="511" width="36" height="36" />
|
|
826
804
|
<bpmndi:BPMNLabel>
|
|
827
|
-
<dc:Bounds x="1874" y="
|
|
805
|
+
<dc:Bounds x="1874" y="612" width="84" height="14" />
|
|
828
806
|
</bpmndi:BPMNLabel>
|
|
829
807
|
</bpmndi:BPMNShape>
|
|
830
808
|
<bpmndi:BPMNShape id="BPMNShape_be_trial_sla" bpmnElement="be_trial_sla">
|
|
831
|
-
<dc:Bounds x="
|
|
809
|
+
<dc:Bounds x="4886" y="511" width="36" height="36" />
|
|
832
810
|
<bpmndi:BPMNLabel>
|
|
833
|
-
<dc:Bounds x="
|
|
811
|
+
<dc:Bounds x="4802" y="552" width="84" height="14" />
|
|
834
812
|
</bpmndi:BPMNLabel>
|
|
835
813
|
</bpmndi:BPMNShape>
|
|
836
814
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReadinessGw" bpmnElement="f_toReadinessGw">
|
|
837
|
-
<di:waypoint x="116" y="
|
|
838
|
-
<di:waypoint x="216" y="
|
|
815
|
+
<di:waypoint x="116" y="329" />
|
|
816
|
+
<di:waypoint x="216" y="329" />
|
|
839
817
|
</bpmndi:BPMNEdge>
|
|
840
818
|
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_skip" bpmnElement="f_readiness_skip">
|
|
841
|
-
<di:waypoint x="266" y="
|
|
842
|
-
<di:waypoint x="566" y="
|
|
819
|
+
<di:waypoint x="266" y="329" />
|
|
820
|
+
<di:waypoint x="566" y="329" />
|
|
843
821
|
<bpmndi:BPMNLabel>
|
|
844
|
-
<dc:Bounds x="400" y="
|
|
822
|
+
<dc:Bounds x="400" y="307" width="32" height="14" />
|
|
845
823
|
</bpmndi:BPMNLabel>
|
|
846
824
|
</bpmndi:BPMNEdge>
|
|
847
825
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toPlan" bpmnElement="f_toPlan">
|
|
848
|
-
<di:waypoint x="666" y="
|
|
849
|
-
<di:waypoint x="766" y="
|
|
826
|
+
<di:waypoint x="666" y="329" />
|
|
827
|
+
<di:waypoint x="766" y="329" />
|
|
850
828
|
</bpmndi:BPMNEdge>
|
|
851
829
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlan" bpmnElement="f_toRecordPlan">
|
|
852
|
-
<di:waypoint x="866" y="
|
|
853
|
-
<di:waypoint x="966" y="
|
|
830
|
+
<di:waypoint x="866" y="329" />
|
|
831
|
+
<di:waypoint x="966" y="329" />
|
|
854
832
|
</bpmndi:BPMNEdge>
|
|
855
833
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toPlanEmptyGw" bpmnElement="f_toPlanEmptyGw">
|
|
856
|
-
<di:waypoint x="1066" y="
|
|
857
|
-
<di:waypoint x="1166" y="
|
|
834
|
+
<di:waypoint x="1066" y="329" />
|
|
835
|
+
<di:waypoint x="1166" y="329" />
|
|
858
836
|
</bpmndi:BPMNEdge>
|
|
859
837
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toReviewPlan" bpmnElement="f_toReviewPlan">
|
|
860
|
-
<di:waypoint x="1216" y="
|
|
861
|
-
<di:waypoint x="1316" y="
|
|
838
|
+
<di:waypoint x="1216" y="329" />
|
|
839
|
+
<di:waypoint x="1316" y="329" />
|
|
862
840
|
<bpmndi:BPMNLabel>
|
|
863
|
-
<dc:Bounds x="1234" y="
|
|
841
|
+
<dc:Bounds x="1234" y="307" width="64" height="14" />
|
|
864
842
|
</bpmndi:BPMNLabel>
|
|
865
843
|
</bpmndi:BPMNEdge>
|
|
866
844
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlanReview" bpmnElement="f_toRecordPlanReview">
|
|
867
|
-
<di:waypoint x="1416" y="
|
|
868
|
-
<di:waypoint x="1516" y="
|
|
845
|
+
<di:waypoint x="1416" y="329" />
|
|
846
|
+
<di:waypoint x="1516" y="329" />
|
|
869
847
|
</bpmndi:BPMNEdge>
|
|
870
848
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanReview" bpmnElement="f_toGwPlanReview">
|
|
871
|
-
<di:waypoint x="1616" y="
|
|
872
|
-
<di:waypoint x="1716" y="
|
|
849
|
+
<di:waypoint x="1616" y="329" />
|
|
850
|
+
<di:waypoint x="1716" y="329" />
|
|
873
851
|
</bpmndi:BPMNEdge>
|
|
874
852
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_proceed" bpmnElement="f_plan_proceed">
|
|
875
|
-
<di:waypoint x="1766" y="
|
|
876
|
-
<di:waypoint x="2216" y="
|
|
853
|
+
<di:waypoint x="1766" y="329" />
|
|
854
|
+
<di:waypoint x="2216" y="329" />
|
|
877
855
|
<bpmndi:BPMNLabel>
|
|
878
|
-
<dc:Bounds x="1961" y="
|
|
856
|
+
<dc:Bounds x="1961" y="307" width="60" height="14" />
|
|
879
857
|
</bpmndi:BPMNLabel>
|
|
880
858
|
</bpmndi:BPMNEdge>
|
|
881
859
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toImplement" bpmnElement="f_toImplement">
|
|
882
|
-
<di:waypoint x="2316" y="
|
|
883
|
-
<di:waypoint x="2416" y="
|
|
860
|
+
<di:waypoint x="2316" y="329" />
|
|
861
|
+
<di:waypoint x="2416" y="329" />
|
|
884
862
|
</bpmndi:BPMNEdge>
|
|
885
863
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordWave" bpmnElement="f_toRecordWave">
|
|
886
|
-
<di:waypoint x="
|
|
887
|
-
<di:waypoint x="
|
|
864
|
+
<di:waypoint x="3854" y="329" />
|
|
865
|
+
<di:waypoint x="3954" y="329" />
|
|
888
866
|
</bpmndi:BPMNEdge>
|
|
889
867
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
|
|
890
|
-
<di:waypoint x="
|
|
891
|
-
<di:waypoint x="
|
|
868
|
+
<di:waypoint x="4054" y="329" />
|
|
869
|
+
<di:waypoint x="4154" y="329" />
|
|
892
870
|
</bpmndi:BPMNEdge>
|
|
893
871
|
<bpmndi:BPMNEdge id="BPMNEdge_f_skipTrialMerge" bpmnElement="f_skipTrialMerge">
|
|
894
|
-
<di:waypoint x="
|
|
895
|
-
<di:waypoint x="
|
|
872
|
+
<di:waypoint x="4204" y="329" />
|
|
873
|
+
<di:waypoint x="5404" y="329" />
|
|
896
874
|
<bpmndi:BPMNLabel>
|
|
897
|
-
<dc:Bounds x="
|
|
875
|
+
<dc:Bounds x="4726" y="307" width="32" height="14" />
|
|
898
876
|
</bpmndi:BPMNLabel>
|
|
899
877
|
</bpmndi:BPMNEdge>
|
|
900
878
|
<bpmndi:BPMNEdge id="BPMNEdge_f_done" bpmnElement="f_done">
|
|
901
|
-
<di:waypoint x="
|
|
902
|
-
<di:waypoint x="
|
|
879
|
+
<di:waypoint x="5454" y="329" />
|
|
880
|
+
<di:waypoint x="5554" y="329" />
|
|
903
881
|
<bpmndi:BPMNLabel>
|
|
904
|
-
<dc:Bounds x="
|
|
882
|
+
<dc:Bounds x="5488" y="307" width="32" height="14" />
|
|
905
883
|
</bpmndi:BPMNLabel>
|
|
906
884
|
</bpmndi:BPMNEdge>
|
|
907
885
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toEnd" bpmnElement="f_toEnd">
|
|
908
|
-
<di:waypoint x="
|
|
909
|
-
<di:waypoint x="
|
|
886
|
+
<di:waypoint x="5654" y="329" />
|
|
887
|
+
<di:waypoint x="5754" y="329" />
|
|
910
888
|
</bpmndi:BPMNEdge>
|
|
911
889
|
<bpmndi:BPMNEdge id="BPMNEdge_f_empty_revise" bpmnElement="f_empty_revise">
|
|
912
|
-
<di:waypoint x="1566" y="
|
|
913
|
-
<di:waypoint x="1566" y="
|
|
914
|
-
<di:waypoint x="816" y="
|
|
915
|
-
<di:waypoint x="816" y="
|
|
890
|
+
<di:waypoint x="1566" y="674" />
|
|
891
|
+
<di:waypoint x="1566" y="709" />
|
|
892
|
+
<di:waypoint x="816" y="709" />
|
|
893
|
+
<di:waypoint x="816" y="369" />
|
|
916
894
|
<bpmndi:BPMNLabel>
|
|
917
|
-
<dc:Bounds x="1168" y="
|
|
895
|
+
<dc:Bounds x="1168" y="687" width="46" height="14" />
|
|
918
896
|
</bpmndi:BPMNLabel>
|
|
919
897
|
</bpmndi:BPMNEdge>
|
|
920
898
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
|
|
921
|
-
<di:waypoint x="1741" y="
|
|
922
|
-
<di:waypoint x="1741" y="
|
|
923
|
-
<di:waypoint x="816" y="249" />
|
|
899
|
+
<di:waypoint x="1741" y="304" />
|
|
900
|
+
<di:waypoint x="1741" y="269" />
|
|
924
901
|
<di:waypoint x="816" y="269" />
|
|
902
|
+
<di:waypoint x="816" y="289" />
|
|
925
903
|
<bpmndi:BPMNLabel>
|
|
926
|
-
<dc:Bounds x="1256" y="
|
|
904
|
+
<dc:Bounds x="1256" y="247" width="46" height="14" />
|
|
927
905
|
</bpmndi:BPMNLabel>
|
|
928
906
|
</bpmndi:BPMNEdge>
|
|
929
907
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_revise" bpmnElement="f_plan_answer_revise">
|
|
930
|
-
<di:waypoint x="2091" y="
|
|
931
|
-
<di:waypoint x="2091" y="
|
|
932
|
-
<di:waypoint x="816" y="
|
|
933
|
-
<di:waypoint x="816" y="
|
|
908
|
+
<di:waypoint x="2091" y="514" />
|
|
909
|
+
<di:waypoint x="2091" y="569" />
|
|
910
|
+
<di:waypoint x="816" y="569" />
|
|
911
|
+
<di:waypoint x="816" y="369" />
|
|
934
912
|
<bpmndi:BPMNLabel>
|
|
935
|
-
<dc:Bounds x="1431" y="
|
|
913
|
+
<dc:Bounds x="1431" y="547" width="46" height="14" />
|
|
936
914
|
</bpmndi:BPMNLabel>
|
|
937
915
|
</bpmndi:BPMNEdge>
|
|
938
916
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toRecordTrialMerge" bpmnElement="f_toRecordTrialMerge">
|
|
939
|
-
<di:waypoint x="
|
|
940
|
-
<di:waypoint x="
|
|
917
|
+
<di:waypoint x="4404" y="969" />
|
|
918
|
+
<di:waypoint x="4504" y="969" />
|
|
941
919
|
</bpmndi:BPMNEdge>
|
|
942
920
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
|
|
943
|
-
<di:waypoint x="
|
|
944
|
-
<di:waypoint x="
|
|
921
|
+
<di:waypoint x="4604" y="969" />
|
|
922
|
+
<di:waypoint x="4704" y="969" />
|
|
945
923
|
</bpmndi:BPMNEdge>
|
|
946
924
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialProceed" bpmnElement="f_trialProceed">
|
|
947
|
-
<di:waypoint x="
|
|
948
|
-
<di:waypoint x="
|
|
949
|
-
<di:waypoint x="
|
|
925
|
+
<di:waypoint x="4754" y="969" />
|
|
926
|
+
<di:waypoint x="5429" y="969" />
|
|
927
|
+
<di:waypoint x="5429" y="354" />
|
|
950
928
|
<bpmndi:BPMNLabel>
|
|
951
|
-
<dc:Bounds x="
|
|
929
|
+
<dc:Bounds x="5065" y="947" width="53" height="14" />
|
|
952
930
|
</bpmndi:BPMNLabel>
|
|
953
931
|
</bpmndi:BPMNEdge>
|
|
954
932
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerRerun" bpmnElement="f_trialAnswerRerun">
|
|
955
|
-
<di:waypoint x="
|
|
956
|
-
<di:waypoint x="
|
|
957
|
-
<di:waypoint x="
|
|
958
|
-
<di:waypoint x="
|
|
933
|
+
<di:waypoint x="5279" y="464" />
|
|
934
|
+
<di:waypoint x="5279" y="429" />
|
|
935
|
+
<di:waypoint x="4354" y="429" />
|
|
936
|
+
<di:waypoint x="4354" y="929" />
|
|
959
937
|
<bpmndi:BPMNLabel>
|
|
960
|
-
<dc:Bounds x="
|
|
938
|
+
<dc:Bounds x="4794" y="407" width="46" height="14" />
|
|
961
939
|
</bpmndi:BPMNLabel>
|
|
962
940
|
</bpmndi:BPMNEdge>
|
|
963
941
|
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_gate" bpmnElement="f_readiness_gate">
|
|
964
|
-
<di:waypoint x="241" y="
|
|
965
|
-
<di:waypoint x="241" y="
|
|
966
|
-
<di:waypoint x="366" y="
|
|
942
|
+
<di:waypoint x="241" y="354" />
|
|
943
|
+
<di:waypoint x="241" y="489" />
|
|
944
|
+
<di:waypoint x="366" y="489" />
|
|
967
945
|
<bpmndi:BPMNLabel>
|
|
968
|
-
<dc:Bounds x="246" y="
|
|
946
|
+
<dc:Bounds x="246" y="415" width="67" height="14" />
|
|
969
947
|
</bpmndi:BPMNLabel>
|
|
970
948
|
</bpmndi:BPMNEdge>
|
|
971
949
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_empty" bpmnElement="f_plan_empty">
|
|
972
|
-
<di:waypoint x="1191" y="334" />
|
|
973
950
|
<di:waypoint x="1191" y="354" />
|
|
974
|
-
<di:waypoint x="
|
|
975
|
-
<di:waypoint x="2136" y="
|
|
976
|
-
<di:waypoint x="
|
|
977
|
-
<di:waypoint x="1296" y="
|
|
978
|
-
<di:waypoint x="
|
|
951
|
+
<di:waypoint x="1191" y="374" />
|
|
952
|
+
<di:waypoint x="2136" y="374" />
|
|
953
|
+
<di:waypoint x="2136" y="589" />
|
|
954
|
+
<di:waypoint x="1296" y="589" />
|
|
955
|
+
<di:waypoint x="1296" y="629" />
|
|
956
|
+
<di:waypoint x="1316" y="629" />
|
|
979
957
|
<bpmndi:BPMNLabel>
|
|
980
|
-
<dc:Bounds x="2141" y="
|
|
958
|
+
<dc:Bounds x="2141" y="495" width="57" height="14" />
|
|
981
959
|
</bpmndi:BPMNLabel>
|
|
982
960
|
</bpmndi:BPMNEdge>
|
|
983
961
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_escalate" bpmnElement="f_plan_escalate">
|
|
984
|
-
<di:waypoint x="1741" y="
|
|
985
|
-
<di:waypoint x="1741" y="
|
|
986
|
-
<di:waypoint x="1866" y="
|
|
962
|
+
<di:waypoint x="1741" y="354" />
|
|
963
|
+
<di:waypoint x="1741" y="489" />
|
|
964
|
+
<di:waypoint x="1866" y="489" />
|
|
987
965
|
<bpmndi:BPMNLabel>
|
|
988
|
-
<dc:Bounds x="1746" y="
|
|
966
|
+
<dc:Bounds x="1746" y="415" width="67" height="14" />
|
|
989
967
|
</bpmndi:BPMNLabel>
|
|
990
968
|
</bpmndi:BPMNEdge>
|
|
991
969
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_proceed" bpmnElement="f_plan_answer_proceed">
|
|
992
|
-
<di:waypoint x="2116" y="
|
|
993
|
-
<di:waypoint x="2266" y="
|
|
994
|
-
<di:waypoint x="2266" y="
|
|
970
|
+
<di:waypoint x="2116" y="489" />
|
|
971
|
+
<di:waypoint x="2266" y="489" />
|
|
972
|
+
<di:waypoint x="2266" y="369" />
|
|
995
973
|
<bpmndi:BPMNLabel>
|
|
996
|
-
<dc:Bounds x="2165" y="
|
|
974
|
+
<dc:Bounds x="2165" y="467" width="53" height="14" />
|
|
997
975
|
</bpmndi:BPMNLabel>
|
|
998
976
|
</bpmndi:BPMNEdge>
|
|
999
977
|
<bpmndi:BPMNEdge id="BPMNEdge_f_runTrialMerge" bpmnElement="f_runTrialMerge">
|
|
1000
|
-
<di:waypoint x="
|
|
1001
|
-
<di:waypoint x="
|
|
1002
|
-
<di:waypoint x="
|
|
978
|
+
<di:waypoint x="4179" y="354" />
|
|
979
|
+
<di:waypoint x="4179" y="969" />
|
|
980
|
+
<di:waypoint x="4304" y="969" />
|
|
1003
981
|
<bpmndi:BPMNLabel>
|
|
1004
|
-
<dc:Bounds x="
|
|
982
|
+
<dc:Bounds x="4184" y="655" width="25" height="14" />
|
|
1005
983
|
</bpmndi:BPMNLabel>
|
|
1006
984
|
</bpmndi:BPMNEdge>
|
|
1007
985
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialEscalate" bpmnElement="f_trialEscalate">
|
|
1008
|
-
<di:waypoint x="
|
|
1009
|
-
<di:waypoint x="
|
|
1010
|
-
<di:waypoint x="
|
|
986
|
+
<di:waypoint x="4729" y="944" />
|
|
987
|
+
<di:waypoint x="4729" y="489" />
|
|
988
|
+
<di:waypoint x="4854" y="489" />
|
|
1011
989
|
<bpmndi:BPMNLabel>
|
|
1012
|
-
<dc:Bounds x="
|
|
990
|
+
<dc:Bounds x="4734" y="710" width="85" height="14" />
|
|
1013
991
|
</bpmndi:BPMNLabel>
|
|
1014
992
|
</bpmndi:BPMNEdge>
|
|
1015
993
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerProceed" bpmnElement="f_trialAnswerProceed">
|
|
1016
|
-
<di:waypoint x="
|
|
1017
|
-
<di:waypoint x="
|
|
1018
|
-
<di:waypoint x="
|
|
994
|
+
<di:waypoint x="5279" y="464" />
|
|
995
|
+
<di:waypoint x="5279" y="329" />
|
|
996
|
+
<di:waypoint x="5404" y="329" />
|
|
1019
997
|
<bpmndi:BPMNLabel>
|
|
1020
|
-
<dc:Bounds x="
|
|
998
|
+
<dc:Bounds x="5284" y="390" width="53" height="14" />
|
|
1021
999
|
</bpmndi:BPMNLabel>
|
|
1022
1000
|
</bpmndi:BPMNEdge>
|
|
1023
1001
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerAbandon" bpmnElement="f_trialAnswerAbandon">
|
|
1024
|
-
<di:waypoint x="
|
|
1025
|
-
<di:waypoint x="
|
|
1026
|
-
<di:waypoint x="
|
|
1027
|
-
<di:waypoint x="
|
|
1028
|
-
<di:waypoint x="
|
|
1002
|
+
<di:waypoint x="5279" y="464" />
|
|
1003
|
+
<di:waypoint x="5279" y="291" />
|
|
1004
|
+
<di:waypoint x="5534" y="291" />
|
|
1005
|
+
<di:waypoint x="5534" y="329" />
|
|
1006
|
+
<di:waypoint x="5554" y="329" />
|
|
1029
1007
|
<bpmndi:BPMNLabel>
|
|
1030
|
-
<dc:Bounds x="
|
|
1008
|
+
<dc:Bounds x="5380" y="269" width="53" height="14" />
|
|
1031
1009
|
</bpmndi:BPMNLabel>
|
|
1032
1010
|
</bpmndi:BPMNEdge>
|
|
1033
1011
|
<bpmndi:BPMNEdge id="BPMNEdge_f_moreWaves" bpmnElement="f_moreWaves">
|
|
1034
|
-
<di:waypoint x="
|
|
1035
|
-
<di:waypoint x="
|
|
1036
|
-
<di:waypoint x="
|
|
1037
|
-
<di:waypoint x="
|
|
1038
|
-
<di:waypoint x="
|
|
1039
|
-
<di:waypoint x="
|
|
1040
|
-
<di:waypoint x="
|
|
1041
|
-
<di:waypoint x="
|
|
1042
|
-
<di:waypoint x="
|
|
1012
|
+
<di:waypoint x="5454" y="329" />
|
|
1013
|
+
<di:waypoint x="5474" y="329" />
|
|
1014
|
+
<di:waypoint x="5474" y="354" />
|
|
1015
|
+
<di:waypoint x="5508" y="354" />
|
|
1016
|
+
<di:waypoint x="5508" y="509" />
|
|
1017
|
+
<di:waypoint x="5586" y="509" />
|
|
1018
|
+
<di:waypoint x="5586" y="527" />
|
|
1019
|
+
<di:waypoint x="5604" y="527" />
|
|
1020
|
+
<di:waypoint x="5604" y="507" />
|
|
1043
1021
|
<bpmndi:BPMNLabel>
|
|
1044
|
-
<dc:Bounds x="
|
|
1022
|
+
<dc:Bounds x="5513" y="425" width="35" height="14" />
|
|
1045
1023
|
</bpmndi:BPMNLabel>
|
|
1046
1024
|
</bpmndi:BPMNEdge>
|
|
1047
1025
|
<bpmndi:BPMNEdge id="BPMNEdge_f_readiness_done" bpmnElement="f_readiness_done">
|
|
1048
|
-
<di:waypoint x="466" y="
|
|
1049
|
-
<di:waypoint x="616" y="
|
|
1050
|
-
<di:waypoint x="616" y="
|
|
1026
|
+
<di:waypoint x="466" y="489" />
|
|
1027
|
+
<di:waypoint x="616" y="489" />
|
|
1028
|
+
<di:waypoint x="616" y="369" />
|
|
1051
1029
|
</bpmndi:BPMNEdge>
|
|
1052
1030
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwEmptyAnswer" bpmnElement="f_toGwEmptyAnswer">
|
|
1053
|
-
<di:waypoint x="1416" y="
|
|
1054
|
-
<di:waypoint x="1541" y="
|
|
1031
|
+
<di:waypoint x="1416" y="649" />
|
|
1032
|
+
<di:waypoint x="1541" y="649" />
|
|
1055
1033
|
</bpmndi:BPMNEdge>
|
|
1056
1034
|
<bpmndi:BPMNEdge id="BPMNEdge_f_empty_accept" bpmnElement="f_empty_accept">
|
|
1057
|
-
<di:waypoint x="1591" y="
|
|
1058
|
-
<di:waypoint x="1723" y="
|
|
1035
|
+
<di:waypoint x="1591" y="649" />
|
|
1036
|
+
<di:waypoint x="1723" y="649" />
|
|
1059
1037
|
<bpmndi:BPMNLabel>
|
|
1060
|
-
<dc:Bounds x="1631" y="
|
|
1038
|
+
<dc:Bounds x="1631" y="616" width="53" height="28" />
|
|
1061
1039
|
</bpmndi:BPMNLabel>
|
|
1062
1040
|
</bpmndi:BPMNEdge>
|
|
1063
1041
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanAnswer" bpmnElement="f_toGwPlanAnswer">
|
|
1064
|
-
<di:waypoint x="1966" y="
|
|
1065
|
-
<di:waypoint x="2066" y="
|
|
1042
|
+
<di:waypoint x="1966" y="489" />
|
|
1043
|
+
<di:waypoint x="2066" y="489" />
|
|
1066
1044
|
</bpmndi:BPMNEdge>
|
|
1067
1045
|
<bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrialAnswer" bpmnElement="f_toGwTrialAnswer">
|
|
1068
|
-
<di:waypoint x="
|
|
1069
|
-
<di:waypoint x="
|
|
1046
|
+
<di:waypoint x="4954" y="489" />
|
|
1047
|
+
<di:waypoint x="5054" y="489" />
|
|
1070
1048
|
</bpmndi:BPMNEdge>
|
|
1071
1049
|
<bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
|
|
1072
|
-
<di:waypoint x="
|
|
1073
|
-
<di:waypoint x="
|
|
1050
|
+
<di:waypoint x="5154" y="489" />
|
|
1051
|
+
<di:waypoint x="5254" y="489" />
|
|
1074
1052
|
</bpmndi:BPMNEdge>
|
|
1075
1053
|
<bpmndi:BPMNEdge id="BPMNEdge_f_waveMerged" bpmnElement="f_waveMerged">
|
|
1076
|
-
<di:waypoint x="
|
|
1077
|
-
<di:waypoint x="
|
|
1078
|
-
<di:waypoint x="2266" y="
|
|
1079
|
-
<di:waypoint x="2266" y="
|
|
1054
|
+
<di:waypoint x="5604" y="507" />
|
|
1055
|
+
<di:waypoint x="5604" y="598" />
|
|
1056
|
+
<di:waypoint x="2266" y="598" />
|
|
1057
|
+
<di:waypoint x="2266" y="369" />
|
|
1080
1058
|
</bpmndi:BPMNEdge>
|
|
1081
1059
|
<bpmndi:BPMNEdge id="BPMNEdge_f_plan_sla" bpmnElement="f_plan_sla">
|
|
1082
|
-
<di:waypoint x="1916" y="527" />
|
|
1083
1060
|
<di:waypoint x="1916" y="547" />
|
|
1084
|
-
<di:waypoint x="
|
|
1085
|
-
<di:waypoint x="816" y="
|
|
1061
|
+
<di:waypoint x="1916" y="567" />
|
|
1062
|
+
<di:waypoint x="816" y="567" />
|
|
1063
|
+
<di:waypoint x="816" y="369" />
|
|
1086
1064
|
<bpmndi:BPMNLabel>
|
|
1087
|
-
<dc:Bounds x="1326" y="
|
|
1065
|
+
<dc:Bounds x="1326" y="534" width="81" height="28" />
|
|
1088
1066
|
</bpmndi:BPMNLabel>
|
|
1089
1067
|
</bpmndi:BPMNEdge>
|
|
1090
1068
|
<bpmndi:BPMNEdge id="BPMNEdge_f_trial_sla" bpmnElement="f_trial_sla">
|
|
1091
|
-
<di:waypoint x="
|
|
1092
|
-
<di:waypoint x="
|
|
1093
|
-
<di:waypoint x="
|
|
1094
|
-
<di:waypoint x="
|
|
1069
|
+
<di:waypoint x="4904" y="547" />
|
|
1070
|
+
<di:waypoint x="4904" y="909" />
|
|
1071
|
+
<di:waypoint x="4354" y="909" />
|
|
1072
|
+
<di:waypoint x="4354" y="929" />
|
|
1095
1073
|
<bpmndi:BPMNLabel>
|
|
1096
|
-
<dc:Bounds x="
|
|
1074
|
+
<dc:Bounds x="4592" y="876" width="74" height="28" />
|
|
1097
1075
|
</bpmndi:BPMNLabel>
|
|
1098
1076
|
</bpmndi:BPMNEdge>
|
|
1099
1077
|
<bpmndi:BPMNShape id="BPMNShape_w_start" bpmnElement="w_start">
|
|
@@ -1126,40 +1104,31 @@
|
|
|
1126
1104
|
<bpmndi:BPMNShape id="BPMNShape_wait-caps-timeout" bpmnElement="wait-caps-timeout">
|
|
1127
1105
|
<dc:Bounds x="3092" y="462" width="36" height="36" />
|
|
1128
1106
|
<bpmndi:BPMNLabel>
|
|
1129
|
-
<dc:Bounds x="3068" y="
|
|
1130
|
-
</bpmndi:BPMNLabel>
|
|
1131
|
-
</bpmndi:BPMNShape>
|
|
1132
|
-
<bpmndi:BPMNShape id="BPMNShape_implement-task" bpmnElement="implement-task">
|
|
1133
|
-
<dc:Bounds x="3228" y="120" width="100" height="80" />
|
|
1134
|
-
</bpmndi:BPMNShape>
|
|
1135
|
-
<bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
|
|
1136
|
-
<dc:Bounds x="3428" y="135" width="50" height="50" />
|
|
1137
|
-
<bpmndi:BPMNLabel>
|
|
1138
|
-
<dc:Bounds x="3418" y="102" width="70" height="28" />
|
|
1107
|
+
<dc:Bounds x="3068" y="503" width="84" height="42" />
|
|
1139
1108
|
</bpmndi:BPMNLabel>
|
|
1140
1109
|
</bpmndi:BPMNShape>
|
|
1141
|
-
<bpmndi:BPMNShape id="
|
|
1110
|
+
<bpmndi:BPMNShape id="BPMNShape_implement-cell-call" bpmnElement="implement-cell-call">
|
|
1142
1111
|
<dc:Bounds x="3578" y="120" width="100" height="80" />
|
|
1143
1112
|
</bpmndi:BPMNShape>
|
|
1144
1113
|
<bpmndi:BPMNShape id="BPMNShape_feature-escalation" bpmnElement="feature-escalation">
|
|
1145
|
-
<dc:Bounds x="
|
|
1114
|
+
<dc:Bounds x="3228" y="440" width="100" height="80" />
|
|
1146
1115
|
</bpmndi:BPMNShape>
|
|
1147
1116
|
<bpmndi:BPMNShape id="BPMNShape_w_gw_answer" bpmnElement="w_gw_answer" isMarkerVisible="true">
|
|
1148
|
-
<dc:Bounds x="
|
|
1117
|
+
<dc:Bounds x="3428" y="455" width="50" height="50" />
|
|
1149
1118
|
<bpmndi:BPMNLabel>
|
|
1150
|
-
<dc:Bounds x="
|
|
1119
|
+
<dc:Bounds x="3425" y="510" width="56" height="14" />
|
|
1151
1120
|
</bpmndi:BPMNLabel>
|
|
1152
1121
|
</bpmndi:BPMNShape>
|
|
1153
1122
|
<bpmndi:BPMNShape id="BPMNShape_w_end" bpmnElement="w_end">
|
|
1154
|
-
<dc:Bounds x="
|
|
1123
|
+
<dc:Bounds x="3778" y="142" width="36" height="36" />
|
|
1155
1124
|
<bpmndi:BPMNLabel>
|
|
1156
|
-
<dc:Bounds x="
|
|
1125
|
+
<dc:Bounds x="3763" y="123" width="66" height="14" />
|
|
1157
1126
|
</bpmndi:BPMNLabel>
|
|
1158
1127
|
</bpmndi:BPMNShape>
|
|
1159
1128
|
<bpmndi:BPMNShape id="BPMNShape_be_feature_sla" bpmnElement="be_feature_sla">
|
|
1160
|
-
<dc:Bounds x="
|
|
1129
|
+
<dc:Bounds x="3260" y="502" width="36" height="36" />
|
|
1161
1130
|
<bpmndi:BPMNLabel>
|
|
1162
|
-
<dc:Bounds x="
|
|
1131
|
+
<dc:Bounds x="3236" y="563" width="84" height="14" />
|
|
1163
1132
|
</bpmndi:BPMNLabel>
|
|
1164
1133
|
</bpmndi:BPMNShape>
|
|
1165
1134
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toCapsPrepare" bpmnElement="w_toCapsPrepare">
|
|
@@ -1172,45 +1141,31 @@
|
|
|
1172
1141
|
</bpmndi:BPMNEdge>
|
|
1173
1142
|
<bpmndi:BPMNEdge id="BPMNEdge_w_noNeeds" bpmnElement="w_noNeeds">
|
|
1174
1143
|
<di:waypoint x="2842" y="160" />
|
|
1175
|
-
<di:waypoint x="3228" y="160" />
|
|
1176
|
-
<bpmndi:BPMNLabel>
|
|
1177
|
-
<dc:Bounds x="3019" y="138" width="32" height="14" />
|
|
1178
|
-
</bpmndi:BPMNLabel>
|
|
1179
|
-
</bpmndi:BPMNEdge>
|
|
1180
|
-
<bpmndi:BPMNEdge id="BPMNEdge_w_toGw" bpmnElement="w_toGw">
|
|
1181
|
-
<di:waypoint x="3328" y="160" />
|
|
1182
|
-
<di:waypoint x="3428" y="160" />
|
|
1183
|
-
</bpmndi:BPMNEdge>
|
|
1184
|
-
<bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
|
|
1185
|
-
<di:waypoint x="3478" y="160" />
|
|
1186
1144
|
<di:waypoint x="3578" y="160" />
|
|
1187
1145
|
<bpmndi:BPMNLabel>
|
|
1188
|
-
<dc:Bounds x="
|
|
1146
|
+
<dc:Bounds x="3194" y="138" width="32" height="14" />
|
|
1189
1147
|
</bpmndi:BPMNLabel>
|
|
1190
1148
|
</bpmndi:BPMNEdge>
|
|
1191
|
-
<bpmndi:BPMNEdge id="
|
|
1149
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_toEnd" bpmnElement="w_toEnd">
|
|
1192
1150
|
<di:waypoint x="3678" y="160" />
|
|
1193
1151
|
<di:waypoint x="3778" y="160" />
|
|
1194
1152
|
</bpmndi:BPMNEdge>
|
|
1195
|
-
<bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
|
|
1196
|
-
<di:waypoint x="3878" y="160" />
|
|
1197
|
-
<di:waypoint x="3978" y="160" />
|
|
1198
|
-
</bpmndi:BPMNEdge>
|
|
1199
|
-
<bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
|
|
1200
|
-
<di:waypoint x="4028" y="160" />
|
|
1201
|
-
<di:waypoint x="4128" y="160" />
|
|
1202
|
-
<bpmndi:BPMNLabel>
|
|
1203
|
-
<dc:Bounds x="4052" y="168" width="53" height="14" />
|
|
1204
|
-
</bpmndi:BPMNLabel>
|
|
1205
|
-
</bpmndi:BPMNEdge>
|
|
1206
1153
|
<bpmndi:BPMNEdge id="BPMNEdge_w_capsToWait" bpmnElement="w_capsToWait">
|
|
1207
1154
|
<di:waypoint x="2992" y="320" />
|
|
1208
1155
|
<di:waypoint x="3092" y="320" />
|
|
1209
1156
|
</bpmndi:BPMNEdge>
|
|
1210
1157
|
<bpmndi:BPMNEdge id="BPMNEdge_w_capsResolved" bpmnElement="w_capsResolved">
|
|
1211
1158
|
<di:waypoint x="3128" y="320" />
|
|
1212
|
-
<di:waypoint x="
|
|
1213
|
-
<di:waypoint x="
|
|
1159
|
+
<di:waypoint x="3628" y="320" />
|
|
1160
|
+
<di:waypoint x="3628" y="200" />
|
|
1161
|
+
</bpmndi:BPMNEdge>
|
|
1162
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
|
|
1163
|
+
<di:waypoint x="3478" y="480" />
|
|
1164
|
+
<di:waypoint x="3796" y="480" />
|
|
1165
|
+
<di:waypoint x="3796" y="178" />
|
|
1166
|
+
<bpmndi:BPMNLabel>
|
|
1167
|
+
<dc:Bounds x="3621" y="488" width="53" height="14" />
|
|
1168
|
+
</bpmndi:BPMNLabel>
|
|
1214
1169
|
</bpmndi:BPMNEdge>
|
|
1215
1170
|
<bpmndi:BPMNEdge id="BPMNEdge_w_toWaitCaps" bpmnElement="w_toWaitCaps">
|
|
1216
1171
|
<di:waypoint x="2817" y="185" />
|
|
@@ -1225,41 +1180,35 @@
|
|
|
1225
1180
|
<di:waypoint x="2967" y="480" />
|
|
1226
1181
|
<di:waypoint x="3092" y="480" />
|
|
1227
1182
|
</bpmndi:BPMNEdge>
|
|
1228
|
-
<bpmndi:BPMNEdge id="
|
|
1229
|
-
<di:waypoint x="
|
|
1230
|
-
<di:waypoint x="
|
|
1231
|
-
<di:waypoint x="
|
|
1232
|
-
<di:waypoint x="
|
|
1233
|
-
<di:waypoint x="
|
|
1183
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_answerLoop" bpmnElement="w_answerLoop">
|
|
1184
|
+
<di:waypoint x="3478" y="480" />
|
|
1185
|
+
<di:waypoint x="3498" y="480" />
|
|
1186
|
+
<di:waypoint x="3498" y="455" />
|
|
1187
|
+
<di:waypoint x="3698" y="455" />
|
|
1188
|
+
<di:waypoint x="3698" y="198" />
|
|
1189
|
+
<di:waypoint x="3678" y="198" />
|
|
1234
1190
|
<bpmndi:BPMNLabel>
|
|
1235
|
-
<dc:Bounds x="
|
|
1191
|
+
<dc:Bounds x="3574" y="433" width="49" height="14" />
|
|
1236
1192
|
</bpmndi:BPMNLabel>
|
|
1237
1193
|
</bpmndi:BPMNEdge>
|
|
1238
|
-
<bpmndi:BPMNEdge id="
|
|
1239
|
-
<di:waypoint x="
|
|
1240
|
-
<di:waypoint x="
|
|
1241
|
-
<di:waypoint x="4146" y="240" />
|
|
1242
|
-
<di:waypoint x="4146" y="178" />
|
|
1194
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_capsTimeout" bpmnElement="w_capsTimeout">
|
|
1195
|
+
<di:waypoint x="3128" y="480" />
|
|
1196
|
+
<di:waypoint x="3228" y="480" />
|
|
1243
1197
|
<bpmndi:BPMNLabel>
|
|
1244
|
-
<dc:Bounds x="
|
|
1198
|
+
<dc:Bounds x="3147" y="458" width="63" height="14" />
|
|
1245
1199
|
</bpmndi:BPMNLabel>
|
|
1246
1200
|
</bpmndi:BPMNEdge>
|
|
1247
|
-
<bpmndi:BPMNEdge id="
|
|
1248
|
-
<di:waypoint x="
|
|
1249
|
-
<di:waypoint x="
|
|
1250
|
-
<di:waypoint x="4146" y="238" />
|
|
1251
|
-
<di:waypoint x="4146" y="178" />
|
|
1252
|
-
<bpmndi:BPMNLabel>
|
|
1253
|
-
<dc:Bounds x="3903" y="205" width="88" height="28" />
|
|
1254
|
-
</bpmndi:BPMNLabel>
|
|
1201
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
|
|
1202
|
+
<di:waypoint x="3328" y="480" />
|
|
1203
|
+
<di:waypoint x="3428" y="480" />
|
|
1255
1204
|
</bpmndi:BPMNEdge>
|
|
1256
|
-
<bpmndi:BPMNEdge id="
|
|
1257
|
-
<di:waypoint x="
|
|
1258
|
-
<di:waypoint x="
|
|
1259
|
-
<di:waypoint x="
|
|
1260
|
-
<di:waypoint x="
|
|
1205
|
+
<bpmndi:BPMNEdge id="BPMNEdge_w_sla" bpmnElement="w_sla">
|
|
1206
|
+
<di:waypoint x="3278" y="538" />
|
|
1207
|
+
<di:waypoint x="3278" y="558" />
|
|
1208
|
+
<di:waypoint x="3796" y="558" />
|
|
1209
|
+
<di:waypoint x="3796" y="178" />
|
|
1261
1210
|
<bpmndi:BPMNLabel>
|
|
1262
|
-
<dc:Bounds x="
|
|
1211
|
+
<dc:Bounds x="3493" y="525" width="88" height="28" />
|
|
1263
1212
|
</bpmndi:BPMNLabel>
|
|
1264
1213
|
</bpmndi:BPMNEdge>
|
|
1265
1214
|
</bpmndi:BPMNPlane>
|