213 lines
No EOL
56 KiB
HTML
213 lines
No EOL
56 KiB
HTML
<!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\"?>\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\">\n <bpmn:collaboration id=\"Collaboration_1wzor0e\">\n <bpmn:participant id=\"Participant_0rhvdb2\" processRef=\"Rechnungseingang\" \/>\n <bpmn:participant id=\"Participant_1t6l9uu\" name=\"FI-System\" processRef=\"Process_0981kcr\" \/>\n <bpmn:participant id=\"Participant_18sv9vt\" name=\"ERP-System\" processRef=\"Process_16i5qhh\" \/>\n <bpmn:messageFlow id=\"Flow_173n3vn\" sourceRef=\"Activity_108exu6\" targetRef=\"Event_1d64cvt\" \/>\n <bpmn:messageFlow id=\"Flow_0thbzdq\" sourceRef=\"Event_16dcvqd\" targetRef=\"Activity_108exu6\" \/>\n <bpmn:messageFlow id=\"Flow_16ybvgs\" sourceRef=\"Activity_1x7zph6\" targetRef=\"Event_1s4nmb2\" \/>\n <bpmn:messageFlow id=\"Flow_1qfk0xn\" sourceRef=\"Event_0bdlqvi\" targetRef=\"Activity_1x7zph6\" \/>\n <\/bpmn:collaboration>\n <bpmn:process id=\"Rechnungseingang\" name=\"Rechnungseingang\" isExecutable=\"true\">\n <bpmn:laneSet id=\"LaneSet_0vckjdx\">\n <bpmn:lane id=\"Lane_1srdryl\" name=\"Logistik\">\n <bpmn:flowNodeRef>Gateway_Lieferscheinpruefen<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_1b029kn<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Event_0p7ms1x<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_0snbir8<\/bpmn:flowNodeRef>\n <\/bpmn:lane>\n <bpmn:lane id=\"Lane_0f2qeym\" name=\"Poststelle\">\n <bpmn:flowNodeRef>Activity_1ovc6n5<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Event_1350hwr<\/bpmn:flowNodeRef>\n <\/bpmn:lane>\n <bpmn:lane id=\"Lane_0nfuckv\" name=\"Kreditorenbuchhaltung\">\n <bpmn:flowNodeRef>Activity_1uloahn<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_1m9g2lh<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_14ny5c3<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_060riuq<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_Zahlungsziel<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_0pq4lxv<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Event_1wc0kk6<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_Formalpruefen<\/bpmn:flowNodeRef>\n <\/bpmn:lane>\n <bpmn:lane id=\"Lane_1vcnl2m\" name=\"Workflow-Engine\">\n <bpmn:flowNodeRef>Gateway_HoeheRechnungssumme<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_0vq3ho7<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_0jdjg2h<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_0lfg2b2<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_1y79rn0<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_01r6r9e<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_108exu6<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Event_1czv0yh<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Activity_1x7zph6<\/bpmn:flowNodeRef>\n <\/bpmn:lane>\n <bpmn:lane id=\"Lane_0u5smjl\" name=\"Gesch\u00C3\u00A4ftsf\u00C3\u00BChrung\">\n <bpmn:flowNodeRef>Activity_1nxd2jr<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Event_1mwritv<\/bpmn:flowNodeRef>\n <bpmn:flowNodeRef>Gateway_Vorgangfreigeben<\/bpmn:flowNodeRef>\n <\/bpmn:lane>\n <\/bpmn:laneSet>\n <bpmn:exclusiveGateway id=\"Gateway_Lieferscheinpruefen\">\n <bpmn:incoming>Flow_17ny5uv<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1aijtcn<\/bpmn:outgoing>\n <bpmn:outgoing>Flow_1kjf7y9<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:userTask id=\"Activity_1b029kn\" name=\"Rechung mit Lieferschein pr\u00C3\u00BCfen\" camunda:formKey=\"embedded:app:forms\/Lieferscheinpruefen.html\">\n <bpmn:incoming>Flow_0bvc46v<\/bpmn:incoming>\n <bpmn:outgoing>Flow_17ny5uv<\/bpmn:outgoing>\n <bpmn:property id=\"Property_09aqjdw\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_0pntyt9\">\n <bpmn:sourceRef>DataObjectReference_1anpq9i<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_09aqjdw<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1x48yed\">\n <bpmn:sourceRef>DataObjectReference_1xniyui<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_09aqjdw<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <\/bpmn:userTask>\n <bpmn:endEvent id=\"Event_0p7ms1x\">\n <bpmn:incoming>Flow_1kx09zm<\/bpmn:incoming>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1achcjf\" \/>\n <\/bpmn:endEvent>\n <bpmn:userTask id=\"Activity_0snbir8\" name=\"Lieferschein scannen\" camunda:formKey=\"embedded:app:forms\/LieferscheinScannen.html\">\n <bpmn:incoming>Flow_1aijtcn<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1kx09zm<\/bpmn:outgoing>\n <bpmn:property id=\"Property_0v9359q\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1yslkvg\">\n <bpmn:sourceRef>DataObjectReference_07vv3e8<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_0v9359q<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_1msmwf9\">\n <bpmn:targetRef>DataObjectReference_1at71qu<\/bpmn:targetRef>\n <\/bpmn:dataOutputAssociation>\n <\/bpmn:userTask>\n <bpmn:dataObjectReference id=\"DataObjectReference_1at71qu\" name=\"Lieferschein (digital)\" dataObjectRef=\"DataObject_1lefyt0\" \/>\n <bpmn:dataObject id=\"DataObject_1lefyt0\" \/>\n <bpmn:userTask id=\"Activity_1uloahn\" name=\"Zahlungsziel & Rechnungsdaten festsetzen\">\n <bpmn:extensionElements>\n <camunda:formData>\n <camunda:formField id=\"FormField_long_HoeheRechnungssumme\" label=\"Rechnungssumme eingeben\" type=\"long\" \/>\n <camunda:formField id=\"FormField_date_Zahlungsziel\" label=\"Zahlungsziel eingeben\" type=\"date\" \/>\n <\/camunda:formData>\n <\/bpmn:extensionElements>\n <bpmn:incoming>Flow_1kjf7y9<\/bpmn:incoming>\n <bpmn:outgoing>Flow_11zwlrd<\/bpmn:outgoing>\n <bpmn:property id=\"Property_1963d32\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_0e52hty\">\n <bpmn:sourceRef>DataObjectReference_1dwjb3m<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_1963d32<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <\/bpmn:userTask>\n <bpmn:exclusiveGateway id=\"Gateway_1m9g2lh\">\n <bpmn:incoming>Flow_1g8ipne<\/bpmn:incoming>\n <bpmn:incoming>Flow_1h6imqg<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1jt6q3y<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:userTask id=\"Activity_14ny5c3\" name=\"Direkt-\u00C3\u00BCberweisung vorbereiten\">\n <bpmn:incoming>Flow_1wh7ll1<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1h6imqg<\/bpmn:outgoing>\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_132siqp\">\n <bpmn:targetRef>DataObjectReference_0plzlak<\/bpmn:targetRef>\n <\/bpmn:dataOutputAssociation>\n <\/bpmn:userTask>\n <bpmn:userTask id=\"Activity_060riuq\" name=\"Termin-\u00C3\u00BCberweisung vorbereiten\">\n <bpmn:incoming>Flow_0fpeqn8<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1g8ipne<\/bpmn:outgoing>\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_1lhonxy\">\n <bpmn:targetRef>DataObjectReference_0plzlak<\/bpmn:targetRef>\n <\/bpmn:dataOutputAssociation>\n <\/bpmn:userTask>\n <bpmn:exclusiveGateway id=\"Gateway_Zahlungsziel\">\n <bpmn:incoming>Flow_0uk4now<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0fpeqn8<\/bpmn:outgoing>\n <bpmn:outgoing>Flow_1wh7ll1<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:userTask id=\"Activity_0pq4lxv\" name=\"Rechnung formal pr\u00C3\u00BCfen\" camunda:formKey=\"embedded:app:forms\/Formalpruefen.html\">\n <bpmn:incoming>Flow_11zwlrd<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1dqx4w4<\/bpmn:outgoing>\n <bpmn:property id=\"Property_16649me\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_16w6f2o\">\n <bpmn:sourceRef>DataObjectReference_10dir96<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_16649me<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <\/bpmn:userTask>\n <bpmn:endEvent id=\"Event_1wc0kk6\">\n <bpmn:incoming>Flow_1r20qxv<\/bpmn:incoming>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1a4xu8n\" \/>\n <\/bpmn:endEvent>\n <bpmn:exclusiveGateway id=\"Gateway_Formalpruefen\">\n <bpmn:incoming>Flow_1dqx4w4<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1a5ycoj<\/bpmn:outgoing>\n <bpmn:outgoing>Flow_1r20qxv<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:dataObjectReference id=\"DataObjectReference_0plzlak\" name=\"\u00C3\u0153berweisung\" dataObjectRef=\"DataObject_0jce6w0\" \/>\n <bpmn:dataObject id=\"DataObject_0jce6w0\" \/>\n <bpmn:dataObjectReference id=\"DataObjectReference_10dir96\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_0egqb2l\" \/>\n <bpmn:dataObject id=\"DataObject_0egqb2l\" \/>\n <bpmn:exclusiveGateway id=\"Gateway_HoeheRechnungssumme\">\n <bpmn:incoming>Flow_1hogzdg<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1sjj2gm<\/bpmn:outgoing>\n <bpmn:outgoing>Flow_06iwtj7<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:businessRuleTask id=\"Activity_0vq3ho7\" name=\"Zahlungsziel pr\u00C3\u00BCfen\" camunda:class=\"com.bpmn.Rechnungseingang.BerechnungZahlungsziel\">\n <bpmn:incoming>Flow_1fwe2w7<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0uk4now<\/bpmn:outgoing>\n <\/bpmn:businessRuleTask>\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\">\n <bpmn:incoming>Flow_1mj7tm1<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1hogzdg<\/bpmn:outgoing>\n <\/bpmn:businessRuleTask>\n <bpmn:parallelGateway id=\"Gateway_0lfg2b2\">\n <bpmn:incoming>Flow_1a5ycoj<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1fwe2w7<\/bpmn:outgoing>\n <bpmn:outgoing>Flow_1mj7tm1<\/bpmn:outgoing>\n <\/bpmn:parallelGateway>\n <bpmn:userTask id=\"Activity_1nxd2jr\" name=\"Vorgang pr\u00C3\u00BCfen\" camunda:formKey=\"embedded:app:forms\/Vorgangpruefen.html\">\n <bpmn:incoming>Flow_1sjj2gm<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0ivc5ab<\/bpmn:outgoing>\n <\/bpmn:userTask>\n <bpmn:endEvent id=\"Event_1mwritv\">\n <bpmn:incoming>Flow_0dub3tg<\/bpmn:incoming>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_0t3lvc3\" \/>\n <\/bpmn:endEvent>\n <bpmn:exclusiveGateway id=\"Gateway_Vorgangfreigeben\">\n <bpmn:incoming>Flow_0ivc5ab<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0dub3tg<\/bpmn:outgoing>\n <bpmn:outgoing>Flow_0a59c48<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:parallelGateway id=\"Gateway_1y79rn0\">\n <bpmn:incoming>Flow_00dngjn<\/bpmn:incoming>\n <bpmn:incoming>Flow_1jt6q3y<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0zftkwh<\/bpmn:outgoing>\n <\/bpmn:parallelGateway>\n <bpmn:exclusiveGateway id=\"Gateway_01r6r9e\">\n <bpmn:incoming>Flow_0a59c48<\/bpmn:incoming>\n <bpmn:incoming>Flow_06iwtj7<\/bpmn:incoming>\n <bpmn:outgoing>Flow_00dngjn<\/bpmn:outgoing>\n <\/bpmn:exclusiveGateway>\n <bpmn:dataObjectReference id=\"DataObjectReference_0fpian9\" name=\"\u00C3\u0153berweisung\" dataObjectRef=\"DataObject_0oj820u\" \/>\n <bpmn:dataObject id=\"DataObject_0oj820u\" \/>\n <bpmn:dataObjectReference id=\"DataObjectReference_1anpq9i\" name=\"Lieferschein\" dataObjectRef=\"DataObject_0iuegqj\" \/>\n <bpmn:dataObject id=\"DataObject_0iuegqj\" \/>\n <bpmn:dataObjectReference id=\"DataObjectReference_1xniyui\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_18x5ho6\" \/>\n <bpmn:dataObject id=\"DataObject_18x5ho6\" \/>\n <bpmn:dataObjectReference id=\"DataObjectReference_1dwjb3m\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_1occfe2\" \/>\n <bpmn:dataObject id=\"DataObject_1occfe2\" \/>\n <bpmn:dataObjectReference id=\"DataObjectReference_07vv3e8\" name=\"Lieferschein\" dataObjectRef=\"DataObject_1fc1pp8\" \/>\n <bpmn:dataObject id=\"DataObject_1fc1pp8\" \/>\n <bpmn:userTask id=\"Activity_1ovc6n5\" name=\"Rechnung scannen\" camunda:formKey=\"embedded:app:forms\/RechnungScannen.html\">\n <bpmn:incoming>Flow_145gpqj<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0bvc46v<\/bpmn:outgoing>\n <bpmn:property id=\"Property_19sm0wk\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_0nqyhiz\">\n <bpmn:sourceRef>DataObjectReference_0aikf8k<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_19sm0wk<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <bpmn:dataOutputAssociation id=\"DataOutputAssociation_1iom109\">\n <bpmn:targetRef>DataObjectReference_0tpk221<\/bpmn:targetRef>\n <\/bpmn:dataOutputAssociation>\n <\/bpmn:userTask>\n <bpmn:dataObjectReference id=\"DataObjectReference_0tpk221\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_1dduf37\" \/>\n <bpmn:dataObject id=\"DataObject_1dduf37\" \/>\n <bpmn:dataObjectReference id=\"DataObjectReference_0aikf8k\" name=\"Rechnung (Papierform)\" dataObjectRef=\"DataObject_046p2gp\" \/>\n <bpmn:dataObject id=\"DataObject_046p2gp\" \/>\n <bpmn:startEvent id=\"Event_1350hwr\">\n <bpmn:outgoing>Flow_145gpqj<\/bpmn:outgoing>\n <\/bpmn:startEvent>\n <bpmn:sequenceFlow id=\"Flow_0bvc46v\" sourceRef=\"Activity_1ovc6n5\" targetRef=\"Activity_1b029kn\" \/>\n <bpmn:sequenceFlow id=\"Flow_1kjf7y9\" name=\"Rechnung freigegeben\" sourceRef=\"Gateway_Lieferscheinpruefen\" targetRef=\"Activity_1uloahn\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_Bool_Lieferscheinpruefen}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_17ny5uv\" sourceRef=\"Activity_1b029kn\" targetRef=\"Gateway_Lieferscheinpruefen\" \/>\n <bpmn:sequenceFlow id=\"Flow_1aijtcn\" name=\"Rechnung nicht freigegeben\" sourceRef=\"Gateway_Lieferscheinpruefen\" targetRef=\"Activity_0snbir8\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_Bool_Lieferscheinpruefen}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_1kx09zm\" sourceRef=\"Activity_0snbir8\" targetRef=\"Event_0p7ms1x\" \/>\n <bpmn:sequenceFlow id=\"Flow_145gpqj\" sourceRef=\"Event_1350hwr\" targetRef=\"Activity_1ovc6n5\" \/>\n <bpmn:sequenceFlow id=\"Flow_11zwlrd\" sourceRef=\"Activity_1uloahn\" targetRef=\"Activity_0pq4lxv\" \/>\n <bpmn:sequenceFlow id=\"Flow_1sjj2gm\" name=\"Rechnungs summe >= 10.000\u00E2\u201A\u00AC\" sourceRef=\"Gateway_HoeheRechnungssumme\" targetRef=\"Activity_1nxd2jr\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_Boolean_HoeheRechnungssumme}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_1g8ipne\" sourceRef=\"Activity_060riuq\" targetRef=\"Gateway_1m9g2lh\" \/>\n <bpmn:sequenceFlow id=\"Flow_1h6imqg\" sourceRef=\"Activity_14ny5c3\" targetRef=\"Gateway_1m9g2lh\" \/>\n <bpmn:sequenceFlow id=\"Flow_1jt6q3y\" name=\"\u00C3\u0153berweisung vorbereitet\" sourceRef=\"Gateway_1m9g2lh\" targetRef=\"Gateway_1y79rn0\" \/>\n <bpmn:sequenceFlow id=\"Flow_1wh7ll1\" name=\"Zahlungsziel <= 1 Tag\" sourceRef=\"Gateway_Zahlungsziel\" targetRef=\"Activity_14ny5c3\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_bool_Zahlungsziel}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_0fpeqn8\" name=\"Zahlungsziel > 1 Tag\" sourceRef=\"Gateway_Zahlungsziel\" targetRef=\"Activity_060riuq\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_bool_Zahlungsziel}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_0uk4now\" sourceRef=\"Activity_0vq3ho7\" targetRef=\"Gateway_Zahlungsziel\" \/>\n <bpmn:sequenceFlow id=\"Flow_1dqx4w4\" sourceRef=\"Activity_0pq4lxv\" targetRef=\"Gateway_Formalpruefen\" \/>\n <bpmn:sequenceFlow id=\"Flow_1r20qxv\" name=\"Formal nicht richtig\" sourceRef=\"Gateway_Formalpruefen\" targetRef=\"Event_1wc0kk6\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_bool_Formalpruefen}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_1a5ycoj\" name=\"Formal richtig\" sourceRef=\"Gateway_Formalpruefen\" targetRef=\"Gateway_0lfg2b2\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_bool_Formalpruefen}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_1hogzdg\" sourceRef=\"Activity_0jdjg2h\" targetRef=\"Gateway_HoeheRechnungssumme\" \/>\n <bpmn:sequenceFlow id=\"Flow_06iwtj7\" name=\"Rechnungs summe < 10.000\u00E2\u201A\u00AC\" sourceRef=\"Gateway_HoeheRechnungssumme\" targetRef=\"Gateway_01r6r9e\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_Boolean_HoeheRechnungssumme}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_1fwe2w7\" sourceRef=\"Gateway_0lfg2b2\" targetRef=\"Activity_0vq3ho7\" \/>\n <bpmn:sequenceFlow id=\"Flow_1mj7tm1\" sourceRef=\"Gateway_0lfg2b2\" targetRef=\"Activity_0jdjg2h\" \/>\n <bpmn:sequenceFlow id=\"Flow_0ivc5ab\" sourceRef=\"Activity_1nxd2jr\" targetRef=\"Gateway_Vorgangfreigeben\" \/>\n <bpmn:sequenceFlow id=\"Flow_0dub3tg\" name=\"Vorgang nicht freigegeben\" sourceRef=\"Gateway_Vorgangfreigeben\" targetRef=\"Event_1mwritv\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{not FormField_bool_Vorgangpruefen}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_0a59c48\" name=\"Vorgang freigegeben\" sourceRef=\"Gateway_Vorgangfreigeben\" targetRef=\"Gateway_01r6r9e\">\n <bpmn:conditionExpression xsi:type=\"bpmn:tFormalExpression\">#{FormField_bool_Vorgangpruefen}<\/bpmn:conditionExpression>\n <\/bpmn:sequenceFlow>\n <bpmn:sequenceFlow id=\"Flow_00dngjn\" sourceRef=\"Gateway_01r6r9e\" targetRef=\"Gateway_1y79rn0\" \/>\n <bpmn:sequenceFlow id=\"Flow_0zftkwh\" sourceRef=\"Gateway_1y79rn0\" targetRef=\"Activity_108exu6\" \/>\n <bpmn:sequenceFlow id=\"Flow_1qtw2q6\" sourceRef=\"Activity_108exu6\" targetRef=\"Activity_1x7zph6\" \/>\n <bpmn:serviceTask id=\"Activity_108exu6\" name=\"\u00C3\u0153berweisung ausf\u00C3\u00BChren\" camunda:class=\"com.bpmn.Rechnungseingang.UeberweisungAusfuehren\">\n <bpmn:incoming>Flow_0zftkwh<\/bpmn:incoming>\n <bpmn:outgoing>Flow_1qtw2q6<\/bpmn:outgoing>\n <bpmn:property id=\"Property_0gc49y9\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1lzchto\">\n <bpmn:sourceRef>DataObjectReference_0fpian9<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_0gc49y9<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <\/bpmn:serviceTask>\n <bpmn:endEvent id=\"Event_1czv0yh\">\n <bpmn:incoming>Flow_0vok3bx<\/bpmn:incoming>\n <\/bpmn:endEvent>\n <bpmn:dataObjectReference id=\"DataObjectReference_08ly05s\" name=\"Rechnung (digital)\" dataObjectRef=\"DataObject_0wb1tk1\" \/>\n <bpmn:dataObject id=\"DataObject_0wb1tk1\" \/>\n <bpmn:sequenceFlow id=\"Flow_0vok3bx\" sourceRef=\"Activity_1x7zph6\" targetRef=\"Event_1czv0yh\" \/>\n <bpmn:serviceTask id=\"Activity_1x7zph6\" name=\"Rechnung archivieren\" camunda:class=\"com.bpmn.Rechnungseingang.ArchivierungAusfuehren\">\n <bpmn:incoming>Flow_1qtw2q6<\/bpmn:incoming>\n <bpmn:outgoing>Flow_0vok3bx<\/bpmn:outgoing>\n <bpmn:property id=\"Property_0hp63d7\" name=\"__targetRef_placeholder\" \/>\n <bpmn:dataInputAssociation id=\"DataInputAssociation_1jxd3k4\">\n <bpmn:sourceRef>DataObjectReference_08ly05s<\/bpmn:sourceRef>\n <bpmn:targetRef>Property_0hp63d7<\/bpmn:targetRef>\n <\/bpmn:dataInputAssociation>\n <\/bpmn:serviceTask>\n <bpmn:textAnnotation id=\"TextAnnotation_1d5xbhp\">\n <bpmn:text>Nachricht an den Einkauf<\/bpmn:text>\n <\/bpmn:textAnnotation>\n <bpmn:textAnnotation id=\"TextAnnotation_0m88stk\">\n <bpmn:text>Rechnung\u00C2\u00A0\r\neingegangen<\/bpmn:text>\n <\/bpmn:textAnnotation>\n <bpmn:textAnnotation id=\"TextAnnotation_0ctzdnl\">\n <bpmn:text>Nachricht an Einkauf<\/bpmn:text>\n <\/bpmn:textAnnotation>\n <bpmn:textAnnotation id=\"TextAnnotation_1re517f\">\n <bpmn:text>Nachricht an den Einkauf<\/bpmn:text>\n <\/bpmn:textAnnotation>\n <bpmn:textAnnotation id=\"TextAnnotation_0n20cr3\">\n <bpmn:text>Vorgang automatisch freigegeben<\/bpmn:text>\n <\/bpmn:textAnnotation>\n <bpmn:association id=\"Association_1nzy89w\" sourceRef=\"Event_1wc0kk6\" targetRef=\"TextAnnotation_1d5xbhp\" \/>\n <bpmn:association id=\"Association_1eimkst\" sourceRef=\"Event_1350hwr\" targetRef=\"TextAnnotation_0m88stk\" \/>\n <bpmn:association id=\"Association_1gwf53i\" sourceRef=\"Event_0p7ms1x\" targetRef=\"TextAnnotation_0ctzdnl\" \/>\n <bpmn:association id=\"Association_00j6irm\" sourceRef=\"Event_1mwritv\" targetRef=\"TextAnnotation_1re517f\" \/>\n <bpmn:association id=\"Association_06pk5qu\" sourceRef=\"Gateway_HoeheRechnungssumme\" targetRef=\"TextAnnotation_0n20cr3\" \/>\n <\/bpmn:process>\n <bpmn:process id=\"Process_0981kcr\" isExecutable=\"false\">\n <bpmn:startEvent id=\"Event_1d64cvt\">\n <bpmn:outgoing>Flow_0kd9ypk<\/bpmn:outgoing>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_0ijl54b\" messageRef=\"Message_1evjn6n\" \/>\n <\/bpmn:startEvent>\n <bpmn:endEvent id=\"Event_16dcvqd\">\n <bpmn:incoming>Flow_05nfk8a<\/bpmn:incoming>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_00s1sg8\" messageRef=\"Message_02nsmy6\" \/>\n <\/bpmn:endEvent>\n <bpmn:sequenceFlow id=\"Flow_0kd9ypk\" sourceRef=\"Event_1d64cvt\" targetRef=\"Activity_16535mj\" \/>\n <bpmn:sequenceFlow id=\"Flow_05nfk8a\" sourceRef=\"Activity_16535mj\" targetRef=\"Event_16dcvqd\" \/>\n <bpmn:serviceTask id=\"Activity_16535mj\" name=\"\u00C3\u0153berweisung ausf\u00C3\u00BChren\">\n <bpmn:incoming>Flow_0kd9ypk<\/bpmn:incoming>\n <bpmn:outgoing>Flow_05nfk8a<\/bpmn:outgoing>\n <bpmn:property id=\"Property_17tpfm5\" name=\"__targetRef_placeholder\" \/>\n <\/bpmn:serviceTask>\n <\/bpmn:process>\n <bpmn:process id=\"Process_16i5qhh\" isExecutable=\"false\">\n <bpmn:startEvent id=\"Event_1s4nmb2\">\n <bpmn:outgoing>Flow_1lvm3gr<\/bpmn:outgoing>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1qmpl4i\" \/>\n <\/bpmn:startEvent>\n <bpmn:serviceTask id=\"Activity_1wqnoj6\" name=\"Rechnung archivieren\">\n <bpmn:incoming>Flow_1lvm3gr<\/bpmn:incoming>\n <bpmn:outgoing>Flow_02liz1g<\/bpmn:outgoing>\n <\/bpmn:serviceTask>\n <bpmn:endEvent id=\"Event_0bdlqvi\">\n <bpmn:incoming>Flow_02liz1g<\/bpmn:incoming>\n <bpmn:messageEventDefinition id=\"MessageEventDefinition_1jnf0j5\" \/>\n <\/bpmn:endEvent>\n <bpmn:sequenceFlow id=\"Flow_1lvm3gr\" sourceRef=\"Event_1s4nmb2\" targetRef=\"Activity_1wqnoj6\" \/>\n <bpmn:sequenceFlow id=\"Flow_02liz1g\" sourceRef=\"Activity_1wqnoj6\" targetRef=\"Event_0bdlqvi\" \/>\n <\/bpmn:process>\n <bpmn:message id=\"Message_1evjn6n\" \/>\n <bpmn:message id=\"Message_02nsmy6\" name=\"Ueberweisung_ausgefuehrt\" \/>\n <bpmndi:BPMNDiagram id=\"BPMNDiagram_1\">\n <bpmndi:BPMNPlane id=\"BPMNPlane_1\" bpmnElement=\"Collaboration_1wzor0e\">\n <bpmndi:BPMNShape id=\"Participant_0rhvdb2_di\" bpmnElement=\"Participant_0rhvdb2\" isHorizontal=\"true\">\n <dc:Bounds x=\"155\" y=\"86\" width=\"2105\" height=\"1216\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Lane_0u5smjl_di\" bpmnElement=\"Lane_0u5smjl\" isHorizontal=\"true\">\n <dc:Bounds x=\"185\" y=\"909\" width=\"2075\" height=\"120\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Lane_1vcnl2m_di\" bpmnElement=\"Lane_1vcnl2m\" isHorizontal=\"true\">\n <dc:Bounds x=\"185\" y=\"1029\" width=\"2075\" height=\"273\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Lane_0nfuckv_di\" bpmnElement=\"Lane_0nfuckv\" isHorizontal=\"true\">\n <dc:Bounds x=\"185\" y=\"631\" width=\"2075\" height=\"278\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Lane_0f2qeym_di\" bpmnElement=\"Lane_0f2qeym\" isHorizontal=\"true\">\n <dc:Bounds x=\"185\" y=\"86\" width=\"2075\" height=\"360\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Lane_1srdryl_di\" bpmnElement=\"Lane_1srdryl\" isHorizontal=\"true\">\n <dc:Bounds x=\"185\" y=\"446\" width=\"2075\" height=\"185\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNEdge id=\"Flow_0zftkwh_di\" bpmnElement=\"Flow_0zftkwh\">\n <di:waypoint x=\"1640\" y=\"1123\" \/>\n <di:waypoint x=\"1685\" y=\"1123\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_00dngjn_di\" bpmnElement=\"Flow_00dngjn\">\n <di:waypoint x=\"1455\" y=\"1123\" \/>\n <di:waypoint x=\"1590\" y=\"1123\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0a59c48_di\" bpmnElement=\"Flow_0a59c48\">\n <di:waypoint x=\"1330\" y=\"994\" \/>\n <di:waypoint x=\"1330\" y=\"1123\" \/>\n <di:waypoint x=\"1405\" y=\"1123\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1331\" y=\"995\" width=\"58\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0dub3tg_di\" bpmnElement=\"Flow_0dub3tg\">\n <di:waypoint x=\"1355\" y=\"969\" \/>\n <di:waypoint x=\"1452\" y=\"969\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1357\" y=\"939\" width=\"68\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0ivc5ab_di\" bpmnElement=\"Flow_0ivc5ab\">\n <di:waypoint x=\"1257\" y=\"969\" \/>\n <di:waypoint x=\"1305\" y=\"969\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1mj7tm1_di\" bpmnElement=\"Flow_1mj7tm1\">\n <di:waypoint x=\"902\" y=\"1190\" \/>\n <di:waypoint x=\"902\" y=\"1242\" \/>\n <di:waypoint x=\"942\" y=\"1242\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1fwe2w7_di\" bpmnElement=\"Flow_1fwe2w7\">\n <di:waypoint x=\"902\" y=\"1140\" \/>\n <di:waypoint x=\"902\" y=\"1087\" \/>\n <di:waypoint x=\"942\" y=\"1087\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_06iwtj7_di\" bpmnElement=\"Flow_06iwtj7\">\n <di:waypoint x=\"1147\" y=\"1242\" \/>\n <di:waypoint x=\"1430\" y=\"1242\" \/>\n <di:waypoint x=\"1430\" y=\"1148\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1157\" y=\"1196\" width=\"56\" height=\"40\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1hogzdg_di\" bpmnElement=\"Flow_1hogzdg\">\n <di:waypoint x=\"1042\" y=\"1242\" \/>\n <di:waypoint x=\"1097\" y=\"1242\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1a5ycoj_di\" bpmnElement=\"Flow_1a5ycoj\">\n <di:waypoint x=\"852\" y=\"784\" \/>\n <di:waypoint x=\"852\" y=\"1165\" \/>\n <di:waypoint x=\"877\" y=\"1165\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"778\" y=\"822\" width=\"67\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1r20qxv_di\" bpmnElement=\"Flow_1r20qxv\">\n <di:waypoint x=\"877\" y=\"759\" \/>\n <di:waypoint x=\"958\" y=\"759\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"876\" y=\"725\" width=\"62\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1dqx4w4_di\" bpmnElement=\"Flow_1dqx4w4\">\n <di:waypoint x=\"782\" y=\"759\" \/>\n <di:waypoint x=\"827\" y=\"759\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0uk4now_di\" bpmnElement=\"Flow_0uk4now\">\n <di:waypoint x=\"1042\" y=\"1087\" \/>\n <di:waypoint x=\"1070\" y=\"1087\" \/>\n <di:waypoint x=\"1070\" y=\"767\" \/>\n <di:waypoint x=\"1097\" y=\"767\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0fpeqn8_di\" bpmnElement=\"Flow_0fpeqn8\">\n <di:waypoint x=\"1122\" y=\"742\" \/>\n <di:waypoint x=\"1122\" y=\"698\" \/>\n <di:waypoint x=\"1219\" y=\"698\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1133\" y=\"667\" width=\"81\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1wh7ll1_di\" bpmnElement=\"Flow_1wh7ll1\">\n <di:waypoint x=\"1122\" y=\"792\" \/>\n <di:waypoint x=\"1122\" y=\"814\" \/>\n <di:waypoint x=\"1221\" y=\"814\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1130\" y=\"825\" width=\"87\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1jt6q3y_di\" bpmnElement=\"Flow_1jt6q3y\">\n <di:waypoint x=\"1437\" y=\"767\" \/>\n <di:waypoint x=\"1615\" y=\"767\" \/>\n <di:waypoint x=\"1615\" y=\"1098\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1494\" y=\"735\" width=\"65\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1h6imqg_di\" bpmnElement=\"Flow_1h6imqg\">\n <di:waypoint x=\"1321\" y=\"814\" \/>\n <di:waypoint x=\"1412\" y=\"814\" \/>\n <di:waypoint x=\"1412\" y=\"792\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1g8ipne_di\" bpmnElement=\"Flow_1g8ipne\">\n <di:waypoint x=\"1319\" y=\"698\" \/>\n <di:waypoint x=\"1412\" y=\"698\" \/>\n <di:waypoint x=\"1412\" y=\"742\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1sjj2gm_di\" bpmnElement=\"Flow_1sjj2gm\">\n <di:waypoint x=\"1122\" y=\"1217\" \/>\n <di:waypoint x=\"1122\" y=\"969\" \/>\n <di:waypoint x=\"1157\" y=\"969\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1065\" y=\"1141\" width=\"56\" height=\"40\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_11zwlrd_di\" bpmnElement=\"Flow_11zwlrd\">\n <di:waypoint x=\"616\" y=\"759\" \/>\n <di:waypoint x=\"682\" y=\"759\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_145gpqj_di\" bpmnElement=\"Flow_145gpqj\">\n <di:waypoint x=\"258\" y=\"250\" \/>\n <di:waypoint x=\"297\" y=\"250\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1kx09zm_di\" bpmnElement=\"Flow_1kx09zm\">\n <di:waypoint x=\"785\" y=\"551\" \/>\n <di:waypoint x=\"907\" y=\"551\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1aijtcn_di\" bpmnElement=\"Flow_1aijtcn\">\n <di:waypoint x=\"591\" y=\"551\" \/>\n <di:waypoint x=\"685\" y=\"551\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"596\" y=\"552\" width=\"78\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_17ny5uv_di\" bpmnElement=\"Flow_17ny5uv\">\n <di:waypoint x=\"486\" y=\"551\" \/>\n <di:waypoint x=\"541\" y=\"551\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1kjf7y9_di\" bpmnElement=\"Flow_1kjf7y9\">\n <di:waypoint x=\"566\" y=\"576\" \/>\n <di:waypoint x=\"566\" y=\"719\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"506\" y=\"648\" width=\"58\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0bvc46v_di\" bpmnElement=\"Flow_0bvc46v\">\n <di:waypoint x=\"397\" y=\"250\" \/>\n <di:waypoint x=\"436\" y=\"250\" \/>\n <di:waypoint x=\"436\" y=\"511\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1qtw2q6_di\" bpmnElement=\"Flow_1qtw2q6\">\n <di:waypoint x=\"1785\" y=\"1123\" \/>\n <di:waypoint x=\"1865\" y=\"1123\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0vok3bx_di\" bpmnElement=\"Flow_0vok3bx\">\n <di:waypoint x=\"1965\" y=\"1123\" \/>\n <di:waypoint x=\"2017\" y=\"1123\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNShape id=\"Gateway_14wptg0_di\" bpmnElement=\"Gateway_Lieferscheinpruefen\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"541\" y=\"526\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_1ob71m4_di\" bpmnElement=\"Activity_1b029kn\">\n <dc:Bounds x=\"386\" y=\"511\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_0f6ao7g_di\" bpmnElement=\"Event_0p7ms1x\">\n <dc:Bounds x=\"907\" y=\"533\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_1qurfsk_di\" bpmnElement=\"Activity_0snbir8\">\n <dc:Bounds x=\"685\" y=\"511\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_1at71qu_di\" bpmnElement=\"DataObjectReference_1at71qu\">\n <dc:Bounds x=\"818\" y=\"461\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"809\" y=\"518\" width=\"60\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_1uloahn_di\" bpmnElement=\"Activity_1uloahn\">\n <dc:Bounds x=\"516\" y=\"719\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_1m9g2lh_di\" bpmnElement=\"Gateway_1m9g2lh\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"1387\" y=\"742\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_0us6bh8_di\" bpmnElement=\"Activity_14ny5c3\">\n <dc:Bounds x=\"1221\" y=\"774\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_0sv5khc_di\" bpmnElement=\"Activity_060riuq\">\n <dc:Bounds x=\"1219\" y=\"658\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_0slfj8c_di\" bpmnElement=\"Gateway_Zahlungsziel\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"1097\" y=\"742\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_0e1s6rd_di\" bpmnElement=\"Activity_0pq4lxv\">\n <dc:Bounds x=\"682\" y=\"719\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_1pdltl8_di\" bpmnElement=\"Event_1wc0kk6\">\n <dc:Bounds x=\"958\" y=\"741\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_0ufclm7_di\" bpmnElement=\"Gateway_Formalpruefen\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"827\" y=\"734\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_0plzlak_di\" bpmnElement=\"DataObjectReference_0plzlak\">\n <dc:Bounds x=\"1354\" y=\"824\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1340\" y=\"881\" width=\"65\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_10dir96_di\" bpmnElement=\"DataObjectReference_10dir96\">\n <dc:Bounds x=\"714\" y=\"824\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"688\" y=\"881\" width=\"90\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_12i5die_di\" bpmnElement=\"Gateway_HoeheRechnungssumme\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"1097\" y=\"1217\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_01j1w6p_di\" bpmnElement=\"Activity_0vq3ho7\">\n <dc:Bounds x=\"942\" y=\"1047\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_0x0geou_di\" bpmnElement=\"Activity_0jdjg2h\">\n <dc:Bounds x=\"942\" y=\"1202\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_0uvc3ct_di\" bpmnElement=\"Gateway_0lfg2b2\">\n <dc:Bounds x=\"877\" y=\"1140\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_1ytfvqk_di\" bpmnElement=\"Activity_1nxd2jr\">\n <dc:Bounds x=\"1157\" y=\"929\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_1pa0mai_di\" bpmnElement=\"Event_1mwritv\">\n <dc:Bounds x=\"1452\" y=\"951\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_07mt2sj_di\" bpmnElement=\"Gateway_Vorgangfreigeben\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"1305\" y=\"944\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_0z0dkdt_di\" bpmnElement=\"Gateway_1y79rn0\">\n <dc:Bounds x=\"1590\" y=\"1098\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Gateway_01r6r9e_di\" bpmnElement=\"Gateway_01r6r9e\" isMarkerVisible=\"true\">\n <dc:Bounds x=\"1405\" y=\"1098\" width=\"50\" height=\"50\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_0fpian9_di\" bpmnElement=\"DataObjectReference_0fpian9\">\n <dc:Bounds x=\"1612\" y=\"1159\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1598\" y=\"1216\" width=\"65\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_1anpq9i_di\" bpmnElement=\"DataObjectReference_1anpq9i\">\n <dc:Bounds x=\"317\" y=\"480\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"305\" y=\"450\" width=\"60\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_1xniyui_di\" bpmnElement=\"DataObjectReference_1xniyui\">\n <dc:Bounds x=\"317\" y=\"551\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"291\" y=\"609\" width=\"90\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_1dwjb3m_di\" bpmnElement=\"DataObjectReference_1dwjb3m\">\n <dc:Bounds x=\"457\" y=\"801\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"431\" y=\"859\" width=\"90\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_07vv3e8_di\" bpmnElement=\"DataObjectReference_07vv3e8\">\n <dc:Bounds x=\"617\" y=\"461\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"605\" y=\"519\" width=\"60\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_07faizf_di\" bpmnElement=\"Activity_1ovc6n5\">\n <dc:Bounds x=\"297\" y=\"210\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_0tpk221_di\" bpmnElement=\"DataObjectReference_0tpk221\">\n <dc:Bounds x=\"370\" y=\"345\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"364\" y=\"403\" width=\"51\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_0aikf8k_di\" bpmnElement=\"DataObjectReference_0aikf8k\">\n <dc:Bounds x=\"291\" y=\"345\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"279\" y=\"402\" width=\"62\" height=\"27\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_1350hwr_di\" bpmnElement=\"Event_1350hwr\">\n <dc:Bounds x=\"222\" y=\"232\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"TextAnnotation_1d5xbhp_di\" bpmnElement=\"TextAnnotation_1d5xbhp\">\n <dc:Bounds x=\"955\" y=\"686\" width=\"100\" height=\"40\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"TextAnnotation_0m88stk_di\" bpmnElement=\"TextAnnotation_0m88stk\">\n <dc:Bounds x=\"215\" y=\"296\" width=\"100\" height=\"41\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"TextAnnotation_0ctzdnl_di\" bpmnElement=\"TextAnnotation_0ctzdnl\">\n <dc:Bounds x=\"971\" y=\"535\" width=\"102\" height=\"40\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"TextAnnotation_1re517f_di\" bpmnElement=\"TextAnnotation_1re517f\">\n <dc:Bounds x=\"1503\" y=\"986\" width=\"100\" height=\"40\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"TextAnnotation_0n20cr3_di\" bpmnElement=\"TextAnnotation_0n20cr3\">\n <dc:Bounds x=\"1153\" y=\"1256\" width=\"201\" height=\"30\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_1s3ovv2_di\" bpmnElement=\"Activity_108exu6\">\n <dc:Bounds x=\"1685\" y=\"1083\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_1czv0yh_di\" bpmnElement=\"Event_1czv0yh\">\n <dc:Bounds x=\"2017\" y=\"1105\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"DataObjectReference_08ly05s_di\" bpmnElement=\"DataObjectReference_08ly05s\">\n <dc:Bounds x=\"1972\" y=\"1189\" width=\"36\" height=\"50\" \/>\n <bpmndi:BPMNLabel>\n <dc:Bounds x=\"1946\" y=\"1246\" width=\"90\" height=\"14\" \/>\n <\/bpmndi:BPMNLabel>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_13zwumu_di\" bpmnElement=\"Activity_1x7zph6\">\n <dc:Bounds x=\"1865\" y=\"1083\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNEdge id=\"Association_1nzy89w_di\" bpmnElement=\"Association_1nzy89w\">\n <di:waypoint x=\"985\" y=\"743\" \/>\n <di:waypoint x=\"994\" y=\"726\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Association_1eimkst_di\" bpmnElement=\"Association_1eimkst\">\n <di:waypoint x=\"246\" y=\"267\" \/>\n <di:waypoint x=\"257\" y=\"296\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Association_1gwf53i_di\" bpmnElement=\"Association_1gwf53i\">\n <di:waypoint x=\"943\" y=\"552\" \/>\n <di:waypoint x=\"971\" y=\"553\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Association_00j6irm_di\" bpmnElement=\"Association_00j6irm\">\n <di:waypoint x=\"1486\" y=\"976\" \/>\n <di:waypoint x=\"1508\" y=\"986\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Association_06pk5qu_di\" bpmnElement=\"Association_06pk5qu\">\n <di:waypoint x=\"1147\" y=\"1242\" \/>\n <di:waypoint x=\"1255\" y=\"1242\" \/>\n <di:waypoint x=\"1255\" y=\"1256\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNShape id=\"Participant_1t6l9uu_di\" bpmnElement=\"Participant_1t6l9uu\" isHorizontal=\"true\">\n <dc:Bounds x=\"1570\" y=\"1340\" width=\"560\" height=\"130\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNEdge id=\"Flow_0kd9ypk_di\" bpmnElement=\"Flow_0kd9ypk\">\n <di:waypoint x=\"1668\" y=\"1400\" \/>\n <di:waypoint x=\"1690\" y=\"1400\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_05nfk8a_di\" bpmnElement=\"Flow_05nfk8a\">\n <di:waypoint x=\"1790\" y=\"1400\" \/>\n <di:waypoint x=\"1824\" y=\"1400\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNShape id=\"Event_03nhp07_di\" bpmnElement=\"Event_1d64cvt\">\n <dc:Bounds x=\"1632\" y=\"1382\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_19ryvda_di\" bpmnElement=\"Event_16dcvqd\">\n <dc:Bounds x=\"1824\" y=\"1382\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_16535mj_di\" bpmnElement=\"Activity_16535mj\">\n <dc:Bounds x=\"1690\" y=\"1360\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Participant_18sv9vt_di\" bpmnElement=\"Participant_18sv9vt\" isHorizontal=\"true\">\n <dc:Bounds x=\"1570\" y=\"1520\" width=\"560\" height=\"130\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNEdge id=\"Flow_1lvm3gr_di\" bpmnElement=\"Flow_1lvm3gr\">\n <di:waypoint x=\"1911\" y=\"1582\" \/>\n <di:waypoint x=\"1940\" y=\"1582\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_02liz1g_di\" bpmnElement=\"Flow_02liz1g\">\n <di:waypoint x=\"2040\" y=\"1582\" \/>\n <di:waypoint x=\"2072\" y=\"1582\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNShape id=\"Event_1s4nmb2_di\" bpmnElement=\"Event_1s4nmb2\">\n <dc:Bounds x=\"1875\" y=\"1564\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Activity_1wqnoj6_di\" bpmnElement=\"Activity_1wqnoj6\">\n <dc:Bounds x=\"1940\" y=\"1542\" width=\"100\" height=\"80\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNShape id=\"Event_0lprpz2_di\" bpmnElement=\"Event_0bdlqvi\">\n <dc:Bounds x=\"2072\" y=\"1564\" width=\"36\" height=\"36\" \/>\n <\/bpmndi:BPMNShape>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_0pntyt9_di\" bpmnElement=\"DataInputAssociation_0pntyt9\">\n <di:waypoint x=\"353\" y=\"513\" \/>\n <di:waypoint x=\"386\" y=\"528\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1x48yed_di\" bpmnElement=\"DataInputAssociation_1x48yed\">\n <di:waypoint x=\"353\" y=\"569\" \/>\n <di:waypoint x=\"386\" y=\"555\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1yslkvg_di\" bpmnElement=\"DataInputAssociation_1yslkvg\">\n <di:waypoint x=\"653\" y=\"493\" \/>\n <di:waypoint x=\"698\" y=\"511\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_1msmwf9_di\" bpmnElement=\"DataOutputAssociation_1msmwf9\">\n <di:waypoint x=\"785\" y=\"520\" \/>\n <di:waypoint x=\"818\" y=\"499\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_0e52hty_di\" bpmnElement=\"DataInputAssociation_0e52hty\">\n <di:waypoint x=\"493\" y=\"808\" \/>\n <di:waypoint x=\"516\" y=\"786\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_132siqp_di\" bpmnElement=\"DataOutputAssociation_132siqp\">\n <di:waypoint x=\"1321\" y=\"833\" \/>\n <di:waypoint x=\"1354\" y=\"846\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_1lhonxy_di\" bpmnElement=\"DataOutputAssociation_1lhonxy\">\n <di:waypoint x=\"1298\" y=\"738\" \/>\n <di:waypoint x=\"1360\" y=\"824\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_16w6f2o_di\" bpmnElement=\"DataInputAssociation_16w6f2o\">\n <di:waypoint x=\"732\" y=\"824\" \/>\n <di:waypoint x=\"732\" y=\"799\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_0nqyhiz_di\" bpmnElement=\"DataInputAssociation_0nqyhiz\">\n <di:waypoint x=\"317\" y=\"345\" \/>\n <di:waypoint x=\"334\" y=\"290\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataOutputAssociation_1iom109_di\" bpmnElement=\"DataOutputAssociation_1iom109\">\n <di:waypoint x=\"359\" y=\"290\" \/>\n <di:waypoint x=\"376\" y=\"345\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1lzchto_di\" bpmnElement=\"DataInputAssociation_1lzchto\">\n <di:waypoint x=\"1648\" y=\"1179\" \/>\n <di:waypoint x=\"1701\" y=\"1163\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"DataInputAssociation_1jxd3k4_di\" bpmnElement=\"DataInputAssociation_1jxd3k4\">\n <di:waypoint x=\"1979\" y=\"1189\" \/>\n <di:waypoint x=\"1964\" y=\"1158\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_173n3vn_di\" bpmnElement=\"Flow_173n3vn\">\n <di:waypoint x=\"1735\" y=\"1163\" \/>\n <di:waypoint x=\"1735\" y=\"1273\" \/>\n <di:waypoint x=\"1650\" y=\"1273\" \/>\n <di:waypoint x=\"1650\" y=\"1382\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_0thbzdq_di\" bpmnElement=\"Flow_0thbzdq\">\n <di:waypoint x=\"1842\" y=\"1382\" \/>\n <di:waypoint x=\"1842\" y=\"1273\" \/>\n <di:waypoint x=\"1760\" y=\"1273\" \/>\n <di:waypoint x=\"1760\" y=\"1163\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_16ybvgs_di\" bpmnElement=\"Flow_16ybvgs\">\n <di:waypoint x=\"1893\" y=\"1163\" \/>\n <di:waypoint x=\"1893\" y=\"1564\" \/>\n <\/bpmndi:BPMNEdge>\n <bpmndi:BPMNEdge id=\"Flow_1qfk0xn_di\" bpmnElement=\"Flow_1qfk0xn\">\n <di:waypoint x=\"2090\" y=\"1564\" \/>\n <di:waypoint x=\"2090\" y=\"1364\" \/>\n <di:waypoint x=\"1920\" y=\"1364\" \/>\n <di:waypoint x=\"1920\" y=\"1163\" \/>\n <\/bpmndi:BPMNEdge>\n <\/bpmndi:BPMNPlane>\n <\/bpmndi:BPMNDiagram>\n<\/bpmn:definitions>\n';
|
|
importXML(diagramXML);
|
|
|
|
})(window.BpmnJS, window.jQuery);
|
|
</script>
|
|
</body>
|
|
</html> |