draft impl zollliste und impl neue Archive Suche
This commit is contained in:
parent
bb22c71a7a
commit
02c9522bbd
9 changed files with 1307 additions and 5 deletions
|
|
@ -64,6 +64,12 @@ public class CustomSearchController implements Serializable {
|
||||||
@Inject
|
@Inject
|
||||||
TeamController teamController;
|
TeamController teamController;
|
||||||
|
|
||||||
|
boolean isArchiveSearch = false;
|
||||||
|
|
||||||
|
public void init() {
|
||||||
|
isArchiveSearch = true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Diese Suche schränkt immer auf Archive und Rechnugnscontrolling ein!!
|
* Diese Suche schränkt immer auf Archive und Rechnugnscontrolling ein!!
|
||||||
*
|
*
|
||||||
|
|
@ -71,6 +77,11 @@ public class CustomSearchController implements Serializable {
|
||||||
*/
|
*/
|
||||||
public void onSearchEvent(@Observes SearchEvent searchEvent) {
|
public void onSearchEvent(@Observes SearchEvent searchEvent) {
|
||||||
|
|
||||||
|
if (!isArchiveSearch) {
|
||||||
|
// Keine Anpassung für andere Prozesse
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
String query = searchEvent.getQuery();
|
String query = searchEvent.getQuery();
|
||||||
float invoiceTotal = searchEvent.getSearchFilter().getItemValueFloat("invoice.total");
|
float invoiceTotal = searchEvent.getSearchFilter().getItemValueFloat("invoice.total");
|
||||||
Date invoiceDate = searchEvent.getSearchFilter().getItemValueDate("invoice.date");
|
Date invoiceDate = searchEvent.getSearchFilter().getItemValueDate("invoice.date");
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,97 @@
|
||||||
|
package com.alexanderlogistics;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import javax.enterprise.context.ConversationScoped;
|
||||||
|
import javax.inject.Inject;
|
||||||
|
import javax.inject.Named;
|
||||||
|
|
||||||
|
import org.imixs.workflow.ItemCollection;
|
||||||
|
import org.imixs.workflow.engine.DocumentService;
|
||||||
|
import org.imixs.workflow.engine.WorkflowService;
|
||||||
|
import org.imixs.workflow.faces.data.WorkflowController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Der ZollListController dient dazu in einer Zoll Liste die Rechnungen
|
||||||
|
* anzuzeigen,
|
||||||
|
* für die noch Zollabrechnungen erforderlich sind.
|
||||||
|
*
|
||||||
|
* Diese List wird aus einem Abgleich einer Cargosoft Datei erstellt.
|
||||||
|
*
|
||||||
|
* @author rsoika
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Named("zollListController")
|
||||||
|
@ConversationScoped
|
||||||
|
public class ZollListController implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public static final int TASK_ERSTELLUNG = 1000;
|
||||||
|
|
||||||
|
private static Logger logger = Logger.getLogger(ZollListController.class.getName());
|
||||||
|
|
||||||
|
private String lastDbtrNumber = null;
|
||||||
|
|
||||||
|
private String currencyFilter = "-";
|
||||||
|
private String lastCurrencyFilter = null;
|
||||||
|
|
||||||
|
private List<ItemCollection> invoiceList = null;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
protected WorkflowController workflowController;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
protected WorkflowService workflowService;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
ZahlungseingangService zahlungseingangService;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
protected DocumentService documentService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Methode ist eine Dummy Methode die nur mal 3 Rechnungen simmuliert.
|
||||||
|
*
|
||||||
|
* Später wird diese Methode irgend was anderes machen.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public List<ItemCollection> getInvoices() {
|
||||||
|
invoiceList = new ArrayList<ItemCollection>();
|
||||||
|
|
||||||
|
// dummy1
|
||||||
|
|
||||||
|
invoiceList.add(new ItemCollection()
|
||||||
|
.setItemValue("invoice.text", "LA-HOL-2401-002")
|
||||||
|
.setItemValue("invoice.atc", "ATC400058750120242452")
|
||||||
|
.setItemValue("dbtr.name", "D18317 Big Belly Solar GmbH")
|
||||||
|
.setItemValue("invoice.ZOLL", 18.45)
|
||||||
|
.setItemValue("invoice.EUST", 0)
|
||||||
|
.setItemValue("invoice.number", ""));
|
||||||
|
|
||||||
|
invoiceList.add(new ItemCollection()
|
||||||
|
.setItemValue("invoice.text", "LA-HOL-2401-003")
|
||||||
|
.setItemValue("invoice.atc", "ATC400058750120242450")
|
||||||
|
.setItemValue("dbtr.name", "D18317 Big Belly Solar GmbH")
|
||||||
|
.setItemValue("invoice.ZOLL", 100.45)
|
||||||
|
.setItemValue("invoice.EUST", 0)
|
||||||
|
.setItemValue("invoice.number", ""));
|
||||||
|
|
||||||
|
invoiceList.add(new ItemCollection()
|
||||||
|
.setItemValue("invoice.text", "LA-PAP-2401-003")
|
||||||
|
.setItemValue("invoice.atc", "345345")
|
||||||
|
.setItemValue("dbtr.name", "D18006 GPI BERLIN GMBH")
|
||||||
|
.setItemValue("invoice.ZOLL", 253.4)
|
||||||
|
.setItemValue("invoice.EUST", 0)
|
||||||
|
.setItemValue("invoice.number", ""));
|
||||||
|
|
||||||
|
return invoiceList;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
<!-- init search controller -->
|
<!-- init search controller -->
|
||||||
<f:metadata>
|
<f:metadata>
|
||||||
<f:viewAction action="#{searchController.init()}" />
|
<f:viewAction action="#{searchController.init()}" />
|
||||||
|
<f:viewAction action="#{customSearchController.init()}" />
|
||||||
</f:metadata>
|
</f:metadata>
|
||||||
</h:head>
|
</h:head>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,97 @@
|
||||||
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
|
||||||
|
xmlns:f="http://java.sun.com/jsf/core" xmlns:c="http://java.sun.com/jsp/jstl/core"
|
||||||
|
xmlns:h="http://java.sun.com/jsf/html" xmlns:i="http://java.sun.com/jsf/composite/imixs"
|
||||||
|
xmlns:marty="http://java.sun.com/jsf/composite/marty">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Shows the op liste fo rthe current dbtr.number -->
|
||||||
|
|
||||||
|
|
||||||
|
<h:commandScript name="calculateOpSummary" execute="invoiceRefHolder_ID" render="opcalculater_id" />
|
||||||
|
|
||||||
|
<h:panelGroup layout="block" styleClass="imixs-form-section" id="oplist-table" binding="#{opListContainer}">
|
||||||
|
|
||||||
|
|
||||||
|
<h:selectOneRadio value="#{opListController.currencyFilter}" style="float:right;">
|
||||||
|
<f:selectItem itemLabel="Alle" itemValue="-" />
|
||||||
|
<f:selectItem itemLabel="EUR" itemValue="EUR" />
|
||||||
|
<f:selectItem itemLabel="USD" itemValue="USD" />
|
||||||
|
<f:ajax render="oplist-table" />
|
||||||
|
</h:selectOneRadio>
|
||||||
|
|
||||||
|
|
||||||
|
<table style="width: 100%; margin: 5px;">
|
||||||
|
<tr>
|
||||||
|
<th style="text-align: left;">Positionsnummer</th>
|
||||||
|
<th style="text-align: left;">ATC-Nummer</th>
|
||||||
|
|
||||||
|
<th style="text-align: left;">Anmelder</th>
|
||||||
|
<th style="text-align: left;">ZOLL (ER)</th>
|
||||||
|
<th style="text-align: left;">EUST (ER)</th>
|
||||||
|
<th style="text-align: right;">Fällig wann</th>
|
||||||
|
<th style="width: 40px;">Eingangsrechnung</th>
|
||||||
|
<th style="width: 100px;">Status</th>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
.setItemValue("invoice.text", "LA-HOL-2401-002")
|
||||||
|
.setItemValue("invoice.atc", "ATC400058750120242452")
|
||||||
|
.setItemValue("dbtr.name", "D18317 Big Belly Solar GmbH")
|
||||||
|
.setItemValue("invoice.ZOLL", 18.45)
|
||||||
|
.setItemValue("invoice.EUST", 0)
|
||||||
|
.setItemValue("invoice.number", ""));
|
||||||
|
-->
|
||||||
|
<ui:param name="invoices" value="#{zollListController.getInvoices()}"></ui:param>
|
||||||
|
<ui:repeat value="#{invoices}" var="invoice">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
#{invoice.item['invoice.text']}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
#{invoice.item['invoice.atc']}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
#{invoice.item['dbtr.name']}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
#{invoice.item['invoice.zoll']}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
#{invoice.item['invoice.eust']}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
#{invoice.item['invoice.number']}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</ui:repeat>
|
||||||
|
|
||||||
|
<tr style="border-top: 1px solid #ccc;">
|
||||||
|
<td />
|
||||||
|
<td />
|
||||||
|
<td />
|
||||||
|
<td />
|
||||||
|
<td><strong>Summary</strong></td>
|
||||||
|
|
||||||
|
<!-- Invoice total -->
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
</h:panelGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ui:composition>
|
||||||
495
reports/cargosoft/test/CargoSoftInvoice-2023.1.xsd
Normal file
495
reports/cargosoft/test/CargoSoftInvoice-2023.1.xsd
Normal file
|
|
@ -0,0 +1,495 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Mit XMLSpy v2013 sp1 (x64) (http://www.altova.com) von Uwe Droste (CargoSoft GmbH) bearbeitet -->
|
||||||
|
<!-- edited with XMLSpy v2018 rel. 2 sp1 (x64) (http://www.altova.com) by (CargoSoft GmbH) -->
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
|
||||||
|
attributeFormDefault="unqualified">
|
||||||
|
<xs:include schemaLocation="https://xsd.cargosoft.de/CargoSoftFile/CargoSoftFile-2023.1.xsd"/>
|
||||||
|
<xs:include schemaLocation="https://xsd.cargosoft.de/CargoSoftCommon/CargoSoftCommon-2023.1.xsd"/>
|
||||||
|
<xs:element name="Invoices">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Illustration of invoices in CargoSoft</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="Message" type="Message"/>
|
||||||
|
<xs:element name="Invoice" maxOccurs="unbounded">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="InvoiceHeader">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="Client" type="CodeAndDescription">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.mandant</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.mandant</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Branch" type="CodeAndDescription" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.niederlassung</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.niederlassung</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceNumber" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>On Import: If null, CargoSoft will generate the
|
||||||
|
invoice number from a number range based on the invoice type On
|
||||||
|
Export: CS will send this number eafako_t.rechnr
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.rechnr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceType" type="CodeAndDescription">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>invoice, creditnote, cancellationeafako_t.art_kennz
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceCurrency" type="Currency" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.fk_wg_sch</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceAmount" type="InvoiceAmount"/>
|
||||||
|
<xs:element name="CollectionInvoice" type="xs:boolean" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>true/falseeafako_t.bu_per</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BookingInformation" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.buchungstext</xs:documentation>
|
||||||
|
<xs:documentation>db field:eafako_t.buchungstext</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BookingPeriod" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>yyyymm: etc: 201002eafako_t.bu_per</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Booked" type="xs:boolean" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>true/falseeafako_t.gebucht</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Cancelled" type="xs:boolean" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>true/falseeafako_t.storniert</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CancellationInvoiceNumber" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.beleg_storniert</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.rechnr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Correction" type="xs:boolean" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>true/falseeafako_t.storniert</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CorrectionInvoiceNumber" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.beleg_korrigiert</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.rechnr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Allocation" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.kontierung</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="COST"/>
|
||||||
|
<xs:enumeration value="REVENUE"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="AlreadyPaid" type="xs:boolean" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>true/falseeafako_t.lr_bezahlt</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="SecuredROE" type="xs:boolean" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>true/falseeafako_t.kurs_sicher</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CostUnit" type="CodeAndDescription" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.fk_kst_mc</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Barcode" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.barcode</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceDate" type="xs:dateTime">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.redatum</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.redatum</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceAddress" type="InvoiceAddressType"
|
||||||
|
maxOccurs="unbounded"/>
|
||||||
|
<xs:element name="PaymentConditions" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Payment conditions</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="PaymentCondition">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Payment condition codeeafako_t.fk_zb_kz
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>dbfield: eafako_t.fk_zb_kz
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:complexContent>
|
||||||
|
<xs:extension base="CodeAndDescription"/>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="NumberOfDays" type="xs:integer" minOccurs="0"/>
|
||||||
|
<xs:element name="DueDate" type="xs:dateTime" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.valdatum</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.val_datum
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CreationDate" type="DateTimeType" minOccurs="0"/>
|
||||||
|
<xs:element name="LastUpdateInformation" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Information about date, time and
|
||||||
|
usereafako_t.fk_mitarb_logineafako_t.systemdateafako_t.systemzeit
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="UpdateDate" type="xs:dateTime" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation/>
|
||||||
|
<xs:documentation>db field: eafako_t.system_datum
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="UpdateTime" type="xs:time" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation/>
|
||||||
|
<xs:documentation>db field: eafako-t.systemzeit
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="User" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>User information</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="Login" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Optional will not be
|
||||||
|
processed
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db field:
|
||||||
|
eafako_t.fk_mitarb_login
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Name" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Optional will not be
|
||||||
|
processed
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation/>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Email" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Optional will not be
|
||||||
|
processed
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation/>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Telephone" type="xs:string"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Optional will not be
|
||||||
|
processed
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation/>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Fax" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Optional will not be
|
||||||
|
processed
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation/>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="OrderData" type="OrderDataType" minOccurs="0"/>
|
||||||
|
<xs:element name="References" type="References" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.rech_referenz</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="Attachments" minOccurs="0">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence maxOccurs="unbounded">
|
||||||
|
<xs:element name="Attachment" type="AttachmentType"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="AdditionalFields" type="AdditionalFieldType" minOccurs="0"/>
|
||||||
|
<xs:element name="PerformanceDate" type="xs:dateTime" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.leistdatum</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.leistdatum</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute name="ID" type="xs:integer">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>fibuko_t oder eafako_t</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:attribute>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceRows">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence maxOccurs="unbounded">
|
||||||
|
<xs:element name="InvoiceRow">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="Row" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafapo_t.zeile</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafapo_t.zeile
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="FileNumber" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafapo_t.fk_eakopf_posnr
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BillingCode" type="CodeAndDescription"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Billing codeseafapo_t.fk_aart_nr
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafapo_t.fk_aart_nr
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BillingTexts" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Billing Text (5 rows possible)
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="BillingText" type="xs:string"
|
||||||
|
minOccurs="0" maxOccurs="5">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Optional will not be
|
||||||
|
processed
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafapo_t.abr_text,
|
||||||
|
eafapo_t.abr_text2,
|
||||||
|
eafapo_t.abr_text3,eafapo_t.abr_text4,
|
||||||
|
eafapo_t.abr_text5
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InvoiceAmount" type="InvoiceAmount"/>
|
||||||
|
<xs:element name="CostUnit" type="CodeAndDescription" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.fk_kst_mc</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ActivityType" type="CodeAndDescription"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Activity type codeeafapo_t.fk_lart_nr
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafapo_t.fk_lart_nr
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="BookingInformation" type="xs:string"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<xs:element name="ImpersonalAccountNumber" type="CodeAndDescription"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<xs:element name="DifferingBookingPeriod" type="xs:string"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>yyyymm: etc: 201002eafako_t.bu_per
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db field: eafako_t.bu_per
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ATCNumber" type="xs:string" minOccurs="0"/>
|
||||||
|
<xs:element name="AdditionalFields" type="AdditionalFieldType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<xs:element name="SinglePrice" type="xs:decimal" minOccurs="0"/>
|
||||||
|
<xs:element name="Accrualnumber" type="xs:integer" minOccurs="0"/>
|
||||||
|
<xs:element name="InvoiceAddress" type="InvoiceAddressType"
|
||||||
|
minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xs:element name="OrderData" type="OrderDataType" minOccurs="0"/>
|
||||||
|
<xs:element name="ShipExchangeRate" minOccurs="0">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="Currency" type="Currency"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Currency Code of shiip
|
||||||
|
exchange rate, eafapo_t.fk_wg_schiffskurs
|
||||||
|
</xs:documentation>
|
||||||
|
<xs:documentation>db_field: eafako_t.fk_wg_sch
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ExchangeRate" type="xs:double"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Based on the domestic
|
||||||
|
currency, eafapo_t.schiffskurs
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="InverseRate" type="xs:boolean"
|
||||||
|
minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>Inverse rate is the opposite
|
||||||
|
ratio of the exchange rate, value:
|
||||||
|
true/false , eafapo_t.schiffskurs_invers
|
||||||
|
</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="CargoSoftFiles" minOccurs="0">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence maxOccurs="unbounded">
|
||||||
|
<xs:element ref="File"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute name="version" type="xs:string"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:complexType name="OrderDataType">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="FileNumber" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.fk_eakopf_posnr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ModeOfTransport" type="xs:string" minOccurs="0"/>
|
||||||
|
<xs:element name="OrderDirection" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.bereich</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="IMPORT"/>
|
||||||
|
<xs:enumeration value="EXPORT"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="MainDepartment" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eakopf_t.hauptabteilung</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="SubDepartment" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eakopf_t.unterabteilung</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="NumberOfGoods" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.anzahl_kolli</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="DescriptionOfGoods" type="xs:string" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.inhalt</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="WeightOfGoods" type="xs:double" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.gewicht</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="VolumeOfGoods" type="xs:double" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.cbm</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="ChargableWeightOfGoods" type="xs:double" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.frachtpfl_gewicht</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="NumberOfContainers20" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.cont_20_ctr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="NumberOfContainers40" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.cont_40_ctr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="NumberOfContainers45" type="xs:integer" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>eafako_t.cont_45_ctr</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
<xs:element name="AdditionalFields" type="AdditionalFieldType" minOccurs="0"/>
|
||||||
|
<xs:element name="Waybill" minOccurs="0">
|
||||||
|
<xs:annotation>
|
||||||
|
<xs:documentation>AWB or BL Number</xs:documentation>
|
||||||
|
</xs:annotation>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:schema>
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,117 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.003.03"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||||
|
xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:pain.001.003.03 pain.001.003.03.xsd">
|
||||||
|
<CstmrCdtTrfInitn>
|
||||||
|
<GrpHdr>
|
||||||
|
<MsgId>bf073e72asdf512c4d60af7740872036</MsgId>
|
||||||
|
<CreDtTm>2024-03-21T12:16:05</CreDtTm>
|
||||||
|
<NbOfTxs>3</NbOfTxs>
|
||||||
|
<CtrlSum>655.90</CtrlSum>
|
||||||
|
<InitgPty>
|
||||||
|
<Nm>Targo Bank</Nm>
|
||||||
|
</InitgPty>
|
||||||
|
</GrpHdr>
|
||||||
|
<PmtInf>
|
||||||
|
<PmtInfId>bf073e72asdf512c4d60af7740872036-1</PmtInfId>
|
||||||
|
<PmtMtd>TRF</PmtMtd>
|
||||||
|
<NbOfTxs>3</NbOfTxs>
|
||||||
|
<CtrlSum>655.90</CtrlSum>
|
||||||
|
<PmtTpInf>
|
||||||
|
<SvcLvl>
|
||||||
|
<Cd>SEPA</Cd>
|
||||||
|
</SvcLvl>
|
||||||
|
</PmtTpInf>
|
||||||
|
<ReqdExctnDt>2024-03-21</ReqdExctnDt>
|
||||||
|
<Dbtr>
|
||||||
|
<Nm>Targo Bank</Nm>
|
||||||
|
</Dbtr>
|
||||||
|
<DbtrAcct>
|
||||||
|
<Id>
|
||||||
|
<IBAN>SA11555500000000055273</IBAN>
|
||||||
|
</Id>
|
||||||
|
</DbtrAcct>
|
||||||
|
<DbtrAgt>
|
||||||
|
<FinInstnId>
|
||||||
|
<BIC>AAXADEMM</BIC>
|
||||||
|
</FinInstnId>
|
||||||
|
</DbtrAgt>
|
||||||
|
<ChrgBr>SLEV</ChrgBr>
|
||||||
|
<CdtTrfTxInf>
|
||||||
|
<PmtId>
|
||||||
|
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||||
|
</PmtId>
|
||||||
|
<Amt>
|
||||||
|
<InstdAmt Ccy="EUR">290.40</InstdAmt>
|
||||||
|
</Amt>
|
||||||
|
<CdtrAgt>
|
||||||
|
<FinInstnId>
|
||||||
|
<BIC>XXXADEMM</BIC>
|
||||||
|
</FinInstnId>
|
||||||
|
</CdtrAgt>
|
||||||
|
<Cdtr>
|
||||||
|
<Nm>Supplier 1
|
||||||
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</Nm>
|
||||||
|
</Cdtr>
|
||||||
|
<CdtrAcct>
|
||||||
|
<Id>
|
||||||
|
<IBAN>DE74555500000000028273</IBAN>
|
||||||
|
</Id>
|
||||||
|
</CdtrAcct>
|
||||||
|
<RmtInf>
|
||||||
|
<Ustrd>Invoice Example-1</Ustrd>
|
||||||
|
</RmtInf>
|
||||||
|
</CdtTrfTxInf>
|
||||||
|
<CdtTrfTxInf>
|
||||||
|
<PmtId>
|
||||||
|
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||||
|
</PmtId>
|
||||||
|
<Amt>
|
||||||
|
<InstdAmt Ccy="EUR">292.44</InstdAmt>
|
||||||
|
</Amt>
|
||||||
|
<CdtrAgt>
|
||||||
|
<FinInstnId>
|
||||||
|
<BIC>XXXADEMM</BIC>
|
||||||
|
</FinInstnId>
|
||||||
|
</CdtrAgt>
|
||||||
|
<Cdtr>
|
||||||
|
<Nm>Supplier 1
|
||||||
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</Nm>
|
||||||
|
</Cdtr>
|
||||||
|
<CdtrAcct>
|
||||||
|
<Id>
|
||||||
|
<IBAN>DE74555500000000028273</IBAN>
|
||||||
|
</Id>
|
||||||
|
</CdtrAcct>
|
||||||
|
<RmtInf>
|
||||||
|
<Ustrd>Invoice Example-1</Ustrd>
|
||||||
|
</RmtInf>
|
||||||
|
</CdtTrfTxInf>
|
||||||
|
<CdtTrfTxInf>
|
||||||
|
<PmtId>
|
||||||
|
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||||
|
</PmtId>
|
||||||
|
<Amt>
|
||||||
|
<InstdAmt Ccy="EUR">73.06</InstdAmt>
|
||||||
|
</Amt>
|
||||||
|
<CdtrAgt>
|
||||||
|
<FinInstnId>
|
||||||
|
<BIC>XXXADEMM</BIC>
|
||||||
|
</FinInstnId>
|
||||||
|
</CdtrAgt>
|
||||||
|
<Cdtr>
|
||||||
|
<Nm>Supplier 2 Eyy XXXXXXXXX</Nm>
|
||||||
|
</Cdtr>
|
||||||
|
<CdtrAcct>
|
||||||
|
<Id>
|
||||||
|
<IBAN>DE74555500000000055273</IBAN>
|
||||||
|
</Id>
|
||||||
|
</CdtrAcct>
|
||||||
|
<RmtInf>
|
||||||
|
<Ustrd>3453540000 / 202007000175</Ustrd>
|
||||||
|
</RmtInf>
|
||||||
|
</CdtTrfTxInf>
|
||||||
|
</PmtInf>
|
||||||
|
</CstmrCdtTrfInitn>
|
||||||
|
</Document>
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<CstmrCdtTrfInitn>
|
<CstmrCdtTrfInitn>
|
||||||
<GrpHdr>
|
<GrpHdr>
|
||||||
<MsgId>bf073e72asdf512c4d60af7740872036</MsgId>
|
<MsgId>bf073e72asdf512c4d60af7740872036</MsgId>
|
||||||
<CreDtTm>2024-03-04T08:50:19</CreDtTm>
|
<CreDtTm>2024-03-21T12:16:05</CreDtTm>
|
||||||
<NbOfTxs>3</NbOfTxs>
|
<NbOfTxs>3</NbOfTxs>
|
||||||
<CtrlSum>655.90</CtrlSum>
|
<CtrlSum>655.90</CtrlSum>
|
||||||
<InitgPty>
|
<InitgPty>
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
<Cd>SEPA</Cd>
|
<Cd>SEPA</Cd>
|
||||||
</SvcLvl>
|
</SvcLvl>
|
||||||
</PmtTpInf>
|
</PmtTpInf>
|
||||||
<ReqdExctnDt>2024-03-04</ReqdExctnDt>
|
<ReqdExctnDt>2024-03-21</ReqdExctnDt>
|
||||||
<Dbtr>
|
<Dbtr>
|
||||||
<Nm>Targo Bank</Nm>
|
<Nm>Targo Bank</Nm>
|
||||||
</Dbtr>
|
</Dbtr>
|
||||||
|
|
|
||||||
474
workflow/zollliste-de-1.0.0.bpmn
Normal file
474
workflow/zollliste-de-1.0.0.bpmn
Normal file
|
|
@ -0,0 +1,474 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- origin at X=0.0 Y=0.0 --><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:tl="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.5.4.RC1-v20220528-0836-B1" id="Definitions_1" name="Definitions 1" targetNamespace="http://www.imixs.org/bpmn2">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowmodelversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[zollliste-de-1.0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtfieldmapping" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Prozess-Verantwortliche|process.manager]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Prozess-Assistenz|process.assist]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Buchhaltung|process.team]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Abteilungsleiter|space.manager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttimefieldmapping" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Wiedervorlage|datDate]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Start|datFrom]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Ende|datTo]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtplugins" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ResultPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.RulePlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.ProfilePlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.plugins.SequenceNumberPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.team.TeamPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.DeputyPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.OwnerPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.HistoryPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.LogPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ApplicationPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.plugins.CommentPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.MailPlugin]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<open-bpmn:auto-align>true</open-bpmn:auto-align>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:signal id="Signal_1" name="com.alexanderlogistics.OPListExportAdapter"/>
|
||||||
|
<bpmn2:message id="Message_2" name="Html-Header">
|
||||||
|
<bpmn2:documentation id="Documentation_22"><![CDATA[<html>
|
||||||
|
<head>
|
||||||
|
<style type="text/css">
|
||||||
|
html, body, div, p, pre, h1, h2, h3, ul, ol, span, a, table, td, form, img,
|
||||||
|
li {
|
||||||
|
font-family: Arial;
|
||||||
|
font-style: normal;
|
||||||
|
font-variant: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 11pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 1em;
|
||||||
|
min-width: 41em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 12pt;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
td { border:none;min-width:120px; }
|
||||||
|
th { font-weight: bold;}
|
||||||
|
</style>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
<title><itemvalue>$workflowstatus</itemvalue></title>
|
||||||
|
</head>
|
||||||
|
<body>]]></bpmn2:documentation>
|
||||||
|
</bpmn2:message>
|
||||||
|
<bpmn2:message id="Message_7" name="Html-Footer">
|
||||||
|
<bpmn2:documentation id="Documentation_15"><![CDATA[</body>
|
||||||
|
</html>]]></bpmn2:documentation>
|
||||||
|
</bpmn2:message>
|
||||||
|
<bpmn2:collaboration id="Collaboration_1" name="Zahlungseingang">
|
||||||
|
<bpmn2:participant id="Participant_1" name="Zoll-Liste" processRef="Process_1">
|
||||||
|
<bpmn2:documentation id="documentation_9Tp5PA"/>
|
||||||
|
</bpmn2:participant>
|
||||||
|
<bpmn2:participant id="Participant_2" name="SEPA-Export Pool" processRef="eingangsrechnung-de"/>
|
||||||
|
</bpmn2:collaboration>
|
||||||
|
<bpmn2:process id="eingangsrechnung-de" isExecutable="false" name="Zoll Liste">
|
||||||
|
<bpmn2:documentation id="documentation_GmzFcw"/>
|
||||||
|
</bpmn2:process>
|
||||||
|
<bpmn2:process definitionalCollaborationRef="Collaboration_1" id="Process_1" isExecutable="false" name="Zoll-Liste">
|
||||||
|
<bpmn2:laneSet id="LaneSet_1" name="Lane Set 1">
|
||||||
|
<bpmn2:lane id="Lane_1" name="Fachbereich">
|
||||||
|
<bpmn2:flowNodeRef>StartEvent_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_3</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_4</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>EndEvent_3</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_8</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:documentation id="documentation_CzcdHw"/>
|
||||||
|
<bpmn2:flowNodeRef>DataObject_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>event_XJbC5A</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>event_6fY5IQ</bpmn2:flowNodeRef>
|
||||||
|
</bpmn2:lane>
|
||||||
|
</bpmn2:laneSet>
|
||||||
|
<bpmn2:startEvent id="StartEvent_1" name="Start">
|
||||||
|
<bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
|
||||||
|
<bpmn2:documentation id="documentation_VE46fA"/>
|
||||||
|
</bpmn2:startEvent>
|
||||||
|
<bpmn2:task id="Task_2" imixs:processid="1100" name="Erledigt">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<itemvalue>space.name</itemvalue> - <itemvalue format="dd. MMMM yyyy" locale="DE">date</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[process.manager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[form_basic_read]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitem]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddwriteaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-briefcase||||typcn-tick,imixs-success]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_4"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
|
||||||
|
<bpmn2:incoming>sequenceFlow_l0egag</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_GVz3vg</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:endEvent id="EndEvent_3" name="End">
|
||||||
|
<bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
|
||||||
|
<bpmn2:documentation id="documentation_1dAjDA"/>
|
||||||
|
</bpmn2:endEvent>
|
||||||
|
<bpmn2:task id="Task_1" imixs:processid="1000" name="Offen">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<itemvalue>space.name</itemvalue> - <itemvalue format="dd. MMMM yyyy" locale="DE">date</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[alexander/form_basic]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-briefcase||||typcn-warning,imixs-warning]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitem]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[space.manager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[space.manager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[space.manager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddwriteaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_3"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>sequenceFlow_4Vru0A</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_EzmiPA</bpmn2:outgoing>
|
||||||
|
<bpmn2:incoming>sequenceFlow_E8t80w</bpmn2:incoming>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_4" sourceRef="StartEvent_1" targetRef="Task_1">
|
||||||
|
<bpmn2:documentation id="documentation_9fyX0g"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:task id="Task_4" imixs:processid="1900" name="Abgeschlossen">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<itemvalue>sequencenumber</itemvalue> <itemvalue>space.name</itemvalue> - <itemvalue format="dd.MM.yyyy">$created</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-chart-bar||||typcn-tick,imixs-success]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[form_basic_read]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value/>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_16"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_8" imixs:activityid="50" name="Abschließen">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Zoll-Liste abgeschlossen]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[<item name="action">home</item>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
|
||||||
|
<bpmn2:documentation id="documentation_yZdzqg"/>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_17" sourceRef="Task_2" targetRef="IntermediateCatchEvent_8">
|
||||||
|
<bpmn2:documentation id="documentation_Slk2fA"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_18" sourceRef="IntermediateCatchEvent_8" targetRef="Task_4">
|
||||||
|
<bpmn2:documentation id="documentation_lonRSg"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_19" sourceRef="Task_4" targetRef="EndEvent_3">
|
||||||
|
<bpmn2:documentation id="documentation_nsa2IQ"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_2" imixs:activityid="10" name="Speichern">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="rtfresultlog" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[Aktualisiert]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
|
||||||
|
<bpmn2:documentation id="documentation_2oZTGQ"/>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="IntermediateCatchEvent_2" targetRef="Task_2">
|
||||||
|
<bpmn2:documentation id="documentation_ZiY0pQ"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_3" imixs:activityid="100" name="[update]">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value/>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keymailreceiverfields" type="xs:string"/>
|
||||||
|
<imixs:item name="rtfmailbody" type="CDATA">
|
||||||
|
<imixs:value/>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Es wurden neue Positionen hinzugefügt]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:messageEventDefinition id="MessageEventDefinition_1"/>
|
||||||
|
<bpmn2:documentation id="documentation_pNB3fg"/>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_4Vru0A</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:dataObject id="DataObject_2" name="Form">
|
||||||
|
<bpmn2:documentation id="Documentation_5"><![CDATA[<?xml version="1.0"?>
|
||||||
|
<imixs-form>
|
||||||
|
<imixs-form-section columns="2">
|
||||||
|
<item name="" type="custom" path="alexander/spaceref" label="Fachbereich:" />
|
||||||
|
|
||||||
|
<item name="date" type="date" label="Fälligkeit:" />
|
||||||
|
<item name="zoll" type="currency" label="Zoll:" />
|
||||||
|
<item name="eust" type="currency" label="EUST:" />
|
||||||
|
</imixs-form-section>
|
||||||
|
|
||||||
|
<imixs-form-section label="Offene Posten" path="alexander/section_zollliste_details" readonly="false" />
|
||||||
|
|
||||||
|
</imixs-form>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:dataState id="DataState_2"/>
|
||||||
|
</bpmn2:dataObject>
|
||||||
|
<bpmn2:association id="Association_3" sourceRef="DataObject_2" targetRef="Task_1">
|
||||||
|
<bpmn2:documentation id="documentation_gEJUyg"/>
|
||||||
|
</bpmn2:association>
|
||||||
|
<bpmn2:intermediateCatchEvent id="event_XJbC5A" imixs:activityid="10" name="Erledigt">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Die offenen Zollrechnungen wurden erstellt.]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="documentation_vQEymA"/>
|
||||||
|
<bpmn2:incoming>sequenceFlow_EzmiPA</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_l0egag</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_4Vru0A" sourceRef="IntermediateCatchEvent_3" targetRef="Task_1">
|
||||||
|
<bpmn2:documentation id="documentation_tH3rjg"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_EzmiPA" sourceRef="Task_1" targetRef="event_XJbC5A">
|
||||||
|
<bpmn2:documentation id="documentation_HhV7dA"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_l0egag" sourceRef="event_XJbC5A" targetRef="Task_2">
|
||||||
|
<bpmn2:documentation id="documentation_Cv5oCQ"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:intermediateCatchEvent id="event_6fY5IQ" imixs:activityid="100" name="[update]">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value/>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keymailreceiverfields" type="xs:string"/>
|
||||||
|
<imixs:item name="rtfmailbody" type="CDATA">
|
||||||
|
<imixs:value/>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Es wurden neue Positionen hinzugefügt]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:messageEventDefinition id="messageEventDefinition_8JwBlw"/>
|
||||||
|
<bpmn2:documentation id="documentation_E3uPXQ"/>
|
||||||
|
<bpmn2:incoming>sequenceFlow_GVz3vg</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_E8t80w</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_GVz3vg" sourceRef="Task_2" targetRef="event_6fY5IQ">
|
||||||
|
<bpmn2:documentation id="documentation_15n2yQ"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_E8t80w" sourceRef="event_6fY5IQ" targetRef="Task_1">
|
||||||
|
<bpmn2:documentation id="documentation_y0LxEQ"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
</bpmn2:process>
|
||||||
|
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="Default Process Diagram">
|
||||||
|
<bpmndi:BPMNPlane bpmnElement="Collaboration_1" id="BPMNPlane_1">
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Participant_1" id="BPMNShape_Participant_1" isHorizontal="true">
|
||||||
|
<dc:Bounds height="500.0" width="1200.0" x="100.0" y="150.0"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Lane_1" id="BPMNShape_Lane_1" isHorizontal="true">
|
||||||
|
<dc:Bounds height="500.0" width="1170.0" x="130.0" y="150.0"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="StartEvent_1" id="BPMNShape_1">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="177.0" y="297.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_1" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="147.5" y="337.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Task_1" id="BPMNShape_Task_1">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="290.0" y="290.0"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="EndEvent_3" id="BPMNShape_EndEvent_2">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="1097.0" y="297.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_85" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="1068.0" y="337.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Task_2" id="BPMNShape_Task_2">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="600.0" y="290.0"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Message_2" id="BPMNShape_Message_1">
|
||||||
|
<dc:Bounds height="20.0" width="30.0" x="119.0" y="59.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_35">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="84.0" y="79.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Message_7" id="BPMNShape_Message_4">
|
||||||
|
<dc:Bounds height="20.0" width="30.0" x="220.0" y="59.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_40">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="185.0" y="79.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="Task_4" id="BPMNShape_Task_4">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="920.0" y="290.0"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="IntermediateCatchEvent_8" id="BPMNShape_IntermediateCatchEvent_8">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="787.0" y="297.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_31" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="754.0" y="337.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="IntermediateCatchEvent_2" id="BPMNShape_IntermediateCatchEvent_2">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="637.0" y="377.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_6" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="605.0" y="416.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="IntermediateCatchEvent_3" id="BPMNShape_IntermediateCatchEvent_3">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="247.0" y="397.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_8" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="221.5" y="440.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="DataObject_2" id="BPMNShape_DataObject_2">
|
||||||
|
<dc:Bounds height="50.0" width="35.0" x="230.0" y="230.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_12">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="198.0" y="280.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_4" id="BPMNEdge_SequenceFlow_4" sourceElement="BPMNShape_1" targetElement="BPMNShape_Task_1">
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_11"/>
|
||||||
|
<di:waypoint x="213.0" y="315.0"/>
|
||||||
|
<di:waypoint x="290.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_17" id="BPMNEdge_SequenceFlow_17" sourceElement="BPMNShape_Task_2" targetElement="BPMNShape_IntermediateCatchEvent_8">
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_36"/>
|
||||||
|
<di:waypoint x="710.0" y="315.0"/>
|
||||||
|
<di:waypoint x="787.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_18" id="BPMNEdge_SequenceFlow_18" sourceElement="BPMNShape_IntermediateCatchEvent_8" targetElement="BPMNShape_Task_4">
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_38"/>
|
||||||
|
<di:waypoint x="823.0" y="315.0"/>
|
||||||
|
<di:waypoint x="920.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_19" id="BPMNEdge_SequenceFlow_19" sourceElement="BPMNShape_Task_4" targetElement="BPMNShape_EndEvent_2">
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_39"/>
|
||||||
|
<di:waypoint x="1030.0" y="315.0"/>
|
||||||
|
<di:waypoint x="1097.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_1" id="BPMNEdge_SequenceFlow_1" sourceElement="BPMNShape_IntermediateCatchEvent_2" targetElement="BPMNShape_Task_2">
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_7"/>
|
||||||
|
<di:waypoint x="655.0" y="377.0"/>
|
||||||
|
<di:waypoint x="655.0" y="340.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="Association_3" id="BPMNEdge_Association_3" sourceElement="BPMNShape_DataObject_2" targetElement="BPMNShape_Task_1">
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_14"/>
|
||||||
|
<di:waypoint x="265.0" y="255.0"/>
|
||||||
|
<di:waypoint x="277.5" y="255.0"/>
|
||||||
|
<di:waypoint x="277.5" y="315.0"/>
|
||||||
|
<di:waypoint x="290.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="event_XJbC5A" id="BPMNShape_3fLqIw">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="487.0" y="297.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_fzXPOA">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="455.0" y="336.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_4Vru0A" id="BPMNEdge_20EpXg" sourceElement="BPMNShape_IntermediateCatchEvent_3" targetElement="BPMNShape_Task_1">
|
||||||
|
<di:waypoint x="271.0" y="398.02943725152284"/>
|
||||||
|
<di:waypoint x="271.0" y="376.0"/>
|
||||||
|
<di:waypoint x="315.0" y="376.0"/>
|
||||||
|
<di:waypoint x="315.0" y="340.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_EzmiPA" id="BPMNEdge_2O039Q" sourceElement="BPMNShape_Task_1" targetElement="BPMNShape_3fLqIw">
|
||||||
|
<di:waypoint x="400.0" y="315.0"/>
|
||||||
|
<di:waypoint x="487.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_l0egag" id="BPMNEdge_WIvxbQ" sourceElement="BPMNShape_3fLqIw" targetElement="BPMNShape_Task_2">
|
||||||
|
<di:waypoint x="523.0" y="315.0"/>
|
||||||
|
<di:waypoint x="600.0" y="315.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNShape bpmnElement="event_6fY5IQ" id="BPMNShape_bW9fRA">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="487.0" y="217.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_xcOZTQ">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="461.5" y="260.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_GVz3vg" id="BPMNEdge_pPQ5Ig" sourceElement="BPMNShape_Task_2" targetElement="BPMNShape_bW9fRA">
|
||||||
|
<di:waypoint x="655.0" y="290.0"/>
|
||||||
|
<di:waypoint x="655.0" y="235.0"/>
|
||||||
|
<di:waypoint x="523.0" y="235.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_E8t80w" id="BPMNEdge_p3x7Iw" sourceElement="BPMNShape_bW9fRA" targetElement="BPMNShape_Task_1">
|
||||||
|
<di:waypoint x="487.0" y="235.0"/>
|
||||||
|
<di:waypoint x="340.0" y="235.0"/>
|
||||||
|
<di:waypoint x="340.0" y="290.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
</bpmndi:BPMNPlane>
|
||||||
|
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
|
||||||
|
<dc:Font name="arial" size="9.0"/>
|
||||||
|
</bpmndi:BPMNLabelStyle>
|
||||||
|
</bpmndi:BPMNDiagram>
|
||||||
|
</bpmn2:definitions>
|
||||||
Loading…
Reference in a new issue