business partner workflow
This commit is contained in:
parent
73cd9a28f7
commit
302e4e5b08
3 changed files with 331 additions and 55 deletions
|
|
@ -0,0 +1,159 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Imixs Workflow Technology
|
||||||
|
* Copyright (C) 2003, 2008 Imixs Software Solutions GmbH,
|
||||||
|
* http://www.imixs.com
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You can receive a copy of the GNU General Public
|
||||||
|
* License at http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Imixs Software Solutions GmbH - initial API and implementation
|
||||||
|
* Ralph Soika
|
||||||
|
*
|
||||||
|
*******************************************************************************/
|
||||||
|
package com.alexanderlogistics;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import org.imixs.workflow.ItemCollection;
|
||||||
|
import org.imixs.workflow.engine.DocumentService;
|
||||||
|
import org.imixs.workflow.exceptions.AccessDeniedException;
|
||||||
|
import org.imixs.workflow.faces.data.WorkflowEvent;
|
||||||
|
|
||||||
|
import jakarta.ejb.EJB;
|
||||||
|
import jakarta.enterprise.event.Observes;
|
||||||
|
import jakarta.faces.view.ViewScoped;
|
||||||
|
import jakarta.inject.Named;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Der BusinessPartnerController stellt methoden für die BusinessPartner Forms
|
||||||
|
* bereit.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author rsoika
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Named
|
||||||
|
@ViewScoped
|
||||||
|
public class BusinessPartnerController implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
protected List<ItemCollection> ibanList = null;
|
||||||
|
|
||||||
|
@EJB
|
||||||
|
DocumentService documentService;
|
||||||
|
|
||||||
|
private static Logger logger = Logger.getLogger(BusinessPartnerController.class.getName());
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WorkflowEvent listener to convert the IBAN child list embeded HashMaps into
|
||||||
|
* ItemCollections and
|
||||||
|
* reconvert them before processing
|
||||||
|
*
|
||||||
|
* @param workflowEvent
|
||||||
|
* @throws AccessDeniedException
|
||||||
|
*/
|
||||||
|
public void onWorkflowEvent(@Observes WorkflowEvent workflowEvent) throws AccessDeniedException {
|
||||||
|
|
||||||
|
int eventType = workflowEvent.getEventType();
|
||||||
|
ItemCollection workitem = workflowEvent.getWorkitem();
|
||||||
|
if (workitem == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// reset orderItems if workItem has changed
|
||||||
|
if (WorkflowEvent.WORKITEM_CHANGED == eventType || WorkflowEvent.WORKITEM_CREATED == eventType) {
|
||||||
|
// reset state
|
||||||
|
explodeIBANList(workitem);
|
||||||
|
}
|
||||||
|
|
||||||
|
// before the workitem is saved we update the field txtOrderItems
|
||||||
|
if (WorkflowEvent.WORKITEM_BEFORE_PROCESS == eventType) {
|
||||||
|
implodeIBANList(workitem);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (WorkflowEvent.WORKITEM_AFTER_PROCESS == eventType) {
|
||||||
|
// reset state
|
||||||
|
explodeIBANList(workitem);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<ItemCollection> getIbanList() {
|
||||||
|
return ibanList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addIBAN() {
|
||||||
|
if (ibanList == null) {
|
||||||
|
ibanList = new ArrayList<ItemCollection>();
|
||||||
|
}
|
||||||
|
ItemCollection source = new ItemCollection();
|
||||||
|
ibanList.add(source);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes an dbtr item from the list
|
||||||
|
*
|
||||||
|
* @param name - name of dbtr
|
||||||
|
*/
|
||||||
|
public void removeIBAN(String name) {
|
||||||
|
if (name != null && ibanList != null) {
|
||||||
|
for (ItemCollection cdtr : ibanList) {
|
||||||
|
if (name.equals(cdtr.getItemValueString("name"))) {
|
||||||
|
ibanList.remove(cdtr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void implodeIBANList(ItemCollection workitem) {
|
||||||
|
List<Map> mapOrderItems = new ArrayList();
|
||||||
|
if (this.ibanList != null) {
|
||||||
|
logger.fine("Convert child items into Map...");
|
||||||
|
Iterator<?> var3 = this.ibanList.iterator();
|
||||||
|
|
||||||
|
while (var3.hasNext()) {
|
||||||
|
ItemCollection orderItem = (ItemCollection) var3.next();
|
||||||
|
mapOrderItems.add(orderItem.getAllItems());
|
||||||
|
}
|
||||||
|
|
||||||
|
workitem.replaceItemValue("partner.iban.list", mapOrderItems);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void explodeIBANList(ItemCollection workitem) {
|
||||||
|
this.ibanList = new ArrayList();
|
||||||
|
List<Object> mapOrderItems = workitem.getItemValue("partner.iban.list");
|
||||||
|
Iterator<?> var4 = mapOrderItems.iterator();
|
||||||
|
while (var4.hasNext()) {
|
||||||
|
Object mapOderItem = var4.next();
|
||||||
|
if (mapOderItem instanceof Map) {
|
||||||
|
ItemCollection itemCol = new ItemCollection((Map) mapOderItem);
|
||||||
|
|
||||||
|
this.ibanList.add(itemCol);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,83 @@
|
||||||
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
||||||
|
xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
|
||||||
|
xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:a="http://xmlns.jcp.org/jsf/passthrough">
|
||||||
|
|
||||||
|
<!-- Listen Verwaltung cdtr IBAN for Business Parnter -->
|
||||||
|
|
||||||
|
<h:panelGroup layout="block" styleClass="imixs-form-section" id="ibanlist"
|
||||||
|
binding="#{ibanListContainer}">
|
||||||
|
|
||||||
|
<f:ajax render="#{ibanListContainer.clientId}" onevent="updateSepaList">
|
||||||
|
<table class="imixsdatatable imixs-orderitems">
|
||||||
|
<tr>
|
||||||
|
<th style="width: 140px">Name</th>
|
||||||
|
<th style="">Bank<span class="imixs-required">
|
||||||
|
*</span></th>
|
||||||
|
<th style="width: 250px;">IBAN</th>
|
||||||
|
<th style="width: 150px;">BIC</th>
|
||||||
|
<th style="width: 50px">
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<ui:repeat var="cdtr" value="#{businessPartnerController.ibanList}">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<h:inputText value="#{cdtr.item['name']}" style="width:100%;" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<h:inputText value="#{cdtr.item['cdtr.name']}"
|
||||||
|
style="width:100%;" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<h:inputText value="#{cdtr.item['cdtr.iban']}"
|
||||||
|
onkeyup="imixsOfficeWorkitem.formatIBAN(this);"
|
||||||
|
style="width:100%;" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<h:inputText value="#{cdtr.item['cdtr.bic']}" style="width:100%;text-transform:uppercase;" />
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<h:commandLink
|
||||||
|
actionListener="#{businessPartnerController.removeIBAN(cdtr.item['name'])}">
|
||||||
|
<span class="typcn typcn-trash imixs-state-info"></span>
|
||||||
|
<f:ajax render="#{ibanListContainer.clientId}"
|
||||||
|
onevent="updateSepaList" />
|
||||||
|
</h:commandLink>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</ui:repeat>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<!-- add button -->
|
||||||
|
<h:commandButton value="#{message.add}" a:data-id="addposbutton_id"
|
||||||
|
actionListener="#{businessPartnerController.addIBAN}">
|
||||||
|
</h:commandButton>
|
||||||
|
</f:ajax>
|
||||||
|
</h:panelGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
/*<![CDATA[*/
|
||||||
|
|
||||||
|
// display summary
|
||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// This method refreshs the layout
|
||||||
|
function updateSepaList(data) {
|
||||||
|
if (data.status === 'success') {
|
||||||
|
$('[id$=ibanlist]').imixsLayout();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*]]>*/
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ui:composition>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<bpmn2:definitions xmlns:BPMN2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:open-bpmn="http://open-bpmn.org/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="org.openbpmn" exporterVersion="1.0.0" targetNamespace="http://open-bpmn.org" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL">
|
<bpmn2:definitions xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:BPMN2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:open-bpmn="http://open-bpmn.org/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="org.openbpmn" exporterVersion="1.0.0" targetNamespace="http://open-bpmn.org">
|
||||||
<bpmn2:collaboration id="collaboration_1" name="Default Collaboration">
|
<bpmn2:collaboration id="collaboration_1" name="Default Collaboration">
|
||||||
<bpmn2:participant id="participant_d6UFsQ" name="Default Process" processRef="process_1"/>
|
<bpmn2:participant id="participant_d6UFsQ" name="Default Process" processRef="process_1"/>
|
||||||
<bpmn2:participant id="participant_oxb3dg" name="Business Partner" processRef="process_Hw9Ryg">
|
<bpmn2:participant id="participant_oxb3dg" name="Business Partner" processRef="process_Hw9Ryg">
|
||||||
|
|
@ -43,6 +43,7 @@
|
||||||
<bpmn2:flowNodeRef>event_aSdkwg</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_aSdkwg</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_Tr0aug</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_Tr0aug</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>dataObject_UQIXAQ</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>dataObject_UQIXAQ</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>event_vwH0cA</bpmn2:flowNodeRef>
|
||||||
</bpmn2:lane>
|
</bpmn2:lane>
|
||||||
</bpmn2:laneSet>
|
</bpmn2:laneSet>
|
||||||
<bpmn2:task id="task_ToMZaQ" imixs:processid="1000" name="Neuanlage">
|
<bpmn2:task id="task_ToMZaQ" imixs:processid="1000" name="Neuanlage">
|
||||||
|
|
@ -69,6 +70,7 @@
|
||||||
<bpmn2:incoming>sequenceFlow_knUYpQ</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_knUYpQ</bpmn2:incoming>
|
||||||
<bpmn2:outgoing>sequenceFlow_2uNvPw</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_2uNvPw</bpmn2:outgoing>
|
||||||
<bpmn2:outgoing>sequenceFlow_NNbMhg</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_NNbMhg</bpmn2:outgoing>
|
||||||
|
<bpmn2:incoming>sequenceFlow_avahXg</bpmn2:incoming>
|
||||||
</bpmn2:task>
|
</bpmn2:task>
|
||||||
<bpmn2:task id="task_B8Pi7A" imixs:processid="1800" name="Gesperrt">
|
<bpmn2:task id="task_B8Pi7A" imixs:processid="1800" name="Gesperrt">
|
||||||
<bpmn2:extensionElements/>
|
<bpmn2:extensionElements/>
|
||||||
|
|
@ -87,7 +89,12 @@
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_knUYpQ" sourceRef="event_aSdkwg" targetRef="task_Q80A1Q">
|
<bpmn2:sequenceFlow id="sequenceFlow_knUYpQ" sourceRef="event_aSdkwg" targetRef="task_Q80A1Q">
|
||||||
<bpmn2:documentation id="documentation_DSg1Eg"/>
|
<bpmn2:documentation id="documentation_DSg1Eg"/>
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
<bpmn2:intermediateCatchEvent id="event_Tr0aug" imixs:activityid="10" name="Sperren">
|
<bpmn2:intermediateCatchEvent id="event_Tr0aug" imixs:activityid="30" name="Sperren">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
<bpmn2:documentation id="documentation_2XhDKQ"/>
|
<bpmn2:documentation id="documentation_2XhDKQ"/>
|
||||||
<bpmn2:incoming>sequenceFlow_2uNvPw</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_2uNvPw</bpmn2:incoming>
|
||||||
<bpmn2:outgoing>sequenceFlow_1mXO8A</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_1mXO8A</bpmn2:outgoing>
|
||||||
|
|
@ -109,59 +116,66 @@
|
||||||
<imixs-form>
|
<imixs-form>
|
||||||
<imixs-form-section columns="1" label="">
|
<imixs-form-section columns="1" label="">
|
||||||
<item name="partner.name" type="text" span="8" readonly="false" label="Name:"/>
|
<item name="partner.name" type="text" span="8" readonly="false" label="Name:"/>
|
||||||
|
<item name="partner.id" type="text" span="4" readonly="true" label="Partner ID:"/>
|
||||||
</imixs-form-section>
|
</imixs-form-section>
|
||||||
|
|
||||||
<imixs-form-section columns="1" label="Adresse">
|
<imixs-form-section columns="1" label="Adresse">
|
||||||
<item name="partner.address" type="text" span="8" required="false" label="Adresse:" />
|
<item name="partner.address" type="text" span="8" required="false" label="Adresse:" />
|
||||||
<item name="partner.address.sub1" type="text" span="8" required="false" label="Zusatz" />
|
<item name="partner.address.sub1" type="text" span="4" required="false" label="Zusatz" />
|
||||||
</imixs-form-section>
|
<item name="partner.country" type="custom" path="country" span="4" readonly="false" label="Land:" />
|
||||||
<imixs-form-section columns="1">
|
|
||||||
<item name="partner.zip" type="text" span="1" required="false" label="PLZ:" />
|
<item name="partner.zip" type="text" span="1" required="false" label="PLZ:" />
|
||||||
<item name="partner.city" type="text" span="4" required="false" label="Stadt:" />
|
<item name="partner.city" type="text" span="7" required="false" label="Stadt:" />
|
||||||
<item name="partner.country" type="custom" path="country" span="3" readonly="false" label="Land:" />
|
<item name="partner.language" type="text" readonly="false" span="4" label="Sprache:" />
|
||||||
</imixs-form-section>
|
</imixs-form-section>
|
||||||
|
|
||||||
<imixs-form-section columns="1" label="Kreditor ">
|
|
||||||
|
<imixs-form-section columns="1" label="Rechnungseingang ">
|
||||||
<item name="cdtr.number" type="text" span="2" readonly="true" label="Kreditoren Nr.:" />
|
<item name="cdtr.number" type="text" span="2" readonly="true" label="Kreditoren Nr.:" />
|
||||||
<item name="cdtr.mail" type="text" span="4" readonly="false" label="E-Mail:" />
|
<item name="cdtr.mail" type="text" span="4" readonly="false" label="E-Mail:" />
|
||||||
<item name="cdtr.creditperiod" type="text" span="2" readonly="false" label="Zahlungsziel (Tage):" />
|
<item name="cdtr.creditperiod" type="text" span="2" readonly="false" label="Zahlungsziel (Tage):" />
|
||||||
</imixs-form-section>
|
|
||||||
|
|
||||||
<imixs-form-section columns="1" label="Debitor ">
|
|
||||||
<item name="dbtr.number" type="text" span="2" readonly="true" label="Debitoren Nr.:" />
|
|
||||||
<item name="dbtr.mail" type="text" span="4" readonly="false" label="E-Mail:" />
|
|
||||||
<item name="dbtr.creditperiod" type="text" span="2" readonly="false" label="Zahlungsziel (Tage):" />
|
|
||||||
</imixs-form-section>
|
|
||||||
|
|
||||||
<imixs-form-section columns="2" label="Banken">
|
|
||||||
<item name="partner.language" type="text" readonly="false" label="Sprache:" />
|
|
||||||
|
|
||||||
<item name="cdtr.iban" type="text" readonly="true" label="IBAN:" />
|
|
||||||
<item name="cdtr.bic" type="text" readonly="true" label="BIC:" />
|
|
||||||
</imixs-form-section>
|
</imixs-form-section>
|
||||||
|
|
||||||
|
<imixs-form-section columns="1" label="Rechnungsausgang ">
|
||||||
|
<item name="dbtr.number" type="text" span="2" readonly="true" label="Debitoren Nr.:" />
|
||||||
|
<item name="dbtr.mail" type="text" span="4" readonly="false" label="E-Mail SOA/Mahnungen:" />
|
||||||
|
<item name="dbtr.creditperiod" type="text" span="2" readonly="false" label="Zahlungsziel (Tage):" />
|
||||||
|
</imixs-form-section>
|
||||||
|
|
||||||
|
<imixs-form-section label="Banken" path="alexander/sub_businesspartner_ibanlist" />
|
||||||
|
|
||||||
</imixs-form>]]></bpmn2:documentation>
|
</imixs-form>]]></bpmn2:documentation>
|
||||||
</bpmn2:dataObject>
|
</bpmn2:dataObject>
|
||||||
<bpmn2:association id="association_pG70zw" sourceRef="task_ToMZaQ" targetRef="dataObject_UQIXAQ">
|
<bpmn2:association id="association_pG70zw" sourceRef="task_ToMZaQ" targetRef="dataObject_UQIXAQ">
|
||||||
<bpmn2:documentation id="documentation_ukKpew"/>
|
<bpmn2:documentation id="documentation_ukKpew"/>
|
||||||
</bpmn2:association>
|
</bpmn2:association>
|
||||||
|
<bpmn2:intermediateCatchEvent id="event_vwH0cA" imixs:activityid="10" name="Speichern">
|
||||||
|
<bpmn2:documentation id="documentation_WOUVTQ"/>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_avahXg</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_avahXg" sourceRef="event_vwH0cA" targetRef="task_Q80A1Q">
|
||||||
|
<bpmn2:documentation id="documentation_lhR6Lw"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:association id="association_uvV8uA" sourceRef="participant_oxb3dg" targetRef="task_Q80A1Q"/>
|
||||||
|
<bpmn2:association id="association_mpLQEQ" sourceRef="dataObject_UQIXAQ" targetRef="task_Q80A1Q">
|
||||||
|
<bpmn2:documentation id="documentation_oVnaJw"/>
|
||||||
|
</bpmn2:association>
|
||||||
</bpmn2:process>
|
</bpmn2:process>
|
||||||
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="OpenBPMN Diagram">
|
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="OpenBPMN Diagram">
|
||||||
<bpmndi:BPMNPlane bpmnElement="collaboration_1" id="BPMNPlane_1">
|
<bpmndi:BPMNPlane bpmnElement="collaboration_1" id="BPMNPlane_1">
|
||||||
<bpmndi:BPMNShape bpmnElement="event_WmkBvw" id="BPMNShape_heefeQ">
|
<bpmndi:BPMNShape bpmnElement="event_WmkBvw" id="BPMNShape_heefeQ">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="57.0" y="117.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="57.0" y="167.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_6qfN6w">
|
<bpmndi:BPMNLabel id="BPMNLabel_6qfN6w">
|
||||||
<dc:Bounds height="20.0" width="100.0" x="25.0" y="156.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="25.0" y="206.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="event_1clvlg" id="BPMNShape_85k4rg">
|
<bpmndi:BPMNShape bpmnElement="event_1clvlg" id="BPMNShape_85k4rg">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="797.0" y="117.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="787.0" y="167.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_F7t2Ng">
|
<bpmndi:BPMNLabel id="BPMNLabel_F7t2Ng">
|
||||||
<dc:Bounds height="20.0" width="100.0" x="765.0" y="99.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="755.0" y="149.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="task_ToMZaQ" id="BPMNShape_CUpR6w">
|
<bpmndi:BPMNShape bpmnElement="task_ToMZaQ" id="BPMNShape_CUpR6w">
|
||||||
<dc:Bounds height="50.0" width="110.0" x="200.0" y="110.0"/>
|
<dc:Bounds height="50.0" width="110.0" x="200.0" y="160.0"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="participant_oxb3dg" id="BPMNShape_mqlDUA">
|
<bpmndi:BPMNShape bpmnElement="participant_oxb3dg" id="BPMNShape_mqlDUA">
|
||||||
<dc:Bounds height="360.0" width="1110.0" x="-30.0" y="40.0"/>
|
<dc:Bounds height="360.0" width="1110.0" x="-30.0" y="40.0"/>
|
||||||
|
|
@ -170,63 +184,83 @@
|
||||||
<dc:Bounds height="360.0" width="1080.0" x="0.0" y="40.0"/>
|
<dc:Bounds height="360.0" width="1080.0" x="0.0" y="40.0"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_25otUg" id="BPMNEdge_NHnc3g" sourceElement="BPMNShape_heefeQ" targetElement="BPMNShape_CUpR6w">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_25otUg" id="BPMNEdge_NHnc3g" sourceElement="BPMNShape_heefeQ" targetElement="BPMNShape_CUpR6w">
|
||||||
<di:waypoint x="93.0" y="135.0"/>
|
<di:waypoint x="93.0" y="185.0"/>
|
||||||
<di:waypoint x="200.0" y="135.0"/>
|
<di:waypoint x="200.0" y="185.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNShape bpmnElement="task_Q80A1Q" id="BPMNShape_7JA0nw">
|
<bpmndi:BPMNShape bpmnElement="task_Q80A1Q" id="BPMNShape_7JA0nw">
|
||||||
<dc:Bounds height="50.0" width="110.0" x="490.0" y="110.0"/>
|
<dc:Bounds height="50.0" width="110.0" x="490.0" y="160.0"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="task_B8Pi7A" id="BPMNShape_ghujeA">
|
<bpmndi:BPMNShape bpmnElement="task_B8Pi7A" id="BPMNShape_ghujeA">
|
||||||
<dc:Bounds height="50.0" width="110.0" x="490.0" y="270.0"/>
|
<dc:Bounds height="50.0" width="110.0" x="490.0" y="320.0"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="event_aSdkwg" id="BPMNShape_uesqgg">
|
<bpmndi:BPMNShape bpmnElement="event_aSdkwg" id="BPMNShape_uesqgg">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="377.0" y="117.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="377.0" y="167.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_AxKRKQ">
|
<bpmndi:BPMNLabel id="BPMNLabel_AxKRKQ">
|
||||||
<dc:Bounds height="20.0" width="100.0" x="345.0" y="156.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="345.0" y="206.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_S9LVXg" id="BPMNEdge_xoCSiA" sourceElement="BPMNShape_CUpR6w" targetElement="BPMNShape_uesqgg">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_S9LVXg" id="BPMNEdge_xoCSiA" sourceElement="BPMNShape_CUpR6w" targetElement="BPMNShape_uesqgg">
|
||||||
<di:waypoint x="310.0" y="135.0"/>
|
<di:waypoint x="310.0" y="185.0"/>
|
||||||
<di:waypoint x="377.0" y="135.0"/>
|
<di:waypoint x="377.0" y="185.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_knUYpQ" id="BPMNEdge_0yPtdQ" sourceElement="BPMNShape_uesqgg" targetElement="BPMNShape_7JA0nw">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_knUYpQ" id="BPMNEdge_0yPtdQ" sourceElement="BPMNShape_uesqgg" targetElement="BPMNShape_7JA0nw">
|
||||||
<di:waypoint x="413.0" y="135.0"/>
|
<di:waypoint x="413.0" y="185.0"/>
|
||||||
<di:waypoint x="490.0" y="135.0"/>
|
<di:waypoint x="490.0" y="185.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNShape bpmnElement="event_Tr0aug" id="BPMNShape_NEaJjA">
|
<bpmndi:BPMNShape bpmnElement="event_Tr0aug" id="BPMNShape_NEaJjA">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="527.0" y="187.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="527.0" y="237.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_GkrCTA">
|
<bpmndi:BPMNLabel id="BPMNLabel_GkrCTA">
|
||||||
<dc:Bounds height="20.0" width="100.0" x="495.0" y="226.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="495.0" y="276.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_2uNvPw" id="BPMNEdge_Q4F2dQ" sourceElement="BPMNShape_7JA0nw" targetElement="BPMNShape_NEaJjA">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_2uNvPw" id="BPMNEdge_Q4F2dQ" sourceElement="BPMNShape_7JA0nw" targetElement="BPMNShape_NEaJjA">
|
||||||
<di:waypoint x="545.0" y="160.0"/>
|
<di:waypoint x="545.0" y="210.0"/>
|
||||||
<di:waypoint x="545.0" y="187.0"/>
|
<di:waypoint x="545.0" y="237.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_1mXO8A" id="BPMNEdge_7CorJA" sourceElement="BPMNShape_NEaJjA" targetElement="BPMNShape_ghujeA">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_1mXO8A" id="BPMNEdge_7CorJA" sourceElement="BPMNShape_NEaJjA" targetElement="BPMNShape_ghujeA">
|
||||||
<di:waypoint x="545.0" y="223.0"/>
|
<di:waypoint x="545.0" y="273.0"/>
|
||||||
<di:waypoint x="545.0" y="270.0"/>
|
<di:waypoint x="545.0" y="320.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_NNbMhg" id="BPMNEdge_HdVWPQ" sourceElement="BPMNShape_7JA0nw" targetElement="BPMNShape_85k4rg">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_NNbMhg" id="BPMNEdge_HdVWPQ" sourceElement="BPMNShape_7JA0nw" targetElement="BPMNShape_85k4rg">
|
||||||
<di:waypoint x="600.0" y="135.0"/>
|
<di:waypoint x="600.0" y="185.0"/>
|
||||||
<di:waypoint x="797.0" y="135.0"/>
|
<di:waypoint x="787.0" y="185.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_rwdWxw" id="BPMNEdge_t88dUw" sourceElement="BPMNShape_ghujeA" targetElement="BPMNShape_85k4rg">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_rwdWxw" id="BPMNEdge_t88dUw" sourceElement="BPMNShape_ghujeA" targetElement="BPMNShape_85k4rg">
|
||||||
<di:waypoint x="600.0" y="295.0"/>
|
<di:waypoint x="600.0" y="345.0"/>
|
||||||
<di:waypoint x="815.0" y="295.0"/>
|
<di:waypoint x="810.0" y="345.0"/>
|
||||||
<di:waypoint x="815.0" y="153.0"/>
|
<di:waypoint x="810.0" y="202.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNShape bpmnElement="dataObject_UQIXAQ" id="BPMNShape_Mnop9Q">
|
<bpmndi:BPMNShape bpmnElement="dataObject_UQIXAQ" id="BPMNShape_Mnop9Q">
|
||||||
<dc:Bounds height="50.0" width="35.0" x="240.0" y="220.0"/>
|
<dc:Bounds height="50.0" width="35.0" x="380.0" y="60.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_h0UuFw">
|
<bpmndi:BPMNLabel id="BPMNLabel_h0UuFw">
|
||||||
<dc:Bounds height="20.0" width="100.0" x="207.5" y="275.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="347.5" y="115.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNEdge bpmnElement="association_pG70zw" id="BPMNEdge_YKSHpA" sourceElement="BPMNShape_CUpR6w" targetElement="BPMNShape_Mnop9Q">
|
<bpmndi:BPMNEdge bpmnElement="association_pG70zw" id="BPMNEdge_YKSHpA" sourceElement="BPMNShape_CUpR6w" targetElement="BPMNShape_Mnop9Q">
|
||||||
<di:waypoint x="255.0" y="160.0"/>
|
<di:waypoint x="260.0" y="160.0"/>
|
||||||
<di:waypoint x="255.0" y="190.0"/>
|
<di:waypoint x="260.0" y="80.0"/>
|
||||||
<di:waypoint x="260.0" y="190.0"/>
|
<di:waypoint x="380.0" y="80.0"/>
|
||||||
<di:waypoint x="260.0" y="220.0"/>
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="event_vwH0cA" id="BPMNShape_OXGg8Q">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="427.0" y="237.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_KaHfJQ">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="395.0" y="276.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_avahXg" id="BPMNEdge_odMtvQ" sourceElement="BPMNShape_OXGg8Q" targetElement="BPMNShape_7JA0nw">
|
||||||
|
<di:waypoint x="462.0" y="260.0"/>
|
||||||
|
<di:waypoint x="480.0" y="260.0"/>
|
||||||
|
<di:waypoint x="480.0" y="185.0"/>
|
||||||
|
<di:waypoint x="490.0" y="185.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="association_uvV8uA" id="BPMNEdge_3Mtxfw" sourceElement="BPMNShape_mqlDUA" targetElement="BPMNShape_7JA0nw">
|
||||||
|
<di:waypoint x="525.0" y="220.0"/>
|
||||||
|
<di:waypoint x="545.0" y="135.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="association_mpLQEQ" id="BPMNEdge_qkEiPA" sourceElement="BPMNShape_Mnop9Q" targetElement="BPMNShape_7JA0nw">
|
||||||
|
<di:waypoint x="415.0" y="80.0"/>
|
||||||
|
<di:waypoint x="550.0" y="80.0"/>
|
||||||
|
<di:waypoint x="550.0" y="160.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
</bpmndi:BPMNPlane>
|
</bpmndi:BPMNPlane>
|
||||||
</bpmndi:BPMNDiagram>
|
</bpmndi:BPMNDiagram>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue