update pl
This commit is contained in:
parent
53b5f69329
commit
616765aa0a
8 changed files with 6306 additions and 391 deletions
|
|
@ -3,3 +3,7 @@
|
||||||
Testen von Mailing kann man über
|
Testen von Mailing kann man über
|
||||||
|
|
||||||
https://www.mail-tester.com/
|
https://www.mail-tester.com/
|
||||||
|
|
||||||
|
Kutzner Mail gateway
|
||||||
|
|
||||||
|
PW: 26W%R#Xe4^Z2Gyz1
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ import org.imixs.archive.core.SnapshotService;
|
||||||
import org.imixs.einvoice.EInvoiceFormatException;
|
import org.imixs.einvoice.EInvoiceFormatException;
|
||||||
import org.imixs.einvoice.EInvoiceModel;
|
import org.imixs.einvoice.EInvoiceModel;
|
||||||
import org.imixs.einvoice.EInvoiceModelFactory;
|
import org.imixs.einvoice.EInvoiceModelFactory;
|
||||||
|
import org.imixs.einvoice.EInvoiceNS;
|
||||||
import org.imixs.einvoice.TradeLineItem;
|
import org.imixs.einvoice.TradeLineItem;
|
||||||
import org.imixs.einvoice.TradeParty;
|
import org.imixs.einvoice.TradeParty;
|
||||||
import org.imixs.workflow.FileData;
|
import org.imixs.workflow.FileData;
|
||||||
|
|
@ -26,6 +27,7 @@ import org.imixs.workflow.exceptions.AdapterException;
|
||||||
import org.imixs.workflow.exceptions.PluginException;
|
import org.imixs.workflow.exceptions.PluginException;
|
||||||
import org.imixs.workflow.exceptions.QueryException;
|
import org.imixs.workflow.exceptions.QueryException;
|
||||||
import org.imixs.workflow.util.XMLParser;
|
import org.imixs.workflow.util.XMLParser;
|
||||||
|
import org.w3c.dom.Element;
|
||||||
|
|
||||||
import com.alexanderlogistics.BusinessPartnerService;
|
import com.alexanderlogistics.BusinessPartnerService;
|
||||||
import com.alexanderlogistics.InvoiceUtil;
|
import com.alexanderlogistics.InvoiceUtil;
|
||||||
|
|
@ -137,6 +139,14 @@ public class KSeFAdapter implements SignalAdapter {
|
||||||
|
|
||||||
model.setId(workitem.getItemValueString("invoice.number"));
|
model.setId(workitem.getItemValueString("invoice.number"));
|
||||||
|
|
||||||
|
// date
|
||||||
|
model.setIssueDateTime(workitem.getItemValueLocalDate("invoice.date"));
|
||||||
|
model.setDueDateTime(workitem.getItemValueLocalDate("invoice.duedate"));
|
||||||
|
|
||||||
|
// Update Addresses
|
||||||
|
TradeParty billingAddress = buildAddress(workitem.getItemValueString("partner.id"), "buyer", model);
|
||||||
|
model.setTradeParty(billingAddress);
|
||||||
|
|
||||||
// Update Rechnungssummen...
|
// Update Rechnungssummen...
|
||||||
if (workitem.getItemValueDouble("invoice.total.tax") > 0) {
|
if (workitem.getItemValueDouble("invoice.total.tax") > 0) {
|
||||||
// wir haben eine Steuer!
|
// wir haben eine Steuer!
|
||||||
|
|
@ -145,6 +155,11 @@ public class KSeFAdapter implements SignalAdapter {
|
||||||
model.setTaxRate(workitem.getItemValueDouble("invoice.total.tax"));
|
model.setTaxRate(workitem.getItemValueDouble("invoice.total.tax"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// set currency
|
||||||
|
Element fa = model.findOrCreateChildNode(model.getRoot(), EInvoiceNS.KSEF, "Fa");
|
||||||
|
model.updateElementValue(fa, EInvoiceNS.KSEF, "KodWaluty",
|
||||||
|
workitem.getItemValueString("invoice.currency"));
|
||||||
|
|
||||||
// Update Invoice Items
|
// Update Invoice Items
|
||||||
List<ItemCollection> invoiceItems = InvoiceUtil.explodeChildList(workitem, "_childitems");
|
List<ItemCollection> invoiceItems = InvoiceUtil.explodeChildList(workitem, "_childitems");
|
||||||
double lineTotalAmount = 0.00;
|
double lineTotalAmount = 0.00;
|
||||||
|
|
@ -158,17 +173,6 @@ public class KSeFAdapter implements SignalAdapter {
|
||||||
model.setNetTotalAmount(workitem.getItemValueDouble("invoice.total"));
|
model.setNetTotalAmount(workitem.getItemValueDouble("invoice.total"));
|
||||||
model.setGrandTotalAmount(workitem.getItemValueDouble("invoice.total"));
|
model.setGrandTotalAmount(workitem.getItemValueDouble("invoice.total"));
|
||||||
|
|
||||||
// date
|
|
||||||
model.setIssueDateTime(workitem.getItemValueLocalDate("invoice.date"));
|
|
||||||
model.setDueDateTime(workitem.getItemValueLocalDate("invoice.duedate"));
|
|
||||||
|
|
||||||
// Update Addresses
|
|
||||||
TradeParty billingAddress = buildAddress(workitem.getItemValueString("partner.id"), "buyer");
|
|
||||||
model.setTradeParty(billingAddress);
|
|
||||||
|
|
||||||
TradeParty shippingAddress = buildAddress(workitem.getItemValueString("partner.id"), "ship_to");
|
|
||||||
model.setTradeParty(shippingAddress);
|
|
||||||
|
|
||||||
// References><Reference type="cs">AB230321</Reference>
|
// References><Reference type="cs">AB230321</Reference>
|
||||||
// model.setOrderReferenceId(workitem.getItemValueString("order.number"));
|
// model.setOrderReferenceId(workitem.getItemValueString("order.number"));
|
||||||
|
|
||||||
|
|
@ -188,7 +192,7 @@ public class KSeFAdapter implements SignalAdapter {
|
||||||
* @param type Der Typ der TradeParty
|
* @param type Der Typ der TradeParty
|
||||||
* @return TradeParty
|
* @return TradeParty
|
||||||
*/
|
*/
|
||||||
public TradeParty buildAddress(String partnerID, String type) throws PluginException {
|
public TradeParty buildAddress(String partnerID, String type, EInvoiceModel model) throws PluginException {
|
||||||
if (partnerID == null || partnerID.isEmpty()) {
|
if (partnerID == null || partnerID.isEmpty()) {
|
||||||
throw new PluginException(this.getClass().getName(), DOCUMENT_ERROR, "Missing partnerID");
|
throw new PluginException(this.getClass().getName(), DOCUMENT_ERROR, "Missing partnerID");
|
||||||
}
|
}
|
||||||
|
|
@ -207,6 +211,15 @@ public class KSeFAdapter implements SignalAdapter {
|
||||||
tradeParty.setPostcodeCode(businessPartner.getItemValueString("partner.zip"));
|
tradeParty.setPostcodeCode(businessPartner.getItemValueString("partner.zip"));
|
||||||
tradeParty.setStreetAddress(businessPartner.getItemValueString("partner.address"));
|
tradeParty.setStreetAddress(businessPartner.getItemValueString("partner.address"));
|
||||||
|
|
||||||
|
if ("buyer".equals(type)) {
|
||||||
|
tradeParty.setVatNumber(businessPartner.getItemValueString("partner.vat"));
|
||||||
|
// Update or create NrKlienta element directly under Podmiot2
|
||||||
|
Element podmiot2 = model.findOrCreateChildNode(model.getRoot(), EInvoiceNS.KSEF, "Podmiot2");
|
||||||
|
model.updateElementValue(podmiot2, EInvoiceNS.KSEF, "NrKlienta",
|
||||||
|
businessPartner.getItemValueString("dbtr.number"));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
return tradeParty;
|
return tradeParty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -207,8 +207,7 @@ public class BusinessPartnerImportService {
|
||||||
businesspartner.setItemValue("partner.address", importDoc.getItemValueString("_vendor_str"));
|
businesspartner.setItemValue("partner.address", importDoc.getItemValueString("_vendor_str"));
|
||||||
businesspartner.setItemValue("partner.zip", importDoc.getItemValueString("_vendor_zip_code"));
|
businesspartner.setItemValue("partner.zip", importDoc.getItemValueString("_vendor_zip_code"));
|
||||||
businesspartner.setItemValue("partner.city", importDoc.getItemValueString("_vendor_city"));
|
businesspartner.setItemValue("partner.city", importDoc.getItemValueString("_vendor_city"));
|
||||||
|
businesspartner.setItemValue("partner.vat", importDoc.getItemValueString("_vendor_vat_registration_id"));
|
||||||
businesspartner.setItemValue("partner.vat", importDoc.getItemValueString("_vendor_registration_id"));
|
|
||||||
|
|
||||||
// hat sich das Objekt verändert?
|
// hat sich das Objekt verändert?
|
||||||
if (!businesspartner.equals(oldBussinessPartnerItemColl)) {
|
if (!businesspartner.equals(oldBussinessPartnerItemColl)) {
|
||||||
|
|
|
||||||
115
office-alexander-logistics-app/src/test/resources/ksef/ksef.xml
Normal file
115
office-alexander-logistics-app/src/test/resources/ksef/ksef.xml
Normal file
|
|
@ -0,0 +1,115 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Faktura xmlns="http://crd.gov.pl/wzor/2025/06/25/13775/" xmlns:etd="http://crd.gov.pl/xml/schematy/dziedzinowe/mf/2022/01/05/eD/DefinicjeTypy/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<Naglowek>
|
||||||
|
<KodFormularza kodSystemowy="FA (3)" wersjaSchemy="1-0E">FA</KodFormularza>
|
||||||
|
<WariantFormularza>3</WariantFormularza>
|
||||||
|
<DataWytworzeniaFa>2025-11-19T16:43:15.545220735Z</DataWytworzeniaFa>
|
||||||
|
<SystemInfo>Imixs eInvoice</SystemInfo>
|
||||||
|
</Naglowek>
|
||||||
|
<!-- Seller (Your Polish Company - Pre-filled) -->
|
||||||
|
<Podmiot1>
|
||||||
|
<DaneIdentyfikacyjne>
|
||||||
|
<NIP>9552521552</NIP>
|
||||||
|
<Nazwa>Alexander Global Logistics</Nazwa>
|
||||||
|
</DaneIdentyfikacyjne>
|
||||||
|
<Adres>
|
||||||
|
<KodKraju>PL</KodKraju>
|
||||||
|
<AdresL1>Gdanska 36</AdresL1>
|
||||||
|
<AdresL2>70-660 Szczecin</AdresL2>
|
||||||
|
</Adres>
|
||||||
|
<DaneKontaktowe>
|
||||||
|
<Email>MBudas@alexander-logistics.com</Email>
|
||||||
|
</DaneKontaktowe>
|
||||||
|
</Podmiot1>
|
||||||
|
<!-- Buyer (Customer - Empty, to be filled) -->
|
||||||
|
<Podmiot2>
|
||||||
|
<DaneIdentyfikacyjne>
|
||||||
|
<!-- NIP falls eine PL Ust Vorliegt
|
||||||
|
ansonsten NrID - geht immer -->
|
||||||
|
<!-- <NIP></NIP> -->
|
||||||
|
<Nazwa>REGESTA Spolka Akcyjna</Nazwa> --> </DaneIdentyfikacyjne>
|
||||||
|
<Adres>
|
||||||
|
<KodKraju>PL</KodKraju>
|
||||||
|
<AdresL1>ul. Nowowiejska 52a</AdresL1>
|
||||||
|
<AdresL2>28-400 Pinczow</AdresL2>
|
||||||
|
</Adres>
|
||||||
|
<!---
|
||||||
|
Contact information from buyer can be left
|
||||||
|
<DaneKontaktowe>
|
||||||
|
<Email></Email>
|
||||||
|
<Telefon></Telefon>
|
||||||
|
</DaneKontaktowe>
|
||||||
|
-->
|
||||||
|
<NrKlienta>D15231</NrKlienta>
|
||||||
|
<JST>2</JST>
|
||||||
|
<!-- fixed -->
|
||||||
|
<GV>2</GV>
|
||||||
|
<!-- fixed -->
|
||||||
|
</Podmiot2>
|
||||||
|
<!-- Invoice Data -->
|
||||||
|
<Fa>
|
||||||
|
<KodWaluty>EUR</KodWaluty>
|
||||||
|
<P_1>2024-04-03</P_1>
|
||||||
|
<!-- Invoice Date -->
|
||||||
|
<P_2>216525</P_2>
|
||||||
|
<!-- Invoice Number -->
|
||||||
|
<P_6>2024-06-02</P_6>
|
||||||
|
<!-- Due Date -->
|
||||||
|
<!-- Line Items will be added here -->
|
||||||
|
<!-- Totals -->
|
||||||
|
<P_13_1>4128.00</P_13_1>
|
||||||
|
<!-- Total Net -->
|
||||||
|
<P_14_1>0.00</P_14_1>
|
||||||
|
<!-- Total VAT -->
|
||||||
|
<P_15>4128.00</P_15>
|
||||||
|
<!-- Total Gross -->
|
||||||
|
<FaWiersz>
|
||||||
|
<NrWierszaFa>1</NrWierszaFa>
|
||||||
|
<UU_ID>2b141c75-7867-4975-846a-a2c2683e1fc5</UU_ID>
|
||||||
|
<P_7>R IM-ZEL-2403-259</P_7>
|
||||||
|
<P_8A>szt.</P_8A>
|
||||||
|
<P_8B>1</P_8B>
|
||||||
|
<P_9A>4128.00</P_9A>
|
||||||
|
<P_11>4128.00</P_11>
|
||||||
|
<P_12>0</P_12>
|
||||||
|
</FaWiersz>
|
||||||
|
<Adnotacje>
|
||||||
|
<!-- 1 yes - 2 no -->
|
||||||
|
<P_16>2</P_16>
|
||||||
|
<!-- Keine Selbstfakturierung -->
|
||||||
|
<P_17>2</P_17>
|
||||||
|
<!-- Kein Reverse Charge -->
|
||||||
|
<P_18>2</P_18>
|
||||||
|
<!-- Kein Split Payment (Rechnung unter 15.000 PLN/EUR) -->
|
||||||
|
<P_18A>2</P_18A>
|
||||||
|
<!-- Keine Steuerbefreiung -->
|
||||||
|
<Zwolnienie>
|
||||||
|
<P_19N>1</P_19N>
|
||||||
|
</Zwolnienie>
|
||||||
|
<!-- Keine neuen Verkehrsmittel -->
|
||||||
|
<NoweSrodkiTransportu>
|
||||||
|
<P_22N>1</P_22N>
|
||||||
|
</NoweSrodkiTransportu>
|
||||||
|
<!-- Kein vereinfachtes Verfahren nach Art. 135 -->
|
||||||
|
<P_23>2</P_23>
|
||||||
|
<!-- Keine Margenregelung -->
|
||||||
|
<PMarzy>
|
||||||
|
<P_PMarzyN>1</P_PMarzyN>
|
||||||
|
</PMarzy>
|
||||||
|
</Adnotacje>
|
||||||
|
<!-- Normale Rechnung (VAT) -->
|
||||||
|
<RodzajFaktury>VAT | ??? </RodzajFaktury>
|
||||||
|
<!-- Invoice Poitions
|
||||||
|
<FaWiersz>
|
||||||
|
<NrWierszaFa>1</NrWierszaFa>
|
||||||
|
<UU_ID>f980444d-2cca-4fde-bf67-a08551f0dbd8</UU_ID>
|
||||||
|
<P_7>R IM-ZEL-2403-259</P_7>
|
||||||
|
<P_8A>szt.</P_8A>
|
||||||
|
<P_8B>1</P_8B>
|
||||||
|
<P_9A>4128.00</P_9A>
|
||||||
|
<P_11>4128.00</P_11>
|
||||||
|
<P_12>23</P_12>
|
||||||
|
</FaWiersz>
|
||||||
|
-->
|
||||||
|
</Fa>
|
||||||
|
</Faktura>
|
||||||
|
|
@ -0,0 +1,117 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Faktura xmlns="http://crd.gov.pl/wzor/2025/06/25/13775/"
|
||||||
|
xmlns:etd="http://crd.gov.pl/xml/schematy/dziedzinowe/mf/2022/01/05/eD/DefinicjeTypy/"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<Naglowek>
|
||||||
|
<KodFormularza kodSystemowy="FA (3)" wersjaSchemy="1-0E">FA</KodFormularza>
|
||||||
|
<WariantFormularza>3</WariantFormularza>
|
||||||
|
<DataWytworzeniaFa>2025-11-19T14:38:18.583040682Z</DataWytworzeniaFa>
|
||||||
|
<SystemInfo>Imixs eInvoice</SystemInfo>
|
||||||
|
</Naglowek>
|
||||||
|
<!-- Seller (Your Polish Company - Pre-filled) -->
|
||||||
|
<Podmiot1>
|
||||||
|
<DaneIdentyfikacyjne>
|
||||||
|
<NIP>9552521552</NIP>
|
||||||
|
<Nazwa>Alexander Global Logistics</Nazwa>
|
||||||
|
</DaneIdentyfikacyjne>
|
||||||
|
<Adres>
|
||||||
|
<KodKraju>PL</KodKraju>
|
||||||
|
<AdresL1>Gdanska 36</AdresL1>
|
||||||
|
<AdresL2>70-660 Szczecin</AdresL2>
|
||||||
|
</Adres>
|
||||||
|
<DaneKontaktowe>
|
||||||
|
<Email>info@alexander-logistics.com</Email>
|
||||||
|
|
||||||
|
</DaneKontaktowe>
|
||||||
|
</Podmiot1>
|
||||||
|
<!-- Buyer (Customer - Empty, to be filled) -->
|
||||||
|
<Podmiot2>
|
||||||
|
<DaneIdentyfikacyjne>
|
||||||
|
<NrID>ACG100423M76</NrID>
|
||||||
|
<Nazwa>REGESTA Spolka Akcyjna</Nazwa>
|
||||||
|
</DaneIdentyfikacyjne>
|
||||||
|
|
||||||
|
<Adres>
|
||||||
|
<KodKraju>PL</KodKraju>
|
||||||
|
<AdresL1>ul. Nowowiejska 52a</AdresL1>
|
||||||
|
<AdresL2>28-400 Pinczow</AdresL2>
|
||||||
|
</Adres>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<DaneKontaktowe>
|
||||||
|
<Email />
|
||||||
|
<Telefon />
|
||||||
|
</DaneKontaktowe>
|
||||||
|
-->
|
||||||
|
<NrKlienta>K77545</NrKlienta>
|
||||||
|
<JST>2</JST>
|
||||||
|
<GV>2</GV>
|
||||||
|
</Podmiot2>
|
||||||
|
<!-- Invoice Data -->
|
||||||
|
<Fa>
|
||||||
|
<KodWaluty>PLN</KodWaluty>
|
||||||
|
<P_1>2024-04-03</P_1>
|
||||||
|
<!-- Invoice Date -->
|
||||||
|
<P_2>216525</P_2>
|
||||||
|
<!-- Invoice Number -->
|
||||||
|
<P_6>2024-06-02</P_6>
|
||||||
|
<!-- Due Date (NEW position in FA(3)!) -->
|
||||||
|
<!-- Line Items will be added here -->
|
||||||
|
|
||||||
|
<!-- Totals -->
|
||||||
|
<P_13_1>4128.00</P_13_1> <!-- Total Net -->
|
||||||
|
<P_14_1>949.44</P_14_1> <!-- Total VAT (23% von 4128) - ÄNDERN: von 0.00 -->
|
||||||
|
<P_15>5077.44</P_15> <!-- Total Gross (4128 + 949.44) - ÄNDERN: von 4128.00 -->
|
||||||
|
|
||||||
|
|
||||||
|
<Adnotacje>
|
||||||
|
<!-- Keine Kassamethode -->
|
||||||
|
<P_16>2</P_16>
|
||||||
|
|
||||||
|
<!-- Keine Selbstfakturierung -->
|
||||||
|
<P_17>2</P_17>
|
||||||
|
|
||||||
|
<!-- Kein Reverse Charge -->
|
||||||
|
<P_18>2</P_18>
|
||||||
|
|
||||||
|
<!-- Kein Split Payment (Rechnung unter 15.000 PLN/EUR) -->
|
||||||
|
<P_18A>2</P_18A>
|
||||||
|
|
||||||
|
<!-- Keine Steuerbefreiung -->
|
||||||
|
<Zwolnienie>
|
||||||
|
<P_19N>1</P_19N>
|
||||||
|
</Zwolnienie>
|
||||||
|
|
||||||
|
<!-- Keine neuen Verkehrsmittel -->
|
||||||
|
<NoweSrodkiTransportu>
|
||||||
|
<P_22N>1</P_22N>
|
||||||
|
</NoweSrodkiTransportu>
|
||||||
|
|
||||||
|
<!-- Kein vereinfachtes Verfahren nach Art. 135 -->
|
||||||
|
<P_23>2</P_23>
|
||||||
|
|
||||||
|
<!-- Keine Margenregelung -->
|
||||||
|
<PMarzy>
|
||||||
|
<P_PMarzyN>1</P_PMarzyN>
|
||||||
|
</PMarzy>
|
||||||
|
</Adnotacje>
|
||||||
|
|
||||||
|
<!-- Normale Rechnung (VAT) -->
|
||||||
|
<RodzajFaktury>VAT</RodzajFaktury>
|
||||||
|
|
||||||
|
|
||||||
|
<FaWiersz>
|
||||||
|
<NrWierszaFa>1</NrWierszaFa>
|
||||||
|
<UU_ID>f980444d-2cca-4fde-bf67-a08551f0dbd8</UU_ID>
|
||||||
|
<P_7>R IM-ZEL-2403-259</P_7>
|
||||||
|
<P_8A>szt.</P_8A>
|
||||||
|
<P_8B>1</P_8B>
|
||||||
|
<P_9A>4128.00</P_9A>
|
||||||
|
<P_11>4128.00</P_11>
|
||||||
|
<P_12>23</P_12> <!-- ÄNDERN: von "0" auf "23" -->
|
||||||
|
|
||||||
|
</FaWiersz>
|
||||||
|
|
||||||
|
</Fa>
|
||||||
|
</Faktura>
|
||||||
|
|
@ -23,34 +23,41 @@
|
||||||
<AdresL2>70-660 Szczecin</AdresL2>
|
<AdresL2>70-660 Szczecin</AdresL2>
|
||||||
</Adres>
|
</Adres>
|
||||||
<DaneKontaktowe>
|
<DaneKontaktowe>
|
||||||
<Email>info@alexander-logistics.com</Email>
|
<Email>MBudas@alexander-logistics.com</Email>
|
||||||
<Telefon></Telefon>
|
|
||||||
</DaneKontaktowe>
|
</DaneKontaktowe>
|
||||||
</Podmiot1>
|
</Podmiot1>
|
||||||
|
|
||||||
<!-- Buyer (Customer - Empty, to be filled) -->
|
<!-- Buyer (Customer - Empty, to be filled) -->
|
||||||
<Podmiot2>
|
<Podmiot2>
|
||||||
<DaneIdentyfikacyjne>
|
<DaneIdentyfikacyjne>
|
||||||
<NIP></NIP>
|
<!-- NIP falls eine PL Ust Vorliegt
|
||||||
<Nazwa></Nazwa>
|
ansonsten NrID - geht immer -->
|
||||||
</DaneIdentyfikacyjne>
|
<!-- <NIP></NIP> -->
|
||||||
|
<Nazwa>#Customer Name#</Nazwa> --> </DaneIdentyfikacyjne>
|
||||||
<Adres>
|
<Adres>
|
||||||
<KodKraju></KodKraju>
|
<KodKraju></KodKraju>
|
||||||
<AdresL1></AdresL1>
|
<AdresL1></AdresL1>
|
||||||
<AdresL2></AdresL2>
|
<AdresL2></AdresL2>
|
||||||
</Adres>
|
</Adres>
|
||||||
|
|
||||||
|
<!---
|
||||||
|
Contact information from buyer can be left
|
||||||
<DaneKontaktowe>
|
<DaneKontaktowe>
|
||||||
<Email></Email>
|
<Email></Email>
|
||||||
<Telefon></Telefon>
|
<Telefon></Telefon>
|
||||||
</DaneKontaktowe>
|
</DaneKontaktowe>
|
||||||
|
-->
|
||||||
|
<NrKlienta>#CDTR-NUMBER#</NrKlienta>
|
||||||
|
<JST>2</JST> <!-- fixed -->
|
||||||
|
<GV>2</GV> <!-- fixed -->
|
||||||
</Podmiot2>
|
</Podmiot2>
|
||||||
|
|
||||||
<!-- Invoice Data -->
|
<!-- Invoice Data -->
|
||||||
<Fa>
|
<Fa>
|
||||||
<KodWaluty>PLN</KodWaluty>
|
<KodWaluty>#CURRENCY#</KodWaluty>
|
||||||
<P_1></P_1> <!-- Invoice Date -->
|
<P_1></P_1> <!-- Invoice Date -->
|
||||||
<P_2></P_2> <!-- Invoice Number -->
|
<P_2></P_2> <!-- Invoice Number -->
|
||||||
<P_6></P_6> <!-- Due Date (NEW position in FA(3)!) -->
|
<P_6></P_6> <!-- Due Date -->
|
||||||
|
|
||||||
|
|
||||||
<!-- Line Items will be added here -->
|
<!-- Line Items will be added here -->
|
||||||
|
|
@ -60,8 +67,54 @@
|
||||||
<P_14_1>0.00</P_14_1> <!-- Total VAT -->
|
<P_14_1>0.00</P_14_1> <!-- Total VAT -->
|
||||||
<P_15>0.00</P_15> <!-- Total Gross -->
|
<P_15>0.00</P_15> <!-- Total Gross -->
|
||||||
|
|
||||||
<RodzajFaktury>VAT</RodzajFaktury>
|
|
||||||
|
|
||||||
|
<Adnotacje>
|
||||||
|
<!-- 1 yes - 2 no -->
|
||||||
|
<P_16>2</P_16>
|
||||||
|
|
||||||
|
<!-- Keine Selbstfakturierung -->
|
||||||
|
<P_17>2</P_17>
|
||||||
|
|
||||||
|
<!-- Kein Reverse Charge -->
|
||||||
|
<P_18>2</P_18>
|
||||||
|
|
||||||
|
<!-- Kein Split Payment (Rechnung unter 15.000 PLN/EUR) -->
|
||||||
|
<P_18A>2</P_18A>
|
||||||
|
|
||||||
|
<!-- Keine Steuerbefreiung -->
|
||||||
|
<Zwolnienie>
|
||||||
|
<P_19N>1</P_19N>
|
||||||
|
</Zwolnienie>
|
||||||
|
|
||||||
|
<!-- Keine neuen Verkehrsmittel -->
|
||||||
|
<NoweSrodkiTransportu>
|
||||||
|
<P_22N>1</P_22N>
|
||||||
|
</NoweSrodkiTransportu>
|
||||||
|
|
||||||
|
<!-- Kein vereinfachtes Verfahren nach Art. 135 -->
|
||||||
|
<P_23>2</P_23>
|
||||||
|
|
||||||
|
<!-- Keine Margenregelung -->
|
||||||
|
<PMarzy>
|
||||||
|
<P_PMarzyN>1</P_PMarzyN>
|
||||||
|
</PMarzy>
|
||||||
|
</Adnotacje>
|
||||||
|
<!-- Normale Rechnung (VAT) -->
|
||||||
|
<RodzajFaktury>VAT | ??? </RodzajFaktury>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Invoice Poitions
|
||||||
|
<FaWiersz>
|
||||||
|
<NrWierszaFa>1</NrWierszaFa>
|
||||||
|
<UU_ID>f980444d-2cca-4fde-bf67-a08551f0dbd8</UU_ID>
|
||||||
|
<P_7>R IM-ZEL-2403-259</P_7>
|
||||||
|
<P_8A>szt.</P_8A>
|
||||||
|
<P_8B>1</P_8B>
|
||||||
|
<P_9A>4128.00</P_9A>
|
||||||
|
<P_11>4128.00</P_11>
|
||||||
|
<P_12>23</P_12>
|
||||||
|
</FaWiersz>
|
||||||
|
-->
|
||||||
|
|
||||||
</Fa>
|
</Fa>
|
||||||
</Faktura>
|
</Faktura>
|
||||||
|
|
@ -107,7 +107,6 @@ th { font-weight: bold;}
|
||||||
<bpmn2:flowNodeRef>task_rhD89g</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>task_rhD89g</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_chRsuA</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_chRsuA</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_nQBQjw</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_nQBQjw</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_0YONsg</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>event_NIn1DQ</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_NIn1DQ</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_IkxO0Q</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_IkxO0Q</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_o1nouw</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_o1nouw</bpmn2:flowNodeRef>
|
||||||
|
|
@ -123,17 +122,12 @@ th { font-weight: bold;}
|
||||||
<bpmn2:flowNodeRef>event_qIhyWA</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_qIhyWA</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>gateway_utXBiw</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>gateway_utXBiw</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_OEuWOw</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_OEuWOw</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>task_UCh9Ww</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>event_rnULsg</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>event_3FDnsA</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>gateway_S4b22A</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>gateway_S4b22A</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>task_t4TgPg</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>task_t4TgPg</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_SAU2eg</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>event_SAU2eg</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>task_dfXKGQ</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>event_ouKIWA</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>event_NyrA6g</bpmn2:flowNodeRef>
|
|
||||||
<bpmn2:flowNodeRef>gateway_H0SvJw</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>gateway_H0SvJw</bpmn2:flowNodeRef>
|
||||||
<bpmn2:flowNodeRef>event_KfD0Gg</bpmn2:flowNodeRef>
|
<bpmn2:flowNodeRef>task_awoe6g</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>event_UOQyTg</bpmn2:flowNodeRef>
|
||||||
</bpmn2:lane>
|
</bpmn2:lane>
|
||||||
<bpmn2:lane id="Lane_6" name="Buchhaltung">
|
<bpmn2:lane id="Lane_6" name="Buchhaltung">
|
||||||
<bpmn2:documentation id="documentation_N3gEbw"/>
|
<bpmn2:documentation id="documentation_N3gEbw"/>
|
||||||
|
|
@ -1418,6 +1412,7 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<bpmn2:incoming>sequenceFlow_4IITzA</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_4IITzA</bpmn2:incoming>
|
||||||
<bpmn2:incoming>sequenceFlow_sO35Dg</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_sO35Dg</bpmn2:incoming>
|
||||||
<bpmn2:incoming>sequenceFlow_jpNRMg</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_jpNRMg</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>sequenceFlow_ui7tJg</bpmn2:incoming>
|
||||||
<bpmn2:outgoing>sequenceFlow_2BSFNw</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_2BSFNw</bpmn2:outgoing>
|
||||||
</bpmn2:task>
|
</bpmn2:task>
|
||||||
<bpmn2:intermediateCatchEvent id="event_sGMk3g" imixs:activityid="200" name="[create E-Invoice]">
|
<bpmn2:intermediateCatchEvent id="event_sGMk3g" imixs:activityid="200" name="[create E-Invoice]">
|
||||||
|
|
@ -1615,7 +1610,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
</bpmn2:extensionElements>
|
</bpmn2:extensionElements>
|
||||||
<bpmn2:documentation id="documentation_mlTo0w"/>
|
<bpmn2:documentation id="documentation_mlTo0w"/>
|
||||||
<bpmn2:incoming>sequenceFlow_2BSFNw</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_2BSFNw</bpmn2:incoming>
|
||||||
<bpmn2:incoming>sequenceFlow_JNYd0A</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_F90iWQ</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_F90iWQ</bpmn2:outgoing>
|
||||||
<bpmn2:signalEventDefinition id="signalEventDefinition_53p2EQ" signalRef="signal_10"/>
|
<bpmn2:signalEventDefinition id="signalEventDefinition_53p2EQ" signalRef="signal_10"/>
|
||||||
</bpmn2:intermediateCatchEvent>
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
|
@ -1630,17 +1624,9 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<bpmn2:outgoing>sequenceFlow_0A0wqQ</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_0A0wqQ</bpmn2:outgoing>
|
||||||
<bpmn2:timerEventDefinition id="timerEventDefinition_XVbEQw"/>
|
<bpmn2:timerEventDefinition id="timerEventDefinition_XVbEQw"/>
|
||||||
</bpmn2:boundaryEvent>
|
</bpmn2:boundaryEvent>
|
||||||
<bpmn2:boundaryEvent attachedToRef="task_nKKaIg" id="event_0YONsg" name="">
|
|
||||||
<bpmn2:documentation id="documentation_08I0Ng"/>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_JNYd0A</bpmn2:outgoing>
|
|
||||||
<bpmn2:timerEventDefinition id="timerEventDefinition_pnbBAA"/>
|
|
||||||
</bpmn2:boundaryEvent>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_0A0wqQ" sourceRef="event_nQBQjw" targetRef="event_sGMk3g">
|
<bpmn2:sequenceFlow id="sequenceFlow_0A0wqQ" sourceRef="event_nQBQjw" targetRef="event_sGMk3g">
|
||||||
<bpmn2:documentation id="documentation_qLFzIw"/>
|
<bpmn2:documentation id="documentation_qLFzIw"/>
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_JNYd0A" sourceRef="event_0YONsg" targetRef="event_chRsuA">
|
|
||||||
<bpmn2:documentation id="documentation_MoBeXg"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:intermediateCatchEvent id="event_NIn1DQ" imixs:activityid="10" name="Send">
|
<bpmn2:intermediateCatchEvent id="event_NIn1DQ" imixs:activityid="10" name="Send">
|
||||||
<bpmn2:extensionElements>
|
<bpmn2:extensionElements>
|
||||||
<imixs:item name="keylogtimeformat" type="xs:string">
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
|
@ -1929,15 +1915,12 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<bpmn2:outgoing>sequenceFlow_sO35Dg</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_sO35Dg</bpmn2:outgoing>
|
||||||
<bpmn2:outgoing>sequenceFlow_79GZ8w</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_79GZ8w</bpmn2:outgoing>
|
||||||
</bpmn2:exclusiveGateway>
|
</bpmn2:exclusiveGateway>
|
||||||
<bpmn2:exclusiveGateway default="sequenceFlow_eadkWg" gatewayDirection="Diverging" id="gateway_k00hrA" name="">
|
<bpmn2:exclusiveGateway default="sequenceFlow_ui7tJg" gatewayDirection="Diverging" id="gateway_k00hrA" name="">
|
||||||
<bpmn2:documentation id="documentation_OKGr3g"/>
|
<bpmn2:documentation id="documentation_OKGr3g"/>
|
||||||
<bpmn2:incoming>sequenceFlow_F90iWQ</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_F90iWQ</bpmn2:incoming>
|
||||||
<bpmn2:outgoing>sequenceFlow_eadkWg</bpmn2:outgoing>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_DCA0Tw</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_DCA0Tw</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_ui7tJg</bpmn2:outgoing>
|
||||||
</bpmn2:exclusiveGateway>
|
</bpmn2:exclusiveGateway>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_eadkWg" sourceRef="gateway_k00hrA" targetRef="task_UCh9Ww">
|
|
||||||
<bpmn2:documentation id="documentation_XVPJAQ"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_sO35Dg" sourceRef="gateway_DjDNAA" targetRef="task_nKKaIg">
|
<bpmn2:sequenceFlow id="sequenceFlow_sO35Dg" sourceRef="gateway_DjDNAA" targetRef="task_nKKaIg">
|
||||||
<bpmn2:documentation id="documentation_dmcXkQ"/>
|
<bpmn2:documentation id="documentation_dmcXkQ"/>
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
|
|
@ -2209,144 +2192,12 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_qs1rug" sourceRef="task_rhD89g" targetRef="event_OEuWOw">
|
<bpmn2:sequenceFlow id="sequenceFlow_qs1rug" sourceRef="task_rhD89g" targetRef="event_OEuWOw">
|
||||||
<bpmn2:documentation id="documentation_4yIz0Q"/>
|
<bpmn2:documentation id="documentation_4yIz0Q"/>
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
<bpmn2:task id="task_UCh9Ww" imixs:processid="4200" name="Export KSeF XML">
|
<bpmn2:exclusiveGateway default="sequenceFlow_Tp8LKg" gatewayDirection="Diverging" id="gateway_S4b22A" name="">
|
||||||
<bpmn2:extensionElements>
|
|
||||||
<imixs:item name="txteditorid" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[alexander/form_basic]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtworkflowabstract" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[<itemvalue>txtlastcomment</itemvalue>]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtname" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[Rechnung erhalten]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtimageurl" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[typcn-upload-outline|typcn-weather-sunny,icon-sub-ne]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtworkflowsummary" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[<itemvalue>_img</itemvalue><itemvalue>invoice.number</itemvalue> <itemvalue>dbtr.number</itemvalue> <itemvalue>dbtr.name</itemvalue> (<itemvalue>invoice.currency</itemvalue> <itemvalue format="#,###,##0.00" locale="de_DE">invoice.total</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:value><![CDATA[process.manager]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[process.team]]></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:value><![CDATA[{space:?:member}]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
</bpmn2:extensionElements>
|
|
||||||
<bpmn2:documentation id="documentation_EjzC5w"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
|
||||||
<bpmn2:incoming>sequenceFlow_sO35Dg</bpmn2:incoming>
|
|
||||||
<bpmn2:incoming>sequenceFlow_eadkWg</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_jG1Bdw</bpmn2:outgoing>
|
|
||||||
</bpmn2:task>
|
|
||||||
<bpmn2:intermediateCatchEvent id="event_rnULsg" imixs:activityid="200" name="[Export KSeF]">
|
|
||||||
<bpmn2:extensionElements>
|
|
||||||
<imixs:item name="keylogtimeformat" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[2]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyarchive" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtmailsubject" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyaccessmode" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyscheduledactivity" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="rtfmailbody" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyversion" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyaddwritefields" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[$creator]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[$editor]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[process.manager]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[process.team]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="numnextactivityid" type="xs:int">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyfollowup" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[2]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keypublicresult" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[1]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keylogdateformat" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[2]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyownershipfields" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[$editor]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[$creator]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="numnextid" type="xs:int">
|
|
||||||
<imixs:value><![CDATA[5000]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtnextprocesstree" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtactivityresult" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[<ksef name="EXPORT">
|
|
||||||
<debug>true</debug>
|
|
||||||
</ksef> ]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtname" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[Speichern]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyownershipmode" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="rtfresultlog" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyupdateacl" type="xs:boolean">
|
|
||||||
<imixs:value>false</imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
</bpmn2:extensionElements>
|
|
||||||
<bpmn2:documentation id="documentation_AENnnA"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
|
|
||||||
<bpmn2:incoming>sequenceFlow_JNYd0A</bpmn2:incoming>
|
|
||||||
<bpmn2:incoming>sequenceFlow_jG1Bdw</bpmn2:incoming>
|
|
||||||
<bpmn2:incoming>sequenceFlow_Rdv4Yg</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_o0J3Sg</bpmn2:outgoing>
|
|
||||||
<bpmn2:signalEventDefinition id="signalEventDefinition_jw00Gw" signalRef="signal_11"/>
|
|
||||||
</bpmn2:intermediateCatchEvent>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_jG1Bdw" sourceRef="task_UCh9Ww" targetRef="event_rnULsg">
|
|
||||||
<bpmn2:documentation id="documentation_a9gdzQ"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:boundaryEvent attachedToRef="task_UCh9Ww" id="event_3FDnsA" name="">
|
|
||||||
<bpmn2:documentation id="documentation_dMACcQ"/>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_Rdv4Yg</bpmn2:outgoing>
|
|
||||||
<bpmn2:timerEventDefinition id="timerEventDefinition_7mumJw"/>
|
|
||||||
</bpmn2:boundaryEvent>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_Rdv4Yg" sourceRef="event_3FDnsA" targetRef="event_rnULsg">
|
|
||||||
<bpmn2:documentation id="documentation_04WGrA"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_o0J3Sg" sourceRef="event_rnULsg" targetRef="gateway_S4b22A">
|
|
||||||
<bpmn2:documentation id="documentation_xXLCbA"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:exclusiveGateway default="sequenceFlow_83w7TA" gatewayDirection="Diverging" id="gateway_S4b22A" name="">
|
|
||||||
<bpmn2:documentation id="documentation_k0Mbug"/>
|
<bpmn2:documentation id="documentation_k0Mbug"/>
|
||||||
<bpmn2:outgoing>sequenceFlow_DCA0Tw</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_DCA0Tw</bpmn2:outgoing>
|
||||||
<bpmn2:incoming>sequenceFlow_o0J3Sg</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_83w7TA</bpmn2:outgoing>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_2th1MQ</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_2th1MQ</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_Tp8LKg</bpmn2:outgoing>
|
||||||
</bpmn2:exclusiveGateway>
|
</bpmn2:exclusiveGateway>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_83w7TA" sourceRef="gateway_S4b22A" targetRef="task_dfXKGQ">
|
|
||||||
<bpmn2:documentation id="documentation_QxPh3g"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:task id="task_t4TgPg" imixs:processid="4910" name="KSeF API Error">
|
<bpmn2:task id="task_t4TgPg" imixs:processid="4910" name="KSeF API Error">
|
||||||
<bpmn2:extensionElements>
|
<bpmn2:extensionElements>
|
||||||
<imixs:item name="txteditorid" type="xs:string">
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
|
@ -2463,7 +2314,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
</bpmn2:extensionElements>
|
</bpmn2:extensionElements>
|
||||||
<bpmn2:documentation id="documentation_8uaUeg"/>
|
<bpmn2:documentation id="documentation_8uaUeg"/>
|
||||||
<bpmn2:incoming>sequenceFlow_Gox0Rw</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_Gox0Rw</bpmn2:incoming>
|
||||||
<bpmn2:incoming>sequenceFlow_AIquGw</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_mtiCpg</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_mtiCpg</bpmn2:outgoing>
|
||||||
<bpmn2:errorEventDefinition id="errorEventDefinition_B3kzNw"/>
|
<bpmn2:errorEventDefinition id="errorEventDefinition_B3kzNw"/>
|
||||||
<bpmn2:incoming>sequenceFlow_79GZ8w</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_79GZ8w</bpmn2:incoming>
|
||||||
|
|
@ -2471,7 +2321,18 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_Gox0Rw" sourceRef="gateway_utXBiw" targetRef="event_SAU2eg">
|
<bpmn2:sequenceFlow id="sequenceFlow_Gox0Rw" sourceRef="gateway_utXBiw" targetRef="event_SAU2eg">
|
||||||
<bpmn2:documentation id="documentation_jo1zSA"/>
|
<bpmn2:documentation id="documentation_jo1zSA"/>
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
<bpmn2:task id="task_dfXKGQ" imixs:processid="4300" name="KSeF Status">
|
<bpmn2:exclusiveGateway default="sequenceFlow_peFLew" gatewayDirection="Diverging" id="gateway_H0SvJw" name="">
|
||||||
|
<bpmn2:documentation id="documentation_zadrEQ"/>
|
||||||
|
<bpmn2:incoming>sequenceFlow_Tp8LKg</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_83w7TA</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_5OVgOQ</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>sequenceFlow_peFLew</bpmn2:outgoing>
|
||||||
|
</bpmn2:exclusiveGateway>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_5OVgOQ" name="=200" sourceRef="gateway_H0SvJw" targetRef="task_rhD89g">
|
||||||
|
<bpmn2:documentation id="documentation_PVJPcQ"/>
|
||||||
|
<bpmn2:conditionExpression id="formalExpression_WkDtIg" xsi:type="bpmn2:tFormalExpression"><![CDATA[200==workitem.getItemValueInteger('ksef.status.code'); ]]></bpmn2:conditionExpression>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:task id="task_awoe6g" imixs:processid="4500" name="KSeF Invoice Error ">
|
||||||
<bpmn2:extensionElements>
|
<bpmn2:extensionElements>
|
||||||
<imixs:item name="txteditorid" type="xs:string">
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
<imixs:value><![CDATA[alexander/form_basic]]></imixs:value>
|
<imixs:value><![CDATA[alexander/form_basic]]></imixs:value>
|
||||||
|
|
@ -2504,126 +2365,28 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<imixs:value><![CDATA[{space:?:member}]]></imixs:value>
|
<imixs:value><![CDATA[{space:?:member}]]></imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
</bpmn2:extensionElements>
|
</bpmn2:extensionElements>
|
||||||
<bpmn2:documentation id="documentation_slJ85w"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
<bpmn2:documentation id="documentation_osMBNQ"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
<bpmn2:incoming>sequenceFlow_83w7TA</bpmn2:incoming>
|
<bpmn2:incoming>sequenceFlow_5OVgOQ</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>sequenceFlow_peFLew</bpmn2:incoming>
|
||||||
<bpmn2:outgoing>sequenceFlow_qs1rug</bpmn2:outgoing>
|
<bpmn2:outgoing>sequenceFlow_qs1rug</bpmn2:outgoing>
|
||||||
<bpmn2:incoming>sequenceFlow_83w7TA</bpmn2:incoming>
|
<bpmn2:outgoing>sequenceFlow_5p1nHQ</bpmn2:outgoing>
|
||||||
<bpmn2:outgoing>sequenceFlow_zl0p4Q</bpmn2:outgoing>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_rE5y8g</bpmn2:outgoing>
|
|
||||||
</bpmn2:task>
|
</bpmn2:task>
|
||||||
<bpmn2:boundaryEvent attachedToRef="task_dfXKGQ" id="event_ouKIWA" name="">
|
<bpmn2:sequenceFlow id="sequenceFlow_peFLew" name=">=400" sourceRef="gateway_H0SvJw" targetRef="task_awoe6g">
|
||||||
<bpmn2:documentation id="documentation_GN1sVQ"/>
|
<bpmn2:documentation id="documentation_e4h3eA"/>
|
||||||
<bpmn2:outgoing>sequenceFlow_VgfIJA</bpmn2:outgoing>
|
|
||||||
<bpmn2:timerEventDefinition id="timerEventDefinition_tnhjnA">
|
|
||||||
<bpmn2:timeDate id="FormalExpression_0" xsi:type="bpmn2:tFormalExpression"/>
|
|
||||||
</bpmn2:timerEventDefinition>
|
|
||||||
</bpmn2:boundaryEvent>
|
|
||||||
<bpmn2:intermediateCatchEvent id="event_NyrA6g" imixs:activityid="200" name="[Export KSeF]">
|
|
||||||
<bpmn2:extensionElements>
|
|
||||||
<imixs:item name="keylogtimeformat" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[2]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyarchive" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtmailsubject" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyaccessmode" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyscheduledactivity" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="rtfmailbody" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyversion" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyaddwritefields" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[$creator]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[$editor]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[process.manager]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[process.team]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="numnextactivityid" type="xs:int">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyfollowup" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[2]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keypublicresult" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[1]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keylogdateformat" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[2]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyownershipfields" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[$editor]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[$creator]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="numnextid" type="xs:int">
|
|
||||||
<imixs:value><![CDATA[5000]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtnextprocesstree" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtactivityresult" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[<ksef name="STATUS">
|
|
||||||
<debug>true</debug>
|
|
||||||
</ksef> ]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="txtname" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[Speichern]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyownershipmode" type="xs:string">
|
|
||||||
<imixs:value><![CDATA[0]]></imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="rtfresultlog" type="xs:string">
|
|
||||||
<imixs:value/>
|
|
||||||
</imixs:item>
|
|
||||||
<imixs:item name="keyupdateacl" type="xs:boolean">
|
|
||||||
<imixs:value>false</imixs:value>
|
|
||||||
</imixs:item>
|
|
||||||
</bpmn2:extensionElements>
|
|
||||||
<bpmn2:documentation id="documentation_mlST9A"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
|
|
||||||
<bpmn2:incoming>sequenceFlow_jG1Bdw</bpmn2:incoming>
|
|
||||||
<bpmn2:incoming>sequenceFlow_zl0p4Q</bpmn2:incoming>
|
|
||||||
<bpmn2:incoming>sequenceFlow_VgfIJA</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_Bms0CA</bpmn2:outgoing>
|
|
||||||
<bpmn2:signalEventDefinition id="signalEventDefinition_7Gkd5Q" signalRef="signal_11"/>
|
|
||||||
</bpmn2:intermediateCatchEvent>
|
|
||||||
<bpmn2:exclusiveGateway default="sequenceFlow_5OVgOQ" gatewayDirection="Diverging" id="gateway_H0SvJw" name="">
|
|
||||||
<bpmn2:documentation id="documentation_zadrEQ"/>
|
|
||||||
<bpmn2:incoming>sequenceFlow_Bms0CA</bpmn2:incoming>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_83w7TA</bpmn2:outgoing>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_AIquGw</bpmn2:outgoing>
|
|
||||||
<bpmn2:outgoing>sequenceFlow_5OVgOQ</bpmn2:outgoing>
|
|
||||||
</bpmn2:exclusiveGateway>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_zl0p4Q" sourceRef="task_dfXKGQ" targetRef="event_NyrA6g">
|
|
||||||
<bpmn2:documentation id="documentation_JFHUVg"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_Bms0CA" sourceRef="event_NyrA6g" targetRef="gateway_H0SvJw">
|
<bpmn2:intermediateThrowEvent id="event_UOQyTg" name="KSEF">
|
||||||
<bpmn2:documentation id="documentation_vrt6og"/>
|
<bpmn2:incoming>sequenceFlow_5p1nHQ</bpmn2:incoming>
|
||||||
</bpmn2:sequenceFlow>
|
<bpmn2:linkEventDefinition id="linkEventDefinition_cBaydw" name="Link Event Definition 5"/>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_AIquGw" sourceRef="gateway_H0SvJw" targetRef="event_SAU2eg">
|
<bpmn2:documentation id="documentation_X0Thyg"/>
|
||||||
<bpmn2:documentation id="documentation_BJhlqw"/>
|
|
||||||
<bpmn2:conditionExpression id="formalExpression_7Jh2sg" xsi:type="bpmn2:tFormalExpression"><![CDATA[''!=workitem.getItemValueString('adapter.error_code'); ]]></bpmn2:conditionExpression>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_5OVgOQ" name="=200" sourceRef="gateway_H0SvJw" targetRef="task_rhD89g">
|
|
||||||
<bpmn2:documentation id="documentation_PVJPcQ"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_VgfIJA" name="5000ms" sourceRef="event_ouKIWA" targetRef="event_NyrA6g">
|
|
||||||
<bpmn2:documentation id="documentation_qqONnA"/>
|
|
||||||
</bpmn2:sequenceFlow>
|
|
||||||
<bpmn2:intermediateThrowEvent id="event_KfD0Gg" name="KSEF">
|
|
||||||
<bpmn2:incoming>sequenceFlow_rE5y8g</bpmn2:incoming>
|
|
||||||
<bpmn2:linkEventDefinition id="linkEventDefinition_sVdmwg" name="Link Event Definition 5"/>
|
|
||||||
<bpmn2:documentation id="documentation_IFtesw"/>
|
|
||||||
</bpmn2:intermediateThrowEvent>
|
</bpmn2:intermediateThrowEvent>
|
||||||
<bpmn2:sequenceFlow id="sequenceFlow_rE5y8g" sourceRef="task_dfXKGQ" targetRef="event_KfD0Gg">
|
<bpmn2:sequenceFlow id="sequenceFlow_5p1nHQ" sourceRef="task_awoe6g" targetRef="event_UOQyTg">
|
||||||
<bpmn2:documentation id="documentation_KKycVw"/>
|
<bpmn2:documentation id="documentation_CSXibA"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_Tp8LKg" sourceRef="gateway_S4b22A" targetRef="gateway_H0SvJw">
|
||||||
|
<bpmn2:documentation id="documentation_u0p17g"/>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="sequenceFlow_ui7tJg" sourceRef="gateway_k00hrA" targetRef="task_nKKaIg">
|
||||||
|
<bpmn2:documentation id="documentation_guvIKA"/>
|
||||||
</bpmn2:sequenceFlow>
|
</bpmn2:sequenceFlow>
|
||||||
</bpmn2:process>
|
</bpmn2:process>
|
||||||
<bpmn2:process id="process_2" name="Default Process" processType="Public">
|
<bpmn2:process id="process_2" name="Default Process" processType="Public">
|
||||||
|
|
@ -2873,12 +2636,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<dc:Bounds height="20.0" width="100.0" x="515.0" y="456.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="515.0" y="456.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="event_0YONsg" id="BPMNShape_PuiuLA">
|
|
||||||
<dc:Bounds height="36.0" width="36.0" x="907.0" y="417.0"/>
|
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_wi6IGg">
|
|
||||||
<dc:Bounds height="20.0" width="100.0" x="875.0" y="456.0"/>
|
|
||||||
</bpmndi:BPMNLabel>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="event_NIn1DQ" id="BPMNShape_rAwIzQ">
|
<bpmndi:BPMNShape bpmnElement="event_NIn1DQ" id="BPMNShape_rAwIzQ">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="2377.0" y="447.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="2377.0" y="447.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_bdYofw">
|
<bpmndi:BPMNLabel id="BPMNLabel_bdYofw">
|
||||||
|
|
@ -2972,21 +2729,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<dc:Bounds height="20.0" width="100.0" x="2185.0" y="586.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="2185.0" y="586.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="task_UCh9Ww" id="BPMNShape_JgN8Dg">
|
|
||||||
<dc:Bounds height="50.0" width="110.0" x="1250.0" y="440.0"/>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="event_rnULsg" id="BPMNShape_j6mXew">
|
|
||||||
<dc:Bounds height="36.0" width="36.0" x="1427.0" y="447.0"/>
|
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_rcXT5A">
|
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1395.0" y="486.0"/>
|
|
||||||
</bpmndi:BPMNLabel>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="event_3FDnsA" id="BPMNShape_bRk7og">
|
|
||||||
<dc:Bounds height="36.0" width="36.0" x="1317.0" y="417.0"/>
|
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_XhmDNA">
|
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1285.0" y="456.0"/>
|
|
||||||
</bpmndi:BPMNLabel>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="gateway_S4b22A" id="BPMNShape_whGktg">
|
<bpmndi:BPMNShape bpmnElement="gateway_S4b22A" id="BPMNShape_whGktg">
|
||||||
<dc:Bounds height="50.0" width="50.0" x="1500.0" y="440.0"/>
|
<dc:Bounds height="50.0" width="50.0" x="1500.0" y="440.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_eiLELA">
|
<bpmndi:BPMNLabel id="BPMNLabel_eiLELA">
|
||||||
|
|
@ -3002,31 +2744,19 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1605.0" y="266.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="1605.0" y="266.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="task_dfXKGQ" id="BPMNShape_IYRrQw">
|
|
||||||
<dc:Bounds height="50.0" width="110.0" x="1640.0" y="440.0"/>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="event_ouKIWA" id="BPMNShape_0NWyeg">
|
|
||||||
<dc:Bounds height="36.0" width="36.0" x="1707.0" y="417.0"/>
|
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_u52RoQ">
|
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1675.0" y="456.0"/>
|
|
||||||
</bpmndi:BPMNLabel>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="event_NyrA6g" id="BPMNShape_0Eu73A">
|
|
||||||
<dc:Bounds height="36.0" width="36.0" x="1807.0" y="447.0"/>
|
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_7z0rhw">
|
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1775.0" y="486.0"/>
|
|
||||||
</bpmndi:BPMNLabel>
|
|
||||||
</bpmndi:BPMNShape>
|
|
||||||
<bpmndi:BPMNShape bpmnElement="gateway_H0SvJw" id="BPMNShape_cxzcdQ">
|
<bpmndi:BPMNShape bpmnElement="gateway_H0SvJw" id="BPMNShape_cxzcdQ">
|
||||||
<dc:Bounds height="50.0" width="50.0" x="1920.0" y="440.0"/>
|
<dc:Bounds height="50.0" width="50.0" x="1750.0" y="440.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_Db7h3A">
|
<bpmndi:BPMNLabel id="BPMNLabel_Db7h3A">
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1895.0" y="493.0"/>
|
<dc:Bounds height="20.0" width="100.0" x="1725.0" y="493.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape bpmnElement="event_KfD0Gg" id="BPMNShape_bh00HQ">
|
<bpmndi:BPMNShape bpmnElement="task_awoe6g" id="BPMNShape_2Rwzkw">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="1597.0" y="557.0"/>
|
<dc:Bounds height="50.0" width="110.0" x="2180.0" y="350.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_OGY03g">
|
</bpmndi:BPMNShape>
|
||||||
<dc:Bounds height="20.0" width="100.0" x="1565.0" y="596.0"/>
|
<bpmndi:BPMNShape bpmnElement="event_UOQyTg" id="BPMNShape_AzR30g">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="2357.0" y="357.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_AeEs6A">
|
||||||
|
<dc:Bounds height="20.0" width="100.0" x="2325.0" y="396.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_33" id="BPMNEdge_SequenceFlow_34" sourceElement="BPMNShape_ExclusiveGateway_1">
|
<bpmndi:BPMNEdge bpmnElement="SequenceFlow_33" id="BPMNEdge_SequenceFlow_34" sourceElement="BPMNShape_ExclusiveGateway_1">
|
||||||
|
|
@ -3260,12 +2990,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<di:waypoint x="665.0" y="388.0"/>
|
<di:waypoint x="665.0" y="388.0"/>
|
||||||
<di:waypoint x="665.0" y="447.0"/>
|
<di:waypoint x="665.0" y="447.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_JNYd0A" id="BPMNEdge_ejZylQ" sourceElement="BPMNShape_PuiuLA" targetElement="BPMNShape_0KkpmA">
|
|
||||||
<di:waypoint x="925.0" y="417.0"/>
|
|
||||||
<di:waypoint x="925.0" y="386.0"/>
|
|
||||||
<di:waypoint x="1025.0" y="386.0"/>
|
|
||||||
<di:waypoint x="1025.0" y="447.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_0aNMvQ" id="BPMNEdge_Qyl0GA" sourceElement="BPMNShape_m48YQQ" targetElement="BPMNShape_rAwIzQ">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_0aNMvQ" id="BPMNEdge_Qyl0GA" sourceElement="BPMNShape_m48YQQ" targetElement="BPMNShape_rAwIzQ">
|
||||||
<di:waypoint x="2290.0" y="465.0"/>
|
<di:waypoint x="2290.0" y="465.0"/>
|
||||||
<di:waypoint x="2377.0" y="465.0"/>
|
<di:waypoint x="2377.0" y="465.0"/>
|
||||||
|
|
@ -3298,10 +3022,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<di:waypoint x="576.0" y="565.0"/>
|
<di:waypoint x="576.0" y="565.0"/>
|
||||||
<di:waypoint x="576.0" y="490.0"/>
|
<di:waypoint x="576.0" y="490.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_eadkWg" id="BPMNEdge_f6pP0w" sourceElement="BPMNShape_tX90mw" targetElement="BPMNShape_JgN8Dg">
|
|
||||||
<di:waypoint x="1170.0" y="465.0"/>
|
|
||||||
<di:waypoint x="1250.0" y="465.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_sO35Dg" id="BPMNEdge_A81i0Q" sourceElement="BPMNShape_M9ebrA" targetElement="BPMNShape_ksu2zQ">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_sO35Dg" id="BPMNEdge_A81i0Q" sourceElement="BPMNShape_M9ebrA" targetElement="BPMNShape_ksu2zQ">
|
||||||
<di:waypoint x="790.0" y="465.0"/>
|
<di:waypoint x="790.0" y="465.0"/>
|
||||||
<di:waypoint x="840.0" y="465.0"/>
|
<di:waypoint x="840.0" y="465.0"/>
|
||||||
|
|
@ -3344,24 +3064,6 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<di:waypoint x="2235.0" y="490.0"/>
|
<di:waypoint x="2235.0" y="490.0"/>
|
||||||
<di:waypoint x="2235.0" y="547.0"/>
|
<di:waypoint x="2235.0" y="547.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_jG1Bdw" id="BPMNEdge_8mJFFQ" sourceElement="BPMNShape_JgN8Dg" targetElement="BPMNShape_j6mXew">
|
|
||||||
<di:waypoint x="1360.0" y="465.0"/>
|
|
||||||
<di:waypoint x="1427.0" y="465.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_Rdv4Yg" id="BPMNEdge_joh9xw" sourceElement="BPMNShape_bRk7og" targetElement="BPMNShape_j6mXew">
|
|
||||||
<di:waypoint x="1335.0" y="417.0"/>
|
|
||||||
<di:waypoint x="1335.0" y="392.0"/>
|
|
||||||
<di:waypoint x="1445.0" y="392.0"/>
|
|
||||||
<di:waypoint x="1445.0" y="447.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_o0J3Sg" id="BPMNEdge_xM4YLQ" sourceElement="BPMNShape_j6mXew" targetElement="BPMNShape_whGktg">
|
|
||||||
<di:waypoint x="1463.0" y="465.0"/>
|
|
||||||
<di:waypoint x="1500.0" y="465.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_83w7TA" id="BPMNEdge_jbg8pg" sourceElement="BPMNShape_whGktg" targetElement="BPMNShape_IYRrQw">
|
|
||||||
<di:waypoint x="1550.0" y="465.0"/>
|
|
||||||
<di:waypoint x="1640.0" y="465.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_2th1MQ" id="BPMNEdge_vuG4rg" sourceElement="BPMNShape_whGktg" targetElement="BPMNShape_wUSzdg">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_2th1MQ" id="BPMNEdge_vuG4rg" sourceElement="BPMNShape_whGktg" targetElement="BPMNShape_wUSzdg">
|
||||||
<di:waypoint x="1525.0" y="440.0"/>
|
<di:waypoint x="1525.0" y="440.0"/>
|
||||||
<di:waypoint x="1525.0" y="354.0"/>
|
<di:waypoint x="1525.0" y="354.0"/>
|
||||||
|
|
@ -3375,35 +3077,29 @@ Wiedervorlage wird um 7 bzw. 5 Tage erhöht</bpmn2:text>
|
||||||
<di:waypoint x="1550.0" y="245.0"/>
|
<di:waypoint x="1550.0" y="245.0"/>
|
||||||
<di:waypoint x="1637.0" y="245.0"/>
|
<di:waypoint x="1637.0" y="245.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_zl0p4Q" id="BPMNEdge_hGtzqw" sourceElement="BPMNShape_IYRrQw" targetElement="BPMNShape_0Eu73A">
|
|
||||||
<di:waypoint x="1750.0" y="465.0"/>
|
|
||||||
<di:waypoint x="1807.0" y="465.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_Bms0CA" id="BPMNEdge_INwgzA" sourceElement="BPMNShape_0Eu73A" targetElement="BPMNShape_cxzcdQ">
|
|
||||||
<di:waypoint x="1843.0" y="465.0"/>
|
|
||||||
<di:waypoint x="1920.0" y="465.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_AIquGw" id="BPMNEdge_npcU7A" sourceElement="BPMNShape_cxzcdQ" targetElement="BPMNShape_hJ0JvA">
|
|
||||||
<di:waypoint x="1945.0" y="440.0"/>
|
|
||||||
<di:waypoint x="1945.0" y="372.0"/>
|
|
||||||
<di:waypoint x="1655.0" y="372.0"/>
|
|
||||||
<di:waypoint x="1655.0" y="263.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_5OVgOQ" id="BPMNEdge_PA1wuQ" sourceElement="BPMNShape_cxzcdQ" targetElement="BPMNShape_m48YQQ">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_5OVgOQ" id="BPMNEdge_PA1wuQ" sourceElement="BPMNShape_cxzcdQ" targetElement="BPMNShape_m48YQQ">
|
||||||
<di:waypoint x="1970.0" y="465.0"/>
|
<di:waypoint x="1800.0" y="465.0"/>
|
||||||
<di:waypoint x="2180.0" y="465.0"/>
|
<di:waypoint x="2180.0" y="465.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_VgfIJA" id="BPMNEdge_ylLF3g" sourceElement="BPMNShape_0NWyeg" targetElement="BPMNShape_0Eu73A">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_peFLew" id="BPMNEdge_Uo0krA" sourceElement="BPMNShape_cxzcdQ" targetElement="BPMNShape_2Rwzkw">
|
||||||
<di:waypoint x="1725.0" y="417.0"/>
|
<di:waypoint x="1789.0" y="454.0"/>
|
||||||
<di:waypoint x="1725.0" y="403.0"/>
|
<di:waypoint x="1789.0" y="373.0"/>
|
||||||
<di:waypoint x="1825.0" y="403.0"/>
|
<di:waypoint x="2180.0" y="373.0"/>
|
||||||
<di:waypoint x="1825.0" y="447.0"/>
|
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_rE5y8g" id="BPMNEdge_8i1QCQ" sourceElement="BPMNShape_IYRrQw" targetElement="BPMNShape_bh00HQ">
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_5p1nHQ" id="BPMNEdge_3BWqTg" sourceElement="BPMNShape_2Rwzkw" targetElement="BPMNShape_AzR30g">
|
||||||
<di:waypoint x="1663.0" y="490.0"/>
|
<di:waypoint x="2290.0" y="375.0"/>
|
||||||
<di:waypoint x="1663.0" y="527.0"/>
|
<di:waypoint x="2357.0" y="375.0"/>
|
||||||
<di:waypoint x="1613.0" y="527.0"/>
|
</bpmndi:BPMNEdge>
|
||||||
<di:waypoint x="1613.0" y="557.0"/>
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_Tp8LKg" id="BPMNEdge_HHW6iQ" sourceElement="BPMNShape_whGktg" targetElement="BPMNShape_cxzcdQ">
|
||||||
|
<di:waypoint x="1550.0" y="465.0"/>
|
||||||
|
<di:waypoint x="1750.0" y="465.0"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge bpmnElement="sequenceFlow_ui7tJg" id="BPMNEdge_Pcjiog" sourceElement="BPMNShape_tX90mw" targetElement="BPMNShape_ksu2zQ">
|
||||||
|
<di:waypoint x="1170.0" y="465.0"/>
|
||||||
|
<di:waypoint x="1268.0" y="465.0"/>
|
||||||
|
<di:waypoint x="1268.0" y="527.0"/>
|
||||||
|
<di:waypoint x="921.0" y="527.0"/>
|
||||||
|
<di:waypoint x="921.0" y="490.0"/>
|
||||||
</bpmndi:BPMNEdge>
|
</bpmndi:BPMNEdge>
|
||||||
</bpmndi:BPMNPlane>
|
</bpmndi:BPMNPlane>
|
||||||
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
|
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
|
||||||
5918
workflow/pl/rechnungseingang-pl-1.0.11.bpmn
Normal file
5918
workflow/pl/rechnungseingang-pl-1.0.11.bpmn
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue