BPMN_Projekt/Rechnungseingang/target/process-test-coverage/com.bpmn.Rechnungseingang.ProcessUnitTest/Rechnungseingang.html
2020-05-29 10:46:50 +02:00

213 lines
No EOL
57 KiB
HTML
Raw Blame History

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
<style type="text/css">
html, body, #canvas {
height: 100%;
padding: 0;
}
.transaction-boundary {
background-color: rgba(180, 21, 21, 0.7);
border-radius: 1px;
min-height: 50px;
width: 3px;
}
.execution-listener {
background-color: rgba(21, 66, 180, 0.7);
color: White;
border-radius: 5px;
font-family: Arial;
font-size: 12px;
padding: 5px;
min-height: 16px;
min-width: 16px;
text-align: center;
white-space: nowrap;
}
.highlight:not(.djs-connection) .djs-visual > :nth-child(1) {
fill: rgba(66, 180, 21, 0.7) !important; /* color elements as green */
}
.highlight-running .djs-visual > :nth-child(1) {
fill: rgba(0, 198, 218, 0.7) !important; /* color still running flow nodes as blue */
}
#info-box {
margin-left: 20px;
margin-top: 15px;
padding: 10px;
table-layout: fixed;
border-collapse: collapse;
position: absolute;
top: 0px;
left: 0px;
font-family: sans-serif;
line-height: 150%;
font-size: 80%;
z-index: 1000;
background-color: rgba(255,255,255,0.90);
border-radius: 10px;
}
</style>
<title>Process Test Coverage Report</title>
</head>
<body>
<div id="info-box">
<div>Process Definition Name: Rechnungseingang</div>
<div>Coverage: 0<>%</div>
<div>Test Class: com.bpmn.Rechnungseingang.ProcessUnitTest</div>
</div>
<!-- element to draw bpmn diagram in -->
<div id="canvas"></div>
<!-- scripts -->
<!-- seed dependencies (required for demo only) -->
<script src="../bower_components/jquery/dist/jquery.js"></script>
<!-- bpmn-js viewer -->
<script src="../bower_components/bpmn-js/dist/bpmn-navigated-viewer.js"></script>
<!-- application -->
<script>
(function(NavigatedViewer, $) {
// create viewer
var bpmnViewer = new NavigatedViewer({
container: '#canvas'
});
// import function
function importXML(xml) {
// import diagram
bpmnViewer.importXML(xml, function(err) {
if (err) {
return console.error('could not import BPMN 2.0 diagram', err);
}
var canvas = bpmnViewer.get('canvas'),
overlays = bpmnViewer.get('overlays');
// zoom to fit full viewport
canvas.zoom('fit-viewport', true);
// visualizations
elementRegistry = bpmnViewer.get('elementRegistry');
var elements = elementRegistry.getAll();
console.log(elements);
for (var i = 0; i < elements.length; i++) {
var element = elements[i];
if (element.type != 'label') {
// Transaction Boundaries
if (element.businessObject.$attrs["camunda:asyncBefore"]
|| element.businessObject.$attrs["camunda:async"]
|| element.type == 'bpmn:ReceiveTask'
|| element.type == 'bpmn:UserTask'
|| element.type == 'bpmn:IntermediateCatchEvent'
) {
overlays.add(element.id, 'note', {
position: {
bottom: (element.type == 'bpmn:IntermediateCatchEvent' ? 18 : 40),
left: -4
},
html: '<div class="transaction-boundary"></div>'
});
}
if (element.businessObject.$attrs["camunda:asyncAfter"]) {
overlays.add(element.id, 'note', {
position: {
bottom: 19,
right: -1
},
html: '<div class="transaction-boundary"></div>'
});
}
if (element.businessObject.extensionElements) {
var extensionElements = element.businessObject.extensionElements.values;
for (var j = 0; j < extensionElements.length; j++) {
console.log(extensionElements[j]);
if (extensionElements[j].$type == 'camunda:executionListener') {
if (extensionElements[j].event == 'end') {
overlays.add(element.id, 'note', {
position: {
bottom: 0,
right: 0
},
html: '<div class="execution-listener">' + extensionElements[j].expression + '</div>'
});
}
if (extensionElements[j].event == 'start') {
overlays.add(element.id, 'note', {
position: {
bottom: 0,
left: 0
},
html: '<div class="execution-listener">' + extensionElements[j].expression + '</div>'
});
}
}
}
}
if (element.type == 'bpmn:SequenceFlow' && element.businessObject.conditionExpression) {
var position = {
left: 0
}
if (element.waypoints[0].y > element.waypoints[element.waypoints.length - 1].y) {
position.top = -29;
} else {
position.bottom = -3;
}
overlays.add(element.id, 'note', {
position: position,
html: '<div class="execution-listener">' + element.businessObject.conditionExpression.body + '</div>'
});
}
if (element.businessObject.$attrs["camunda:delegateExpression"]) {
overlays.add(element.id, 'note', {
position: {
bottom: -3,
left: 0
},
html: '<div class="execution-listener">' + element.businessObject.$attrs["camunda:delegateExpression"] + '</div>'
});
}
}
}
//YOUR ANNOTATIONS GO HERE
});
}
var diagramXML = '<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<bpmn:definitions xmlns:bpmn=\"http:\/\/www.omg.org\/spec\/BPMN\/20100524\/MODEL\" xmlns:bpmndi=\"http:\/\/www.omg.org\/spec\/BPMN\/20100524\/DI\" xmlns:di=\"http:\/\/www.omg.org\/spec\/DD\/20100524\/DI\" xmlns:dc=\"http:\/\/www.omg.org\/spec\/DD\/20100524\/DC\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xmlns:camunda=\"http:\/\/camunda.org\/schema\/1.0\/bpmn\" id=\"Definitions_1\" targetNamespace=\"http:\/\/bpmn.io\/schema\/bpmn\" exporter=\"Camunda Modeler\" exporterVersion=\"3.7.3\">\r\n <bpmn:collaboration id=\"Collaboration_1wzor0e\">\r\n <bpmn:participant id=\"Participant_0rhvdb2\" processRef=\"Rechnungseingang\" \/>\r\n <bpmn:participant id=\"Participant_1t6l9uu\" name=\"FI-System\" processRef=\"Process_0981kcr\" \/>\r\n <bpmn:participant id=\"Participant_18sv9vt\" name=\"ERP-System\" processRef=\"Process_16i5qhh\" \/>\r\n <bpmn:messageFlow id=\"Flow_19tf2ig\" sourceRef=\"Activity_1x7zph6\" targetRef=\"Event_1s4nmb2\" \/>\r\n <bpmn:messageFlow id=\"Flow_0y80b3b\" sourceRef=\"Event_0bdlqvi\" targetRef=\"Activity_1x7zph6\" \/>\r\n <bpmn:messageFlow id=\"Flow_1i1mf5g\" sourceRef=\"Activity_108exu6\" targetRef=\"Event_1d64cvt\" \/>\r\n <bpmn:messageFlow id=\"Flow_0wtoi84\" sourceRef=\"Event_16dcvqd\" targetRef=\"Activity_108exu6\" \/>\r\n <\/bpmn:collaboration>\r\n <bpmn:process id=\"Rechnungseingang\" name=\"Rechnungseingang\" isExecutable=\"true\">\r\n <bpmn:laneSet id=\"LaneSet_0vckjdx\">\r\n <bpmn:lane id=\"Lane_1srdryl\" name=\"Logistik\">\r\n <bpmn:flowNodeRef>Gateway_Lieferscheinpruefen<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_1b029kn<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Event_0p7ms1x<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_0snbir8<\/bpmn:flowNodeRef>\r\n <\/bpmn:lane>\r\n <bpmn:lane id=\"Lane_0f2qeym\" name=\"Poststelle\">\r\n <bpmn:flowNodeRef>Activity_1ovc6n5<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Event_1350hwr<\/bpmn:flowNodeRef>\r\n <\/bpmn:lane>\r\n <bpmn:lane id=\"Lane_0nfuckv\" name=\"Kreditorenbuchhaltung\">\r\n <bpmn:flowNodeRef>Activity_1uloahn<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_1m9g2lh<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_14ny5c3<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_060riuq<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_Zahlungsziel<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_0pq4lxv<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Event_1wc0kk6<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_Formalpruefen<\/bpmn:flowNodeRef>\r\n <\/bpmn:lane>\r\n <bpmn:lane id=\"Lane_1vcnl2m\" name=\"Workflow-Engine\">\r\n <bpmn:flowNodeRef>Gateway_HoeheRechnungssumme<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_0vq3ho7<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_0jdjg2h<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_0lfg2b2<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Event_1czv0yh<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_1y79rn0<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_01r6r9e<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_108exu6<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Activity_1x7zph6<\/bpmn:flowNodeRef>\r\n <\/bpmn:lane>\r\n <bpmn:lane id=\"Lane_0u5smjl\" name=\"Gesch\u00C3\u00A4ftsf\u00C3\u00BChrung\">\r\n <bpmn:flowNodeRef>Activity_1nxd2jr<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Event_1mwritv<\/bpmn:flowNodeRef>\r\n <bpmn:flowNodeRef>Gateway_Vorgangfreigeben<\/bpmn:flowNodeRef>\r\n <\/bpmn:lane>\r\n <\/bpmn:laneSet>\r\n <bpmn:exclusiveGateway id=\"Gateway_Lieferscheinpruefen\">\r\n <bpmn:incoming>Flow_17ny5uv<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1aijtcn<\/bpmn:outgoing>\r\n <bpmn:outgoing>Flow_1kjf7y9<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:userTask id=\"Activity_1b029kn\" name=\"Rechung mit Lieferschein pr\u00C3\u00BCfen\" camunda:formKey=\"embedded:app:forms\/Lieferscheinpruefen.html\">\r\n <bpmn:incoming>Flow_0bvc46v<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_17ny5uv<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_09aqjdw\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_0pntyt9\">\r\n <bpmn:sourceRef>DataObjectReference_1anpq9i<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_09aqjdw<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1x48yed\">\r\n <bpmn:sourceRef>DataObjectReference_1xniyui<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_09aqjdw<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:endEvent id=\"Event_0p7ms1x\">\r\n <bpmn:incoming>Flow_1kx09zm<\/bpmn:incoming>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1achcjf\" \/>\r\n <\/bpmn:endEvent>\r\n <bpmn:userTask id=\"Activity_0snbir8\" name=\"Lieferschein scannen\">\r\n <bpmn:incoming>Flow_1aijtcn<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1kx09zm<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_0v9359q\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1yslkvg\">\r\n <bpmn:sourceRef>DataObjectReference_07vv3e8<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_0v9359q<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_1msmwf9\">\r\n <bpmn:targetRef>DataObjectReference_1at71qu<\/bpmn:targetRef>\r\n <\/bpmn:dataOutputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_1at71qu\" name=\"Lieferschein (digital)\" dataObjectRef=\"DataObject_1lefyt0\" \/>\r\n <bpmn:dataObject id=\"DataObject_1lefyt0\" \/>\r\n <bpmn:userTask id=\"Activity_1uloahn\" name=\"Zahlungsziel &#38; Rechnngsdaten festsetzen\">\r\n <bpmn:extensionElements>\r\n <camunda:formData>\r\n <camunda:formField id=\"FormField_long_HoeheRechnungssumme\" label=\"Rechnungssumme eingeben\" type=\"long\" \/>\r\n <camunda:formField id=\"FormField_date_Zahlungsziel\" label=\"Zahlungsziel eingeben\" type=\"date\" \/>\r\n <\/camunda:formData>\r\n <\/bpmn:extensionElements>\r\n <bpmn:incoming>Flow_1kjf7y9<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_11zwlrd<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_1963d32\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_0e52hty\">\r\n <bpmn:sourceRef>DataObjectReference_1dwjb3m<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_1963d32<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:exclusiveGateway id=\"Gateway_1m9g2lh\">\r\n <bpmn:incoming>Flow_1g8ipne<\/bpmn:incoming>\r\n <bpmn:incoming>Flow_1h6imqg<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1jt6q3y<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:userTask id=\"Activity_14ny5c3\" name=\"Direkt-\u00C3\u00BCberweisung vorbereiten\">\r\n <bpmn:incoming>Flow_1wh7ll1<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1h6imqg<\/bpmn:outgoing>\r\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_132siqp\">\r\n <bpmn:targetRef>DataObjectReference_0plzlak<\/bpmn:targetRef>\r\n <\/bpmn:dataOutputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:userTask id=\"Activity_060riuq\" name=\"Termin-\u00C3\u00BCberweisung vorbereiten\">\r\n <bpmn:incoming>Flow_0fpeqn8<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1g8ipne<\/bpmn:outgoing>\r\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_1lhonxy\">\r\n <bpmn:targetRef>DataObjectReference_0plzlak<\/bpmn:targetRef>\r\n <\/bpmn:dataOutputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:exclusiveGateway id=\"Gateway_Zahlungsziel\">\r\n <bpmn:incoming>Flow_0uk4now<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0fpeqn8<\/bpmn:outgoing>\r\n <bpmn:outgoing>Flow_1wh7ll1<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:userTask id=\"Activity_0pq4lxv\" name=\"Rechnung formal pr\u00C3\u00BCfen\">\r\n <bpmn:extensionElements>\r\n <camunda:formData>\r\n <camunda:formField id=\"FormField_bool_Formalpruefen\" label=\"Rechnung formal richtig\" type=\"boolean\" \/>\r\n <\/camunda:formData>\r\n <\/bpmn:extensionElements>\r\n <bpmn:incoming>Flow_11zwlrd<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1dqx4w4<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_16649me\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_16w6f2o\">\r\n <bpmn:sourceRef>DataObjectReference_10dir96<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_16649me<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:endEvent id=\"Event_1wc0kk6\">\r\n <bpmn:incoming>Flow_1r20qxv<\/bpmn:incoming>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1a4xu8n\" \/>\r\n <\/bpmn:endEvent>\r\n <bpmn:exclusiveGateway id=\"Gateway_Formalpruefen\">\r\n <bpmn:incoming>Flow_1dqx4w4<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1a5ycoj<\/bpmn:outgoing>\r\n <bpmn:outgoing>Flow_1r20qxv<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_0plzlak\" name=\"\u00C3\u0153berweisung\" dataObjectRef=\"DataObject_0jce6w0\" \/>\r\n <bpmn:dataObject id=\"DataObject_0jce6w0\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_10dir96\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_0egqb2l\" \/>\r\n <bpmn:dataObject id=\"DataObject_0egqb2l\" \/>\r\n <bpmn:exclusiveGateway id=\"Gateway_HoeheRechnungssumme\">\r\n <bpmn:incoming>Flow_1hogzdg<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1sjj2gm<\/bpmn:outgoing>\r\n <bpmn:outgoing>Flow_06iwtj7<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:businessRuleTask id=\"Activity_0vq3ho7\" name=\"Zahlungsziel pr\u00C3\u00BCfen\" camunda:class=\"com.bpmn.Rechnungseingang.BerechnungZahlungsziel\">\r\n <bpmn:incoming>Flow_1fwe2w7<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0uk4now<\/bpmn:outgoing>\r\n <\/bpmn:businessRuleTask>\r\n <bpmn:businessRuleTask id=\"Activity_0jdjg2h\" name=\"H\u00C3\u00B6he der Rechnungssumme pr\u00C3\u00BCfen\" camunda:resultVariable=\"FormField_Boolean_HoeheRechnungssumme\" camunda:decisionRef=\"DMN_HoeheRechnungssumme\" camunda:mapDecisionResult=\"singleEntry\">\r\n <bpmn:incoming>Flow_1mj7tm1<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1hogzdg<\/bpmn:outgoing>\r\n <\/bpmn:businessRuleTask>\r\n <bpmn:parallelGateway id=\"Gateway_0lfg2b2\">\r\n <bpmn:incoming>Flow_1a5ycoj<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_1fwe2w7<\/bpmn:outgoing>\r\n <bpmn:outgoing>Flow_1mj7tm1<\/bpmn:outgoing>\r\n <\/bpmn:parallelGateway>\r\n <bpmn:userTask id=\"Activity_1nxd2jr\" name=\"Vorgang pr\u00C3\u00BCfen\">\r\n <bpmn:extensionElements>\r\n <camunda:formData>\r\n <camunda:formField id=\"FormField_bool_Vorgangpruefen\" type=\"boolean\" \/>\r\n <\/camunda:formData>\r\n <\/bpmn:extensionElements>\r\n <bpmn:incoming>Flow_1sjj2gm<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0ivc5ab<\/bpmn:outgoing>\r\n <\/bpmn:userTask>\r\n <bpmn:endEvent id=\"Event_1mwritv\">\r\n <bpmn:incoming>Flow_0dub3tg<\/bpmn:incoming>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_0t3lvc3\" \/>\r\n <\/bpmn:endEvent>\r\n <bpmn:exclusiveGateway id=\"Gateway_Vorgangfreigeben\">\r\n <bpmn:incoming>Flow_0ivc5ab<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0dub3tg<\/bpmn:outgoing>\r\n <bpmn:outgoing>Flow_0a59c48<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:endEvent id=\"Event_1czv0yh\">\r\n <bpmn:incoming>Flow_0vok3bx<\/bpmn:incoming>\r\n <\/bpmn:endEvent>\r\n <bpmn:parallelGateway id=\"Gateway_1y79rn0\">\r\n <bpmn:incoming>Flow_00dngjn<\/bpmn:incoming>\r\n <bpmn:incoming>Flow_1jt6q3y<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0zftkwh<\/bpmn:outgoing>\r\n <\/bpmn:parallelGateway>\r\n <bpmn:exclusiveGateway id=\"Gateway_01r6r9e\">\r\n <bpmn:incoming>Flow_0a59c48<\/bpmn:incoming>\r\n <bpmn:incoming>Flow_06iwtj7<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_00dngjn<\/bpmn:outgoing>\r\n <\/bpmn:exclusiveGateway>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_0fpian9\" name=\"\u00C3\u0153berweisung\" dataObjectRef=\"DataObject_0oj820u\" \/>\r\n <bpmn:dataObject id=\"DataObject_0oj820u\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_08ly05s\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_0wb1tk1\" \/>\r\n <bpmn:dataObject id=\"DataObject_0wb1tk1\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_1anpq9i\" name=\"Lieferschein\" dataObjectRef=\"DataObject_0iuegqj\" \/>\r\n <bpmn:dataObject id=\"DataObject_0iuegqj\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_1xniyui\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_18x5ho6\" \/>\r\n <bpmn:dataObject id=\"DataObject_18x5ho6\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_1dwjb3m\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_1occfe2\" \/>\r\n <bpmn:dataObject id=\"DataObject_1occfe2\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_07vv3e8\" name=\"Lieferschein\" dataObjectRef=\"DataObject_1fc1pp8\" \/>\r\n <bpmn:dataObject id=\"DataObject_1fc1pp8\" \/>\r\n <bpmn:userTask id=\"Activity_1ovc6n5\" name=\"Rechnung scannen\" camunda:formKey=\"embedded:app:forms\/RechnungScannen.html\">\r\n <bpmn:incoming>Flow_145gpqj<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0bvc46v<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_19sm0wk\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_0nqyhiz\">\r\n <bpmn:sourceRef>DataObjectReference_0aikf8k<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_19sm0wk<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_1iom109\">\r\n <bpmn:targetRef>DataObjectReference_0tpk221<\/bpmn:targetRef>\r\n <\/bpmn:dataOutputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_0tpk221\" name=\"Rechnung&#10;(digital)\" dataObjectRef=\"DataObject_1dduf37\" \/>\r\n <bpmn:dataObject id=\"DataObject_1dduf37\" \/>\r\n <bpmn:dataObjectReference id=\"DataObjectReference_0aikf8k\" name=\"Rechnung (Papierform)\" dataObjectRef=\"DataObject_046p2gp\" \/>\r\n <bpmn:dataObject id=\"DataObject_046p2gp\" \/>\r\n <bpmn:startEvent id=\"Event_1350hwr\">\r\n <bpmn:outgoing>Flow_145gpqj<\/bpmn:outgoing>\r\n <\/bpmn:startEvent>\r\n <bpmn:userTask id=\"Activity_108exu6\" name=\"\u00C3\u0153berweisung ausf\u00C3\u00BChren\">\r\n <bpmn:incoming>Flow_0zftkwh<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0p94qch<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_1froj4a\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1lzchto\">\r\n <bpmn:sourceRef>DataObjectReference_0fpian9<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_1froj4a<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:userTask id=\"Activity_1x7zph6\" name=\"Rechnung archivieren\">\r\n <bpmn:incoming>Flow_0p94qch<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_0vok3bx<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_1lqg73b\" name=\"__targetRef_placeholder\" \/>\r\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1jxd3k4\">\r\n <bpmn:sourceRef>DataObjectReference_08ly05s<\/bpmn:sourceRef>\r\n <bpmn:targetRef>Property_1lqg73b<\/bpmn:targetRef>\r\n <\/bpmn:dataInputAssociation>\r\n <\/bpmn:userTask>\r\n <bpmn:sequenceFlow id=\"Flow_0bvc46v\" sourceRef=\"Activity_1ovc6n5\" targetRef=\"Activity_1b029kn\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1kjf7y9\" name=\"Rechnung freigegeben\" sourceRef=\"Gateway_Lieferscheinpruefen\" targetRef=\"Activity_1uloahn\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_Bool_Lieferscheinpruefen}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_17ny5uv\" sourceRef=\"Activity_1b029kn\" targetRef=\"Gateway_Lieferscheinpruefen\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1aijtcn\" name=\"Rechnung nicht freigegeben\" sourceRef=\"Gateway_Lieferscheinpruefen\" targetRef=\"Activity_0snbir8\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_Bool_Lieferscheinpruefen}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_1kx09zm\" sourceRef=\"Activity_0snbir8\" targetRef=\"Event_0p7ms1x\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_145gpqj\" sourceRef=\"Event_1350hwr\" targetRef=\"Activity_1ovc6n5\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_11zwlrd\" sourceRef=\"Activity_1uloahn\" targetRef=\"Activity_0pq4lxv\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1sjj2gm\" name=\"Rechnungs&#10;summe&#10;&#62;= 10.000\u00E2\u201A\u00AC\" sourceRef=\"Gateway_HoeheRechnungssumme\" targetRef=\"Activity_1nxd2jr\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_Boolean_HoeheRechnungssumme}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_1g8ipne\" sourceRef=\"Activity_060riuq\" targetRef=\"Gateway_1m9g2lh\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1h6imqg\" sourceRef=\"Activity_14ny5c3\" targetRef=\"Gateway_1m9g2lh\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1jt6q3y\" name=\"\u00C3\u0153berweisung vorbereitet\" sourceRef=\"Gateway_1m9g2lh\" targetRef=\"Gateway_1y79rn0\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1wh7ll1\" name=\"Zahlungsziel &#60;= 1 Tag\" sourceRef=\"Gateway_Zahlungsziel\" targetRef=\"Activity_14ny5c3\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_bool_Zahlungsziel}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_0fpeqn8\" name=\"Zahlungsziel &#62; 1 Tag\" sourceRef=\"Gateway_Zahlungsziel\" targetRef=\"Activity_060riuq\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_bool_Zahlungsziel}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_0uk4now\" sourceRef=\"Activity_0vq3ho7\" targetRef=\"Gateway_Zahlungsziel\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1dqx4w4\" sourceRef=\"Activity_0pq4lxv\" targetRef=\"Gateway_Formalpruefen\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1r20qxv\" name=\"Formal nicht richtig\" sourceRef=\"Gateway_Formalpruefen\" targetRef=\"Event_1wc0kk6\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_bool_Formalpruefen}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_1a5ycoj\" name=\"Formal richtig\" sourceRef=\"Gateway_Formalpruefen\" targetRef=\"Gateway_0lfg2b2\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_bool_Formalpruefen}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_1hogzdg\" sourceRef=\"Activity_0jdjg2h\" targetRef=\"Gateway_HoeheRechnungssumme\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_06iwtj7\" name=\"Rechnungs&#10;summe&#10;&#60; 10.000\u00E2\u201A\u00AC\" sourceRef=\"Gateway_HoeheRechnungssumme\" targetRef=\"Gateway_01r6r9e\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_Boolean_HoeheRechnungssumme}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_1fwe2w7\" sourceRef=\"Gateway_0lfg2b2\" targetRef=\"Activity_0vq3ho7\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1mj7tm1\" sourceRef=\"Gateway_0lfg2b2\" targetRef=\"Activity_0jdjg2h\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_0ivc5ab\" sourceRef=\"Activity_1nxd2jr\" targetRef=\"Gateway_Vorgangfreigeben\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_0dub3tg\" name=\"Vorgang nicht freigegeben\" sourceRef=\"Gateway_Vorgangfreigeben\" targetRef=\"Event_1mwritv\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_bool_Vorgangpruefen}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_0a59c48\" name=\"Vorgang freigegeben\" sourceRef=\"Gateway_Vorgangfreigeben\" targetRef=\"Gateway_01r6r9e\">\r\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_bool_Vorgangpruefen}<\/bpmn:conditionExpression>\r\n <\/bpmn:sequenceFlow>\r\n <bpmn:sequenceFlow id=\"Flow_0vok3bx\" sourceRef=\"Activity_1x7zph6\" targetRef=\"Event_1czv0yh\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_0p94qch\" sourceRef=\"Activity_108exu6\" targetRef=\"Activity_1x7zph6\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_00dngjn\" sourceRef=\"Gateway_01r6r9e\" targetRef=\"Gateway_1y79rn0\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_0zftkwh\" sourceRef=\"Gateway_1y79rn0\" targetRef=\"Activity_108exu6\" \/>\r\n <bpmn:textAnnotation id=\"TextAnnotation_1d5xbhp\">\r\n <bpmn:text>Nachricht an den Einkauf<\/bpmn:text>\r\n <\/bpmn:textAnnotation>\r\n <bpmn:textAnnotation id=\"TextAnnotation_0m88stk\">\r\n <bpmn:text>Rechnung\u00C2\u00A0\r\neingegangen<\/bpmn:text>\r\n <\/bpmn:textAnnotation>\r\n <bpmn:textAnnotation id=\"TextAnnotation_0ctzdnl\">\r\n <bpmn:text>Nachricht an Einkauf<\/bpmn:text>\r\n <\/bpmn:textAnnotation>\r\n <bpmn:textAnnotation id=\"TextAnnotation_1re517f\">\r\n <bpmn:text>Nachricht an den Einkauf<\/bpmn:text>\r\n <\/bpmn:textAnnotation>\r\n <bpmn:textAnnotation id=\"TextAnnotation_0n20cr3\">\r\n <bpmn:text>Vorgang automatisch freigegeben<\/bpmn:text>\r\n <\/bpmn:textAnnotation>\r\n <bpmn:association id=\"Association_1nzy89w\" sourceRef=\"Event_1wc0kk6\" targetRef=\"TextAnnotation_1d5xbhp\" \/>\r\n <bpmn:association id=\"Association_1eimkst\" sourceRef=\"Event_1350hwr\" targetRef=\"TextAnnotation_0m88stk\" \/>\r\n <bpmn:association id=\"Association_1gwf53i\" sourceRef=\"Event_0p7ms1x\" targetRef=\"TextAnnotation_0ctzdnl\" \/>\r\n <bpmn:association id=\"Association_00j6irm\" sourceRef=\"Event_1mwritv\" targetRef=\"TextAnnotation_1re517f\" \/>\r\n <bpmn:association id=\"Association_06pk5qu\" sourceRef=\"Gateway_HoeheRechnungssumme\" targetRef=\"TextAnnotation_0n20cr3\" \/>\r\n <\/bpmn:process>\r\n <bpmn:process id=\"Process_0981kcr\" isExecutable=\"false\">\r\n <bpmn:startEvent id=\"Event_1d64cvt\">\r\n <bpmn:outgoing>Flow_0kd9ypk<\/bpmn:outgoing>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_0ijl54b\" messageRef=\"Message_1evjn6n\" \/>\r\n <\/bpmn:startEvent>\r\n <bpmn:serviceTask id=\"Activity_16535mj\" name=\"\u00C3\u0153berweisung ausf\u00C3\u00BChren\">\r\n <bpmn:incoming>Flow_0kd9ypk<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_05nfk8a<\/bpmn:outgoing>\r\n <bpmn:property id=\"Property_17tpfm5\" name=\"__targetRef_placeholder\" \/>\r\n <\/bpmn:serviceTask>\r\n <bpmn:endEvent id=\"Event_16dcvqd\">\r\n <bpmn:incoming>Flow_05nfk8a<\/bpmn:incoming>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_00s1sg8\" \/>\r\n <\/bpmn:endEvent>\r\n <bpmn:sequenceFlow id=\"Flow_05nfk8a\" sourceRef=\"Activity_16535mj\" targetRef=\"Event_16dcvqd\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_0kd9ypk\" sourceRef=\"Event_1d64cvt\" targetRef=\"Activity_16535mj\" \/>\r\n <\/bpmn:process>\r\n <bpmn:process id=\"Process_16i5qhh\" isExecutable=\"false\">\r\n <bpmn:startEvent id=\"Event_1s4nmb2\">\r\n <bpmn:outgoing>Flow_1lvm3gr<\/bpmn:outgoing>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1qmpl4i\" \/>\r\n <\/bpmn:startEvent>\r\n <bpmn:serviceTask id=\"Activity_1wqnoj6\" name=\"Rechnung archivieren\">\r\n <bpmn:incoming>Flow_1lvm3gr<\/bpmn:incoming>\r\n <bpmn:outgoing>Flow_02liz1g<\/bpmn:outgoing>\r\n <\/bpmn:serviceTask>\r\n <bpmn:endEvent id=\"Event_0bdlqvi\">\r\n <bpmn:incoming>Flow_02liz1g<\/bpmn:incoming>\r\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1jnf0j5\" \/>\r\n <\/bpmn:endEvent>\r\n <bpmn:sequenceFlow id=\"Flow_02liz1g\" sourceRef=\"Activity_1wqnoj6\" targetRef=\"Event_0bdlqvi\" \/>\r\n <bpmn:sequenceFlow id=\"Flow_1lvm3gr\" sourceRef=\"Event_1s4nmb2\" targetRef=\"Activity_1wqnoj6\" \/>\r\n <\/bpmn:process>\r\n <bpmn:message id=\"Message_1evjn6n\" \/>\r\n <bpmndi:BPMNDiagram id=\"BPMNDiagram_1\">\r\n <bpmndi:BPMNPlane id=\"BPMNPlane_1\" bpmnElement=\"Collaboration_1wzor0e\">\r\n <bpmndi:BPMNShape id=\"Participant_0rhvdb2_di\" bpmnElement=\"Participant_0rhvdb2\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"155\" y=\"86\" width=\"1900\" height=\"1216\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Lane_0u5smjl_di\" bpmnElement=\"Lane_0u5smjl\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"185\" y=\"909\" width=\"1870\" height=\"120\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Lane_1vcnl2m_di\" bpmnElement=\"Lane_1vcnl2m\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"185\" y=\"1029\" width=\"1870\" height=\"273\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Lane_0nfuckv_di\" bpmnElement=\"Lane_0nfuckv\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"185\" y=\"631\" width=\"1870\" height=\"278\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Lane_0f2qeym_di\" bpmnElement=\"Lane_0f2qeym\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"185\" y=\"86\" width=\"1870\" height=\"360\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Lane_1srdryl_di\" bpmnElement=\"Lane_1srdryl\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"185\" y=\"446\" width=\"1870\" height=\"185\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNEdge id=\"Flow_0zftkwh_di\" bpmnElement=\"Flow_0zftkwh\">\r\n <di:waypoint x=\"1640\" y=\"1123\" \/>\r\n <di:waypoint x=\"1685\" y=\"1123\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_00dngjn_di\" bpmnElement=\"Flow_00dngjn\">\r\n <di:waypoint x=\"1455\" y=\"1123\" \/>\r\n <di:waypoint x=\"1590\" y=\"1123\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0p94qch_di\" bpmnElement=\"Flow_0p94qch\">\r\n <di:waypoint x=\"1785\" y=\"1123\" \/>\r\n <di:waypoint x=\"1835\" y=\"1123\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0vok3bx_di\" bpmnElement=\"Flow_0vok3bx\">\r\n <di:waypoint x=\"1935\" y=\"1123\" \/>\r\n <di:waypoint x=\"1987\" y=\"1123\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0a59c48_di\" bpmnElement=\"Flow_0a59c48\">\r\n <di:waypoint x=\"1330\" y=\"994\" \/>\r\n <di:waypoint x=\"1330\" y=\"1123\" \/>\r\n <di:waypoint x=\"1405\" y=\"1123\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1331\" y=\"995\" width=\"58\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0dub3tg_di\" bpmnElement=\"Flow_0dub3tg\">\r\n <di:waypoint x=\"1355\" y=\"969\" \/>\r\n <di:waypoint x=\"1452\" y=\"969\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1357\" y=\"939\" width=\"68\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0ivc5ab_di\" bpmnElement=\"Flow_0ivc5ab\">\r\n <di:waypoint x=\"1257\" y=\"969\" \/>\r\n <di:waypoint x=\"1305\" y=\"969\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1mj7tm1_di\" bpmnElement=\"Flow_1mj7tm1\">\r\n <di:waypoint x=\"902\" y=\"1190\" \/>\r\n <di:waypoint x=\"902\" y=\"1242\" \/>\r\n <di:waypoint x=\"942\" y=\"1242\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1fwe2w7_di\" bpmnElement=\"Flow_1fwe2w7\">\r\n <di:waypoint x=\"902\" y=\"1140\" \/>\r\n <di:waypoint x=\"902\" y=\"1087\" \/>\r\n <di:waypoint x=\"942\" y=\"1087\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_06iwtj7_di\" bpmnElement=\"Flow_06iwtj7\">\r\n <di:waypoint x=\"1147\" y=\"1242\" \/>\r\n <di:waypoint x=\"1430\" y=\"1242\" \/>\r\n <di:waypoint x=\"1430\" y=\"1148\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1157\" y=\"1196\" width=\"56\" height=\"40\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1hogzdg_di\" bpmnElement=\"Flow_1hogzdg\">\r\n <di:waypoint x=\"1042\" y=\"1242\" \/>\r\n <di:waypoint x=\"1097\" y=\"1242\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1a5ycoj_di\" bpmnElement=\"Flow_1a5ycoj\">\r\n <di:waypoint x=\"852\" y=\"784\" \/>\r\n <di:waypoint x=\"852\" y=\"1165\" \/>\r\n <di:waypoint x=\"877\" y=\"1165\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"778\" y=\"822\" width=\"67\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1r20qxv_di\" bpmnElement=\"Flow_1r20qxv\">\r\n <di:waypoint x=\"877\" y=\"759\" \/>\r\n <di:waypoint x=\"958\" y=\"759\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"876\" y=\"725\" width=\"62\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1dqx4w4_di\" bpmnElement=\"Flow_1dqx4w4\">\r\n <di:waypoint x=\"782\" y=\"759\" \/>\r\n <di:waypoint x=\"827\" y=\"759\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0uk4now_di\" bpmnElement=\"Flow_0uk4now\">\r\n <di:waypoint x=\"1042\" y=\"1087\" \/>\r\n <di:waypoint x=\"1070\" y=\"1087\" \/>\r\n <di:waypoint x=\"1070\" y=\"767\" \/>\r\n <di:waypoint x=\"1097\" y=\"767\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0fpeqn8_di\" bpmnElement=\"Flow_0fpeqn8\">\r\n <di:waypoint x=\"1122\" y=\"742\" \/>\r\n <di:waypoint x=\"1122\" y=\"698\" \/>\r\n <di:waypoint x=\"1219\" y=\"698\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1133\" y=\"667\" width=\"81\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1wh7ll1_di\" bpmnElement=\"Flow_1wh7ll1\">\r\n <di:waypoint x=\"1122\" y=\"792\" \/>\r\n <di:waypoint x=\"1122\" y=\"814\" \/>\r\n <di:waypoint x=\"1221\" y=\"814\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1130\" y=\"825\" width=\"87\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1jt6q3y_di\" bpmnElement=\"Flow_1jt6q3y\">\r\n <di:waypoint x=\"1437\" y=\"767\" \/>\r\n <di:waypoint x=\"1615\" y=\"767\" \/>\r\n <di:waypoint x=\"1615\" y=\"1098\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1494\" y=\"735\" width=\"65\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1h6imqg_di\" bpmnElement=\"Flow_1h6imqg\">\r\n <di:waypoint x=\"1321\" y=\"814\" \/>\r\n <di:waypoint x=\"1412\" y=\"814\" \/>\r\n <di:waypoint x=\"1412\" y=\"792\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1g8ipne_di\" bpmnElement=\"Flow_1g8ipne\">\r\n <di:waypoint x=\"1319\" y=\"698\" \/>\r\n <di:waypoint x=\"1412\" y=\"698\" \/>\r\n <di:waypoint x=\"1412\" y=\"742\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1sjj2gm_di\" bpmnElement=\"Flow_1sjj2gm\">\r\n <di:waypoint x=\"1122\" y=\"1217\" \/>\r\n <di:waypoint x=\"1122\" y=\"969\" \/>\r\n <di:waypoint x=\"1157\" y=\"969\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1065\" y=\"1141\" width=\"56\" height=\"40\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_11zwlrd_di\" bpmnElement=\"Flow_11zwlrd\">\r\n <di:waypoint x=\"616\" y=\"759\" \/>\r\n <di:waypoint x=\"682\" y=\"759\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_145gpqj_di\" bpmnElement=\"Flow_145gpqj\">\r\n <di:waypoint x=\"258\" y=\"250\" \/>\r\n <di:waypoint x=\"297\" y=\"250\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1kx09zm_di\" bpmnElement=\"Flow_1kx09zm\">\r\n <di:waypoint x=\"785\" y=\"551\" \/>\r\n <di:waypoint x=\"907\" y=\"551\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1aijtcn_di\" bpmnElement=\"Flow_1aijtcn\">\r\n <di:waypoint x=\"591\" y=\"551\" \/>\r\n <di:waypoint x=\"685\" y=\"551\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"596\" y=\"552\" width=\"78\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_17ny5uv_di\" bpmnElement=\"Flow_17ny5uv\">\r\n <di:waypoint x=\"486\" y=\"551\" \/>\r\n <di:waypoint x=\"541\" y=\"551\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1kjf7y9_di\" bpmnElement=\"Flow_1kjf7y9\">\r\n <di:waypoint x=\"566\" y=\"576\" \/>\r\n <di:waypoint x=\"566\" y=\"719\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"506\" y=\"648\" width=\"58\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0bvc46v_di\" bpmnElement=\"Flow_0bvc46v\">\r\n <di:waypoint x=\"397\" y=\"250\" \/>\r\n <di:waypoint x=\"436\" y=\"250\" \/>\r\n <di:waypoint x=\"436\" y=\"511\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNShape id=\"Gateway_14wptg0_di\" bpmnElement=\"Gateway_Lieferscheinpruefen\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"541\" y=\"526\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_1ob71m4_di\" bpmnElement=\"Activity_1b029kn\">\r\n <dc:Bounds x=\"386\" y=\"511\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_0f6ao7g_di\" bpmnElement=\"Event_0p7ms1x\">\r\n <dc:Bounds x=\"907\" y=\"533\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_1qurfsk_di\" bpmnElement=\"Activity_0snbir8\">\r\n <dc:Bounds x=\"685\" y=\"511\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_1at71qu_di\" bpmnElement=\"DataObjectReference_1at71qu\">\r\n <dc:Bounds x=\"818\" y=\"461\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"809\" y=\"518\" width=\"60\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_1uloahn_di\" bpmnElement=\"Activity_1uloahn\">\r\n <dc:Bounds x=\"516\" y=\"719\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_1m9g2lh_di\" bpmnElement=\"Gateway_1m9g2lh\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"1387\" y=\"742\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_0us6bh8_di\" bpmnElement=\"Activity_14ny5c3\">\r\n <dc:Bounds x=\"1221\" y=\"774\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_0sv5khc_di\" bpmnElement=\"Activity_060riuq\">\r\n <dc:Bounds x=\"1219\" y=\"658\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_0slfj8c_di\" bpmnElement=\"Gateway_Zahlungsziel\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"1097\" y=\"742\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_0e1s6rd_di\" bpmnElement=\"Activity_0pq4lxv\">\r\n <dc:Bounds x=\"682\" y=\"719\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_1pdltl8_di\" bpmnElement=\"Event_1wc0kk6\">\r\n <dc:Bounds x=\"958\" y=\"741\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_0ufclm7_di\" bpmnElement=\"Gateway_Formalpruefen\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"827\" y=\"734\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_0plzlak_di\" bpmnElement=\"DataObjectReference_0plzlak\">\r\n <dc:Bounds x=\"1354\" y=\"824\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1340\" y=\"881\" width=\"65\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_10dir96_di\" bpmnElement=\"DataObjectReference_10dir96\">\r\n <dc:Bounds x=\"714\" y=\"824\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"688\" y=\"881\" width=\"90\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_12i5die_di\" bpmnElement=\"Gateway_HoeheRechnungssumme\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"1097\" y=\"1217\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_01j1w6p_di\" bpmnElement=\"Activity_0vq3ho7\">\r\n <dc:Bounds x=\"942\" y=\"1047\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_0x0geou_di\" bpmnElement=\"Activity_0jdjg2h\">\r\n <dc:Bounds x=\"942\" y=\"1202\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_0uvc3ct_di\" bpmnElement=\"Gateway_0lfg2b2\">\r\n <dc:Bounds x=\"877\" y=\"1140\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_1ytfvqk_di\" bpmnElement=\"Activity_1nxd2jr\">\r\n <dc:Bounds x=\"1157\" y=\"929\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_1pa0mai_di\" bpmnElement=\"Event_1mwritv\">\r\n <dc:Bounds x=\"1452\" y=\"951\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_07mt2sj_di\" bpmnElement=\"Gateway_Vorgangfreigeben\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"1305\" y=\"944\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_1czv0yh_di\" bpmnElement=\"Event_1czv0yh\">\r\n <dc:Bounds x=\"1987\" y=\"1105\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_0z0dkdt_di\" bpmnElement=\"Gateway_1y79rn0\">\r\n <dc:Bounds x=\"1590\" y=\"1098\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Gateway_01r6r9e_di\" bpmnElement=\"Gateway_01r6r9e\" isMarkerVisible=\"true\">\r\n <dc:Bounds x=\"1405\" y=\"1098\" width=\"50\" height=\"50\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_0fpian9_di\" bpmnElement=\"DataObjectReference_0fpian9\">\r\n <dc:Bounds x=\"1612\" y=\"1159\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1598\" y=\"1216\" width=\"65\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_08ly05s_di\" bpmnElement=\"DataObjectReference_08ly05s\">\r\n <dc:Bounds x=\"1942\" y=\"1189\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"1916\" y=\"1246\" width=\"90\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_1anpq9i_di\" bpmnElement=\"DataObjectReference_1anpq9i\">\r\n <dc:Bounds x=\"317\" y=\"480\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"305\" y=\"450\" width=\"60\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_1xniyui_di\" bpmnElement=\"DataObjectReference_1xniyui\">\r\n <dc:Bounds x=\"317\" y=\"551\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"291\" y=\"609\" width=\"90\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_1dwjb3m_di\" bpmnElement=\"DataObjectReference_1dwjb3m\">\r\n <dc:Bounds x=\"457\" y=\"801\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"431\" y=\"859\" width=\"90\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_07vv3e8_di\" bpmnElement=\"DataObjectReference_07vv3e8\">\r\n <dc:Bounds x=\"617\" y=\"461\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"605\" y=\"519\" width=\"60\" height=\"14\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_07faizf_di\" bpmnElement=\"Activity_1ovc6n5\">\r\n <dc:Bounds x=\"297\" y=\"210\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_0tpk221_di\" bpmnElement=\"DataObjectReference_0tpk221\">\r\n <dc:Bounds x=\"370\" y=\"345\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"364\" y=\"403\" width=\"51\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"DataObjectReference_0aikf8k_di\" bpmnElement=\"DataObjectReference_0aikf8k\">\r\n <dc:Bounds x=\"291\" y=\"345\" width=\"36\" height=\"50\" \/>\r\n <bpmndi:BPMNLabel>\r\n <dc:Bounds x=\"279\" y=\"402\" width=\"62\" height=\"27\" \/>\r\n <\/bpmndi:BPMNLabel>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_1350hwr_di\" bpmnElement=\"Event_1350hwr\">\r\n <dc:Bounds x=\"222\" y=\"232\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_0ecn0vh_di\" bpmnElement=\"Activity_108exu6\">\r\n <dc:Bounds x=\"1685\" y=\"1083\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_0v49yid_di\" bpmnElement=\"Activity_1x7zph6\">\r\n <dc:Bounds x=\"1835\" y=\"1083\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"TextAnnotation_1d5xbhp_di\" bpmnElement=\"TextAnnotation_1d5xbhp\">\r\n <dc:Bounds x=\"955\" y=\"686\" width=\"100\" height=\"40\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"TextAnnotation_0m88stk_di\" bpmnElement=\"TextAnnotation_0m88stk\">\r\n <dc:Bounds x=\"215\" y=\"296\" width=\"100\" height=\"41\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"TextAnnotation_0ctzdnl_di\" bpmnElement=\"TextAnnotation_0ctzdnl\">\r\n <dc:Bounds x=\"971\" y=\"535\" width=\"102\" height=\"40\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"TextAnnotation_1re517f_di\" bpmnElement=\"TextAnnotation_1re517f\">\r\n <dc:Bounds x=\"1503\" y=\"986\" width=\"100\" height=\"40\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"TextAnnotation_0n20cr3_di\" bpmnElement=\"TextAnnotation_0n20cr3\">\r\n <dc:Bounds x=\"1153\" y=\"1256\" width=\"201\" height=\"30\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNEdge id=\"Association_1nzy89w_di\" bpmnElement=\"Association_1nzy89w\">\r\n <di:waypoint x=\"985\" y=\"743\" \/>\r\n <di:waypoint x=\"994\" y=\"726\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Association_1eimkst_di\" bpmnElement=\"Association_1eimkst\">\r\n <di:waypoint x=\"246\" y=\"267\" \/>\r\n <di:waypoint x=\"257\" y=\"296\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Association_1gwf53i_di\" bpmnElement=\"Association_1gwf53i\">\r\n <di:waypoint x=\"943\" y=\"552\" \/>\r\n <di:waypoint x=\"971\" y=\"553\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Association_00j6irm_di\" bpmnElement=\"Association_00j6irm\">\r\n <di:waypoint x=\"1486\" y=\"976\" \/>\r\n <di:waypoint x=\"1508\" y=\"986\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Association_06pk5qu_di\" bpmnElement=\"Association_06pk5qu\">\r\n <di:waypoint x=\"1147\" y=\"1242\" \/>\r\n <di:waypoint x=\"1255\" y=\"1242\" \/>\r\n <di:waypoint x=\"1255\" y=\"1256\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNShape id=\"Participant_1t6l9uu_di\" bpmnElement=\"Participant_1t6l9uu\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"1428\" y=\"1160\" width=\"560\" height=\"130\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNEdge id=\"Flow_0kd9ypk_di\" bpmnElement=\"Flow_0kd9ypk\">\r\n <di:waypoint x=\"1526\" y=\"1220\" \/>\r\n <di:waypoint x=\"1548\" y=\"1220\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_05nfk8a_di\" bpmnElement=\"Flow_05nfk8a\">\r\n <di:waypoint x=\"1648\" y=\"1220\" \/>\r\n <di:waypoint x=\"1682\" y=\"1220\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNShape id=\"Event_03nhp07_di\" bpmnElement=\"Event_1d64cvt\">\r\n <dc:Bounds x=\"1490\" y=\"1202\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_16535mj_di\" bpmnElement=\"Activity_16535mj\">\r\n <dc:Bounds x=\"1548\" y=\"1180\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_19ryvda_di\" bpmnElement=\"Event_16dcvqd\">\r\n <dc:Bounds x=\"1682\" y=\"1202\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Participant_18sv9vt_di\" bpmnElement=\"Participant_18sv9vt\" isHorizontal=\"true\">\r\n <dc:Bounds x=\"1428\" y=\"1320\" width=\"560\" height=\"130\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNEdge id=\"Flow_1lvm3gr_di\" bpmnElement=\"Flow_1lvm3gr\">\r\n <di:waypoint x=\"1769\" y=\"1382\" \/>\r\n <di:waypoint x=\"1798\" y=\"1382\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_02liz1g_di\" bpmnElement=\"Flow_02liz1g\">\r\n <di:waypoint x=\"1898\" y=\"1382\" \/>\r\n <di:waypoint x=\"1930\" y=\"1382\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNShape id=\"Event_1s4nmb2_di\" bpmnElement=\"Event_1s4nmb2\">\r\n <dc:Bounds x=\"1733\" y=\"1364\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Activity_1wqnoj6_di\" bpmnElement=\"Activity_1wqnoj6\">\r\n <dc:Bounds x=\"1798\" y=\"1342\" width=\"100\" height=\"80\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNShape id=\"Event_0lprpz2_di\" bpmnElement=\"Event_0bdlqvi\">\r\n <dc:Bounds x=\"1930\" y=\"1364\" width=\"36\" height=\"36\" \/>\r\n <\/bpmndi:BPMNShape>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_0pntyt9_di\" bpmnElement=\"DataInputAssociation_0pntyt9\">\r\n <di:waypoint x=\"353\" y=\"513\" \/>\r\n <di:waypoint x=\"386\" y=\"528\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1x48yed_di\" bpmnElement=\"DataInputAssociation_1x48yed\">\r\n <di:waypoint x=\"353\" y=\"569\" \/>\r\n <di:waypoint x=\"386\" y=\"555\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1yslkvg_di\" bpmnElement=\"DataInputAssociation_1yslkvg\">\r\n <di:waypoint x=\"653\" y=\"493\" \/>\r\n <di:waypoint x=\"698\" y=\"511\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_1msmwf9_di\" bpmnElement=\"DataOutputAssociation_1msmwf9\">\r\n <di:waypoint x=\"785\" y=\"520\" \/>\r\n <di:waypoint x=\"818\" y=\"499\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_0e52hty_di\" bpmnElement=\"DataInputAssociation_0e52hty\">\r\n <di:waypoint x=\"493\" y=\"808\" \/>\r\n <di:waypoint x=\"516\" y=\"786\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_132siqp_di\" bpmnElement=\"DataOutputAssociation_132siqp\">\r\n <di:waypoint x=\"1321\" y=\"833\" \/>\r\n <di:waypoint x=\"1354\" y=\"846\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_1lhonxy_di\" bpmnElement=\"DataOutputAssociation_1lhonxy\">\r\n <di:waypoint x=\"1298\" y=\"738\" \/>\r\n <di:waypoint x=\"1360\" y=\"824\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_16w6f2o_di\" bpmnElement=\"DataInputAssociation_16w6f2o\">\r\n <di:waypoint x=\"732\" y=\"824\" \/>\r\n <di:waypoint x=\"732\" y=\"799\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_0nqyhiz_di\" bpmnElement=\"DataInputAssociation_0nqyhiz\">\r\n <di:waypoint x=\"317\" y=\"345\" \/>\r\n <di:waypoint x=\"334\" y=\"290\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_1iom109_di\" bpmnElement=\"DataOutputAssociation_1iom109\">\r\n <di:waypoint x=\"359\" y=\"290\" \/>\r\n <di:waypoint x=\"376\" y=\"345\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1lzchto_di\" bpmnElement=\"DataInputAssociation_1lzchto\">\r\n <di:waypoint x=\"1648\" y=\"1179\" \/>\r\n <di:waypoint x=\"1701\" y=\"1163\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1jxd3k4_di\" bpmnElement=\"DataInputAssociation_1jxd3k4\">\r\n <di:waypoint x=\"1949\" y=\"1189\" \/>\r\n <di:waypoint x=\"1934\" y=\"1158\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_19tf2ig_di\" bpmnElement=\"Flow_19tf2ig\">\r\n <di:waypoint x=\"1835\" y=\"1123\" \/>\r\n <di:waypoint x=\"1751\" y=\"1123\" \/>\r\n <di:waypoint x=\"1751\" y=\"1364\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0y80b3b_di\" bpmnElement=\"Flow_0y80b3b\">\r\n <di:waypoint x=\"1948\" y=\"1364\" \/>\r\n <di:waypoint x=\"1948\" y=\"1264\" \/>\r\n <di:waypoint x=\"1913\" y=\"1264\" \/>\r\n <di:waypoint x=\"1913\" y=\"1163\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_1i1mf5g_di\" bpmnElement=\"Flow_1i1mf5g\">\r\n <di:waypoint x=\"1685\" y=\"1123\" \/>\r\n <di:waypoint x=\"1508\" y=\"1123\" \/>\r\n <di:waypoint x=\"1508\" y=\"1202\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <bpmndi:BPMNEdge id=\"Flow_0wtoi84_di\" bpmnElement=\"Flow_0wtoi84\">\r\n <di:waypoint x=\"1700\" y=\"1202\" \/>\r\n <di:waypoint x=\"1700\" y=\"1163\" \/>\r\n <\/bpmndi:BPMNEdge>\r\n <\/bpmndi:BPMNPlane>\r\n <\/bpmndi:BPMNDiagram>\r\n<\/bpmn:definitions>\r\n';
importXML(diagramXML);
})(window.BpmnJS, window.jQuery);
</script>
</body>
</html>