Merge branch 'office-alexander-logistics-1.4'
This commit is contained in:
commit
3c5e5b0546
363 changed files with 11282 additions and 4866 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -13,9 +13,11 @@ target/
|
|||
.metadata/
|
||||
.project
|
||||
.classpath
|
||||
.env
|
||||
|
||||
# ignore docker deployments
|
||||
docker/deployments/
|
||||
docker/keys/imixs-llm.xml
|
||||
|
||||
# Sepa Report
|
||||
reports/sepa/result_sepa*
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
# Versionen
|
||||
|
||||
## 1.4.0 (Development)
|
||||
|
||||
- neuer AGLAIInvoiceAdapter
|
||||
der Adapter `AGLAIInvoiceAdapter` muss künftig in das Import Event der Rechnungseingangs Modelle. Dieser Adapter Findet den Space und den Mandanten.
|
||||
|
||||
Neue Modelle:
|
||||
|
||||
- Posteingang
|
||||
- posteingang-de-3.0
|
||||
- AMS
|
||||
- rechnungseingang-ams-1.1.0.bpmn
|
||||
|
||||
## 1.3.6 (Development)
|
||||
|
||||
**KSeF Produktiname II.**
|
||||
|
|
|
|||
204
backup/README.md
Normal file
204
backup/README.md
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
# Eigenes Backup-System (Backup-Mirror)
|
||||
## Architektur, Einrichtung und Disaster-Recovery-Konzept
|
||||
|
||||
---
|
||||
|
||||
## 1. Idee und Architektur
|
||||
|
||||
### 1.1 Ausgangslage
|
||||
|
||||
Imixs-Office-Workflow wird von uns als eine transaktionale, hochverfügbare
|
||||
Geschäftsprozessmanagement-Suite betrieben. Die Basis ist ein Open Source Kernel,
|
||||
der frei zugänglich ist ([https://github.com/imixs/](https://github.com/imixs/)).
|
||||
Unabhängig vom gewählten Betriebsmodell (SaaS, Public Cloud, Private Cloud, On
|
||||
Premise) sind und bleiben Sie Eigentümer Ihrer Geschäftsdaten. Über den
|
||||
Backup-Service haben Sie die Möglichkeit, jederzeit eigenständig auf eine
|
||||
vollständige Kopie Ihrer Daten zuzugreifen – unabhängig davon, wie und wo Ihre
|
||||
Instanz aktuell betrieben wird.
|
||||
|
||||
### 1.2 Architektur – Own your Data
|
||||
|
||||
Auch wenn wir den Betrieb Ihrer Instanz übernehmen, bedeutet das nicht, dass Sie
|
||||
von uns abhängig sind. Über den Backup-Mirror betreiben Sie bei sich einen eigenen,
|
||||
unabhängigen Backup-Dienst. Dieser Dienst wird von Ihnen selbst eingerichtet,
|
||||
verwaltet und überwacht und läuft vollständig autark – wir müssen ihn technisch
|
||||
weder kennen noch verwalten. Dadurch gilt:
|
||||
|
||||
> **Sie verfügen über eine eigenständige, vollständige Kopie Ihrer
|
||||
> Geschäftsdaten – unabhängig von unserer Infrastruktur. Mit dieser Kopie kann
|
||||
> Ihr System bei Bedarf komplett neu aufgebaut werden.**
|
||||
|
||||
Das ist ein bewusst einfaches und robustes Prinzip: Es kommt nicht darauf an, *wo*
|
||||
Ihre Daten zusätzlich liegen, sondern *wer* die Kontrolle über diesen zusätzlichen
|
||||
Sicherungsort hat. Nur wenn diese Kontrolle bei Ihnen liegt, sind Sie wirklich
|
||||
unabhängig.
|
||||
|
||||
### 1.3 Wie es funktioniert
|
||||
|
||||
Technisch basiert das Konzept auf dem Open-Source-Projekt
|
||||
[Imixs-Archive](https://github.com/imixs/imixs-archive), konkret auf dem Baustein
|
||||
*Imixs-Archive-Backup*. Der Ablauf im Überblick:
|
||||
|
||||
1. Bei jeder Änderung an einem Geschäftsvorgang erzeugt Ihre Workflow-Instanz
|
||||
automatisch einen unveränderlichen Snapshot (eine vollständige Kopie des
|
||||
Vorgangs inkl. aller angehängten Dokumente).
|
||||
2. Diese Snapshots werden über die REST-Schnittstelle Ihrer Workflow-Instanz
|
||||
bereitgestellt.
|
||||
3. Ein bei Ihnen installierter Backup-Dienst (siehe Abschnitt 2) ruft diese
|
||||
Snapshots eigenständig ab und speichert sie auf einem Speicherort Ihrer Wahl
|
||||
(z. B. eigener FTP-/Storage-Server).
|
||||
|
||||
Wichtig: Die Verbindung erfolgt **von Ihrem System zu unserer Workflow-Instanz**
|
||||
(„Pull-Prinzip"). Sie benötigen dafür lediglich einen Netzwerkzugriff auf die
|
||||
REST-Schnittstelle Ihrer Instanz – wir müssen keinen Zugriff auf Ihre Infrastruktur
|
||||
haben und erhalten auch keinen.
|
||||
|
||||
---
|
||||
|
||||
## 2. Technische Einrichtung
|
||||
|
||||
Der Backup-Dienst kann als Docker-Container in unterschiedlichen Umgebungen betrieben werden:
|
||||
|
||||
- **Local**: lokal über Docker oder Docker Compose,
|
||||
- **Private Cloud**: in einer Private Cloud (z.b. Kubernetes, OpenShift)
|
||||
- **Public Cloud**: in einer Public Cloud Umgebung (z.b. AWS, Microsoft Azure)
|
||||
|
||||
|
||||
### 2.1 Voraussetzungen
|
||||
|
||||
- Eine eigene Server- bzw. Container-Umgebung (Docker) auf Ihrer Seite
|
||||
- Ein eigener Speicherort für die Backup-Daten (z. B. FTP-Storage, NAS mit
|
||||
FTP-Anbindung)
|
||||
- Eine sogenannte **Mirror-ID**, die wir Ihnen bereitstellen
|
||||
|
||||
### 2.2 Mirror-ID anfragen
|
||||
|
||||
Die Mirror-ID ist eine organisatorische Kennung, mit der wir Ihre eigene
|
||||
Backup-Verbindung für Ihre Instanz freischalten. Sie ist kein Sicherheitsmerkmal im
|
||||
engeren Sinn, sondern eine Vereinbarung zwischen uns: *„Kunde X betreibt ein eigenes
|
||||
Backup."* Bitte fordern Sie diese ID formlos bei uns an.
|
||||
|
||||
### 2.3 Backup-Nutzer in Ihrer eigenen Instanz anlegen
|
||||
|
||||
Ein zentraler Punkt für die Autarkie des Systems: **Sie legen den technischen
|
||||
Benutzer für den Backup-Zugriff selbst in Ihrer Imixs-Instanz an.** Dieser Nutzer
|
||||
gehört ausschließlich Ihnen – wir kennen weder das Passwort noch verwalten wir
|
||||
dieses Konto. Vergeben Sie dem Nutzer ausreichende Leserechte, damit er alle
|
||||
relevanten Vorgänge und Dokumente sichern kann.
|
||||
|
||||
### 2.4 Docker-Compose Beispielkonfiguration
|
||||
|
||||
Das folgende Beispiel zeigt eine Docker Compose Konfiguraiton für den Betrieb des Backup-Dienstes:
|
||||
|
||||
```yaml
|
||||
version: "3.6"
|
||||
services:
|
||||
backup:
|
||||
image: imixs/imixs-archive-backup:latest
|
||||
environment:
|
||||
TZ: "Europe/Berlin"
|
||||
WORKFLOW_SERVICE_ENDPOINT: "https://<ihre-instanz>.office-workflow.de/api/"
|
||||
WORKFLOW_SERVICE_USER: "<ihr-backup-nutzer>"
|
||||
WORKFLOW_SERVICE_PASSWORD: "<ihr-passwort>"
|
||||
WORKFLOW_SERVICE_AUTHMETHOD: "form"
|
||||
BACKUP_FTP_HOST: "<ihr-storage-host>"
|
||||
BACKUP_FTP_PATH: "<ihr-zielverzeichnis>"
|
||||
BACKUP_FTP_PORT: "21"
|
||||
BACKUP_FTP_USER: "<ihr-ftp-nutzer>"
|
||||
BACKUP_FTP_PASSWORD: "<ihr-ftp-passwort>"
|
||||
BACKUP_MIRROR_ID: "<ihre-mirror-id>"
|
||||
ports:
|
||||
- "8084:8080"
|
||||
- "9990:9990"
|
||||
```
|
||||
|
||||
**Erläuterung der wichtigsten Parameter:**
|
||||
|
||||
| Parameter | Bedeutung |
|
||||
|---|---|
|
||||
| `WORKFLOW_SERVICE_ENDPOINT` | Die REST-API-Adresse Ihrer bei uns gehosteten Workflow-Instanz |
|
||||
| `WORKFLOW_SERVICE_USER/PASSWORD` | Der von Ihnen selbst angelegte Backup-Nutzer |
|
||||
| `BACKUP_FTP_*` | Ihr eigener Speicherort für die Backup-Daten |
|
||||
| `BACKUP_MIRROR_ID` | Die von uns bereitgestellte Freischalt-ID |
|
||||
|
||||
Nach dem Start prüft der Dienst regelmäßig auf neue zu sichernde Vorgänge und
|
||||
überträgt diese automatisch auf Ihren Speicherort.
|
||||
|
||||
### 2.5 Monitoring des eigenen Backup-Dienstes
|
||||
|
||||
Da der Dienst vollständig in Ihrer Verantwortung läuft, sollten Sie ihn aktiv
|
||||
überwachen. Ein einfacher Ping-Check zeigt zwar, dass der Container erreichbar
|
||||
ist – sagt aber nichts darüber aus, ob der Dienst tatsächlich funktionsfähig ist
|
||||
und Backups erfolgreich durchführt.
|
||||
|
||||
Der Imixs-Archive-Backup-Service stellt hierfür standardisierte **MicroProfile-Endpunkte** mit, die auf Port `9990`
|
||||
bereitgestellt werden:
|
||||
|
||||
| Endpunkt | Beschreibung |
|
||||
|---|---|
|
||||
| `/health` | Liefert den Health-Status des Dienstes nach dem MicroProfile-Health-Standard – inklusive Readiness (ist der Dienst betriebsbereit, z. B. Verbindung zur Workflow-API und zum FTP-Storage vorhanden?) und Liveness (läuft der Prozess korrekt?) |
|
||||
| `/metrics` | Liefert Betriebskennzahlen im MicroProfile-Metrics-Format (Prometheus-kompatibel), z. B. Anzahl verarbeiteter Backups, Fehlerzähler, Laufzeiten |
|
||||
|
||||
Damit lässt sich der Dienst professionell überwachen:
|
||||
|
||||
- **Health-Checks** binden Sie direkt in gängige Monitoring-Systeme ein (z. B.
|
||||
Kubernetes Liveness-/Readiness-Probes, Uptime-Kuma, Nagios, Icinga) und erkennen
|
||||
so nicht nur einen abgestürzten Container, sondern auch einen Dienst, der zwar
|
||||
läuft, aber z. B. keine Verbindung mehr zu Ihrer Workflow-Instanz oder zum
|
||||
FTP-Ziel herstellen kann.
|
||||
- **Metrics** lassen sich direkt von Prometheus abgegriffen und in Grafana
|
||||
visualisiert werden – so erkennen Sie auf einen Blick, ob regelmäßig Backups
|
||||
durchgeführt werden, oder ob z. B. die Fehlerrate ansteigt.
|
||||
|
||||
**Voraussetzung:** Sie müssen Port `9990` in Ihrer Docker-Umgebung entsprechend
|
||||
freigeben bzw. mappen, damit Ihr Monitoring-System auf die Endpunkte zugreifen kann
|
||||
(siehe Port-Mapping im Beispiel aus Abschnitt 2.4).
|
||||
|
||||
Ein Backup, das unbemerkt seit Wochen nicht mehr funktioniert, bietet keinen Schutz.
|
||||
Die Überwachung über Health- und Metrics-Endpunkte ist daher ein integraler
|
||||
Bestandteil des Konzepts, nicht optional.
|
||||
|
||||
---
|
||||
|
||||
## 3. Notfall- und Wiederherstellungsfall (Disaster Recovery)
|
||||
|
||||
Im Falle eines Disaster-Recovery-Prozesses stellen Sie uns Ihr Backup zur Verfügung, damit Ihr System auf dessen Basis wiederhergestellt werden kann. Dieser Abschnitt beschreibt das Vorgehen nur in Stichpunkten.
|
||||
Die vollständige technische Dokumentation der
|
||||
Imixs-Workflow-Architektur ist Open Source und öffentlich einsehbar unter
|
||||
[github.com/imixs](https://github.com/imixs).
|
||||
|
||||
**Grundprinzip der Wiederherstellung:**
|
||||
|
||||
- Ihre gesicherten Snapshot-Daten liegen vollständig und unverändert in Ihrem
|
||||
eigenen Speicher (FTP/Storage) vor.
|
||||
- Diese Daten liegen in einem offenen, plattformunabhängigen XML-Format vor und
|
||||
sind nicht an unsere konkrete Infrastruktur gebunden.
|
||||
- Auf Basis dieser Daten kann eine neue Imixs-Workflow-Instanz (bei Ihnen oder bei
|
||||
einem anderen Dienstleister) aufgesetzt werden.
|
||||
- Über die Restore-Funktion der Imixs-Archive-Komponenten werden die Snapshots in
|
||||
die neue Instanz zurückgespielt – jeder Geschäftsvorgang wird dabei inklusive
|
||||
seiner Historie und aller Dokumente wiederhergestellt.
|
||||
|
||||
**Wichtige Stichpunkte für den Ernstfall:**
|
||||
|
||||
- Backup-Daten sind vollständig bei Ihnen vorhanden → keine Abhängigkeit von uns
|
||||
- Wiederherstellung erfordert eine lauffähige Imixs-Workflow-Umgebung (Open Source,
|
||||
frei verfügbar)
|
||||
- Die technische Vorgehensweise zum Restore ist Teil der öffentlichen
|
||||
Imixs-Archive-Dokumentation
|
||||
- Wir unterstützen Sie im Ernstfall selbstverständlich gerne beim Wiederaufbau –
|
||||
diese Unterstützung ist jedoch **keine Voraussetzung**, da die Daten und das
|
||||
Wiederherstellungsverfahren vollständig unabhängig von uns nutzbar sind
|
||||
|
||||
---
|
||||
|
||||
## 4. Zusammenfassung
|
||||
|
||||
Mit dem Backup-Mirror bleiben Sie jederzeit Eigentümer Ihrer Geschäftsdaten – unabhängig
|
||||
davon, wie und wo Ihre Instanz betrieben wird. Sie richten den Dienst selbst ein, verwalten
|
||||
ihn eigenständig und behalten so die volle Kontrolle über Ihre zusätzliche Datenkopie. Genau
|
||||
diese Unabhängigkeit ist es, die Ihnen im Bedarfsfall den vollständigen Wiederaufbau Ihres
|
||||
Systems ermöglicht.
|
||||
|
||||
Bei Fragen zur Einrichtung oder zur Anforderung Ihrer Mirror-ID kontaktieren Sie uns
|
||||
gerne.
|
||||
22
backup/docker-compose.yaml
Normal file
22
backup/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
version: "3.6"
|
||||
services:
|
||||
###############################################
|
||||
# Backup Service
|
||||
###############################################
|
||||
backup:
|
||||
image: imixs/imixs-archive-backup:latest
|
||||
environment:
|
||||
TZ: "Europe/Berlin"
|
||||
WORKFLOW_SERVICE_ENDPOINT: "https://alexander-logistics-ams.office-workflow.de/api/"
|
||||
WORKFLOW_SERVICE_USER: "kutzner-backup-service"
|
||||
WORKFLOW_SERVICE_PASSWORD: "16e-7ede-4c1c-bdeb-e16ce"
|
||||
WORKFLOW_SERVICE_AUTHMETHOD: "form"
|
||||
BACKUP_FTP_HOST: "u248962.your-storagebox.de"
|
||||
BACKUP_FTP_PATH: "/test/agl/ams-test"
|
||||
BACKUP_FTP_PORT: "21"
|
||||
BACKUP_FTP_USER: "u248962"
|
||||
BACKUP_FTP_PASSWORD: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||
BACKUP_MIRROR_ID: "backup-mirror-local"
|
||||
WORKFLOW_REST_JPQL_DOUBLEDECODE_WORKAROUND: "true"
|
||||
ports:
|
||||
- "8084:8080"
|
||||
Binary file not shown.
2
devi
2
devi
|
|
@ -53,9 +53,7 @@ fi
|
|||
|
||||
if [[ "$(strip_dash $1)" == "hot" ]]; then
|
||||
echo "* Hotdeploy..."
|
||||
cd *-app
|
||||
mvn manik-hotdeploy:hotdeploy
|
||||
cd ..
|
||||
fi
|
||||
|
||||
if [[ "$(strip_dash $1)" == "deploy" ]]; then
|
||||
|
|
|
|||
99
doc/FTP.md
99
doc/FTP.md
|
|
@ -1,99 +0,0 @@
|
|||
# FTP Server
|
||||
|
||||
Wir stellen verschiedene FTP Laufwerke auf dem Hetzner bereit um Daten mit Cargosoft und anderen Partnern auszutauschen
|
||||
|
||||
# Cargosoft
|
||||
|
||||
**ACHTUNG:** Frau Beste bittet darum den public key für alle Sub Accounts zu installieren:
|
||||
|
||||
$ cat id_rsa_cargosoft.pub | ssh -p23 u248962-sub12@u248962.your-storagebox.de install-ssh-key
|
||||
|
||||
## Cargosoft Schnittstelle (Bremen - Mandant 001)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft
|
||||
Benutzername: u248962-sub2
|
||||
Passwort: aXa61n9Un3jDNQlL
|
||||
|
||||
## Cargosoft Schnittstelle (AMS - Mandant 002)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-ams
|
||||
Benutzername: u248962-sub12
|
||||
Passwort: RA9N0V8EB8_1Dnw
|
||||
|
||||
## Cargosoft Schnittstelle (Bremerhaven Mandant 005)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-bhv
|
||||
Benutzername: u248962-sub5
|
||||
Passwort: 5hKKzv6TFCKRrAdR
|
||||
|
||||
## Cargosoft Schnittstelle (Polen Mandant 003)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-pl
|
||||
Benutzername: u248962-sub7
|
||||
Passwort: PGPzzqmtZ8BSxkbs
|
||||
|
||||
## Cargosoft Schnittstelle (Dubai Mandant 006)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-dwc
|
||||
Benutzername: u248962-sub3
|
||||
Passwort: enHjxs9h4nJ6EgsZ
|
||||
|
||||
Wir stellen Herrn Hoelzl in Dubai ein eigenes FTP Laufwerk bereit, in das wir die Rechnungen per Imixs-Exporter verschieben.
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/filetransfer-dwc
|
||||
Benutzername: u248962-sub11
|
||||
Passwort: mH9mAS77QhuA5XJi
|
||||
|
||||
Herr Hoelzl überträgt dann die Daten in eine app von einer Steuerkanzlei.
|
||||
|
||||
Es wird dazu ein FTP Server bereitgestellt der von Herrn Hölzl und Frau Geisler lokal eingebunden werden kann.
|
||||
|
||||
Der aktuelle Workflow für Eingangs- und Ausgangsrechnungen wird dahingehend angepasst, dass die Belege automatisch nach folgenden Format exportiert werden:
|
||||
|
||||
```
|
||||
├── invoice-out
|
||||
│ ├── 2024
|
||||
│ │ ├── 06
|
||||
│ │ │ ├── 198_EX-DWC-2406-013.pdf
|
||||
│ │ │ ├── 199_EX-DWC-2406-013.pdf
|
||||
│ │ ├── 07
|
||||
│ │ │ ├── 200_IM-DWC-2407-010.pdf
|
||||
├── invoice-in
|
||||
│ ├── 2024
|
||||
│ │ ├── 06
|
||||
│ │ │ ├── 700045_EX-DWC-2406-005.pdf
|
||||
│ │ │ ├── 700045_59475.pdf
|
||||
```
|
||||
|
||||
sequencenumer +
|
||||
|
||||
firmename + positionsnummer + rechnungsnummer +
|
||||
|
||||
Der Export erfolgt automatisch nach Empfang der Rechnung bzw. nach Prüfung der Rechnung (Review->Approved). Die Dateinamen werden vom System berechnet (siehe oben). Bei Sachrechnungen wird das Rechnungsdatum verwendet um die Buchungsperiode zu berechnen.
|
||||
|
||||
## Cargosoft Schnittstelle (USA Mandant 004)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-usa
|
||||
Benutzername: u248962-sub9
|
||||
Passwort: GMk7NgDBrmb2QqXg
|
||||
|
||||
## Cargosoft Schnittstelle (China Mandant 007)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-chn
|
||||
Benutzername: u248962-sub10
|
||||
Passwort: yswBeN83jMqkMqJa
|
||||
|
||||
## Cargosoft Schnittstelle (Brazil - Mandant 008)
|
||||
|
||||
Server: u248962.your-storagebox.de
|
||||
Pfad: /office-alexander-logistics/cargosoft-br
|
||||
Benutzername: u248962-sub13
|
||||
Passwort: YjQ5u5Nzz535-eGR
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
Hallo,
|
||||
wir nutzen oben genannte Storage Box für den Datenaustausch mit verschiedenen Kunden.
|
||||
Einer der Kunden kann seit dem 25. Juli nicht mehr von seinem Firmennetzwerk darauf zugreifen.
|
||||
|
||||
Wir haben auf dem Linux Server beim Kunden folgende Tests durchgeführt:
|
||||
|
||||
cargodb@cargodb:~$ sftp -v -oPort=22 u248962-sub1@u248962.your-storagebox.de
|
||||
OpenSSH_8.2p1 Ubuntu-4ubuntu0.3, OpenSSL 1.1.1f 31 Mar 2020
|
||||
debug1: Reading configuration data /etc/ssh/ssh_config
|
||||
debug1: /etc/ssh/ssh_config line 19: include /etc/ssh/ssh_config.d/_.conf matched no files
|
||||
debug1: /etc/ssh/ssh_config line 21: Applying options for _
|
||||
debug2: resolving "u248962.your-storagebox.de" port 22
|
||||
debug2: ssh_connect_direct
|
||||
debug1: Connecting to u248962.your-storagebox.de [78.47.94.120] port 22.
|
||||
debug1: connect to address 78.47.94.120 port 22: Connection refused
|
||||
debug1: Connecting to u248962.your-storagebox.de [2a01:4f8:2b01:db::2] port 22.
|
||||
debug1: connect to address 2a01:4f8:2b01:db::2 port 22: Network is unreachable
|
||||
ssh: connect to host u248962.your-storagebox.de port 22: Network is unreachable
|
||||
Connection closed.
|
||||
|
||||
cargodb@cargodb:~$ nc -zv u248962-sub1@u248962.your-storagebox.de 22
|
||||
nc: getaddrinfo for host u248962-sub1@u248962.your-storagebox.de port 22: Name or service not known
|
||||
|
||||
cargodb@cargodb:~$ tcptraceroute u248962.your-storagebox.de 22
|
||||
Selected device ens160, address 192.168.83.3, port 52113 for outgoing packets
|
||||
Tracing the path to u248962.your-storagebox.de (78.47.94.120) on TCP port 22 (ssh), 30 hops max
|
||||
1 192.168.83.254 0.233 ms 0.175 ms 0.242 ms
|
||||
2 82-198-218-38.briteline.de (82.198.218.38) 1.470 ms 1.103 ms 2.286 ms
|
||||
3 10.200.48.254 0.930 ms 0.915 ms 0.776 ms
|
||||
4 82-198-192-194.briteline.de (82.198.192.194) 1.092 ms 1.114 ms 0.902 ms
|
||||
5 82-198-216-168.briteline.de (82.198.216.168) 1.101 ms 1.168 ms 1.034 ms
|
||||
6 ae0-201.cr11.bre04.lwlcom.net (31.209.93.121) 1.543 ms 1.650 ms 1.528 ms
|
||||
7 ae0-30.cr10.bre09.lwlcom.net (185.146.230.97) 7.713 ms 7.440 ms 11.215 ms
|
||||
8 ae0-10.cr11.bre09.lwlcom.net (185.146.230.53) 7.647 ms 7.652 ms 7.617 ms
|
||||
9 ae0-20.cr10.bre03.lwlcom.net (185.146.230.99) 7.530 ms 7.716 ms 7.505 ms
|
||||
10 ae7-90.cr10.bre11.lwlcom.net (185.146.230.34) 7.723 ms 7.661 ms 7.578 ms
|
||||
11 ae7-100.cr10.lut01.lwlcom.net (185.146.230.39) 7.446 ms 7.509 ms 7.673 ms
|
||||
12 ae6-100.cr10.fra03.lwlcom.net (185.146.230.27) 7.980 ms 7.281 ms 7.981 ms
|
||||
13 ae2-100.cr10.fra04.lwlcom.net (185.146.230.51) 7.287 ms 7.392 ms 7.406 ms
|
||||
14 213-133-121-205.clients.your-server.de (213.133.121.205) 10.464 ms 10.542 ms 10.573 ms
|
||||
15 core24.fsn1.hetzner.com (213.239.224.85) 16.458 ms 16.381 ms 16.338 ms
|
||||
16 mx10k1.dc3.fsn1.hetzner.com (213.239.254.142) 16.632 ms 16.687 ms 24.837 ms
|
||||
17 static.120.94.47.78.clients.your-server.de (78.47.94.120) 16.526 ms !p 16.509 ms !p 16.505 ms !p
|
||||
|
||||
Können Sie anhand dieser Daten erkennen worin das Problem besteht? Andere Kunden können die Storage Box problemlos nutzen.
|
||||
|
||||
Vielen Dank für Ihre Hilfe
|
||||
Mit freundlichen Grüßen
|
||||
Ralph Soika
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
# Feedback zum PDF FIle
|
||||
|
||||
| Feld / Komponente | Status |
|
||||
| :------------------------------------------------------- | :----------------------- |
|
||||
| **1. Podmiot 1 — Daten des Rechnungsausstellers (AGLP)** | |
|
||||
| `<Nazwa>` | **FIXED** |
|
||||
| `<AdresL1>` | **FIXED** |
|
||||
| `<PrefiksPodatnika>PL</PrefiksPodatnika>` | **FIXED** |
|
||||
| **2. Podmiot 2 — Daten des Rechnungsempfängers** | |
|
||||
| `<NrID> <NIP>` | **ALREADY IMPLEMENTED** |
|
||||
| EU-Rechnungsempfänger | **UNCLEAR!** |
|
||||
| Anschrift des Rechnungsempfängers | **CARGOSOFT TOPIC** |
|
||||
| **3. Abschnitt <Fa> — Rechnungskopf** | **FIXED** |
|
||||
| `<P_1M>` | **FIXED** |
|
||||
| `<KursWalutyZ>` | **FIXED** |
|
||||
| **4. Rechnungspositionen <FaWiersz> — Pflichtfelder** | |
|
||||
| `<P_7>` | **FIXED** |
|
||||
| `<P_8B>` | **IGNORED - NOT FIXED!** |
|
||||
| `<P_11A>` | **????** |
|
||||
| `<P_11Vat>` | **????** |
|
||||
| **5. Rechnungssummen — <P_13_x> / <P_14_x>** | |
|
||||
| _Noch keine Details_ | — |
|
||||
| **6. Zahlung — <Platnosc>** | |
|
||||
| `<FormaPlatnosci>` | **FIXED** |
|
||||
| `<RachunekBankowy>` | **FIXED** |
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
NIP = "9552521552"
|
||||
|
||||
TOKEN = "20251113-EC-2751AC3000-5C5466924B-62|nip-9552521552|fc0c95d020dc45d4af491fb0aa755f3f3f674b33ecbf4250a88ea6e36fa8340b
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
# Mail
|
||||
|
||||
Testen von Mailing kann man über
|
||||
|
||||
https://www.mail-tester.com/
|
||||
|
||||
Kutzner Mail gateway
|
||||
|
||||
PW: 26W%R#Xe4^Z2Gyz1
|
||||
|
|
@ -1 +0,0 @@
|
|||
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAnGiu0PUBl+G++vHrGP5wDRit4mXF4hXTyzUem3BPADaV0DUuYN1Fx5RpDl2F8mhnqDYcyCTBzLTJ+0jFqq1pzoJW5ZWZ+hSChabVCV4m8UkFkhbRmjxNkPx26ZMhfTD1mDqgCKQ+bbt1mi04UZppDKBr+9ZrMG3d0odHblEJHixtJ7Hqr9vvXXbvNv4E9B/9dlW57oyEUk/vKmwuLyGAsDjxjfB3W+Faab+gev8VDwJxdbD90HX0O2Az05wy9EC7M3pujcawsHdaFXgFFRRwlVuUkX3z9hp1Uekqg0N81hty7/i8GiZ9/m3Y6hIA5eRM4ZpDQFEF8SY9TLSzDehNoQ== seesped@cargodb
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
# Zoho Web API
|
||||
|
||||
AGL Dubai nutzt Zoho als Platform zusammen mit einer lokalen Steuerkanzlei
|
||||
|
||||
## Test/Prod Account Imixs
|
||||
|
||||
https://api-console.zoho.eu/
|
||||
https://api-console.zoho.eu/client/1000.NLTM2KUEHI696MSLGEIANATVGGX7IN
|
||||
|
||||
```
|
||||
zoho.accesstoken 1000.18f5fbeaf572425b8062d015d541aad5.a704efa994774ef33d7af75106468a13
|
||||
zoho.apidomain https://www.zohoapis.eu
|
||||
zoho.clientid 1000.GR5FTPZYB06HEWSFSSX4DJU3OBD4EJ
|
||||
zoho.clientsecret 3f3e74c5212bbc924a7ebf77f887c6296db1106c47
|
||||
zoho.code 1000.c184c7592a218fee58f7b7855b56eb77.7b533ff9f570fd6ab3296784caeec072
|
||||
zoho.organization 20105697367
|
||||
zoho.refreshtoken 1000.98fe4d0c4f676237b400bf8a3dc219f3.03d6bacf5b988d339eb788c4ecff440e
|
||||
zoho.scope ZohoBooks.contacts.ALL ZohoBooks.invoices.CREATE ZohoBooks.invoices.READ ZohoBooks.invoices.UPDATE
|
||||
|
||||
```
|
||||
|
||||
## Atari
|
||||
|
||||
atari.600xl@gmail.com
|
||||
800xlAtari
|
||||
|
||||
```
|
||||
zoho.apidomain https://www.zohoapis.eu
|
||||
zoho.clientid 1000.86O4P321HDYDRX0Q0N1G7YOJRJ9D5W
|
||||
zoho.clientsecret 2a67b6cfc364f5df27cc8eb33e9b0e4e8a0221ebc3
|
||||
zoho.code 1000.c7dc89c06111b93f1242b587fabed4ac.44c591dffbd978a316e3d90ed3fefc78
|
||||
zoho.organization 886924765
|
||||
zoho.scope ZohoBooks.contacts.ALL,ZohoBooks.invoices.ALL,ZohoBooks.bills.ALL
|
||||
```
|
||||
|
||||
## Prod DWC
|
||||
|
||||
info@imixs.com
|
||||
imixs4zoho
|
||||
|
||||
Für Drecks Forum
|
||||
Imixs4#zoho
|
||||
Imixs4#zoho
|
||||
|
||||
http://books.zoho.com/
|
||||
|
||||
https://api-console.zoho.com/
|
||||
|
||||
ZohoBooks.contacts.ALL,ZohoBooks.invoices.ALL,ZohoBooks.bills.ALL
|
||||
|
||||
```
|
||||
|
||||
zoho.apidomain https://www.zohoapis.com
|
||||
zoho.clientid 1000.MQE1SU8UGY6F2PBPASOXGTLWYQD1FS
|
||||
zoho.clientsecret 1ca70e1ab803b3fed6b1b5e00858c316e2003d289b
|
||||
zoho.organization 884218508
|
||||
zoho.scope ZohoBooks.contacts.ALL,ZohoBooks.invoices.ALL,ZohoBooks.bills.ALL
|
||||
|
||||
```
|
||||
|
||||
# API Dokumentation
|
||||
|
||||
- API Docu: https://www.zoho.com/books/api/v3/introduction/
|
||||
- Authentication: https://www.zoho.com/books/api/v3/oauth/
|
||||
|
||||
# Testumgebung
|
||||
|
||||
https://books.zoho.eu/app/20105697367
|
||||
https://accounts.zoho.eu/home#
|
||||
|
||||
Base API URI= https://accounts.zoho.eu/
|
||||
|
||||
# AGL Organisation
|
||||
|
||||
https://api-console.zoho.com
|
||||
|
||||
info@imixs.com
|
||||
password imixs4zoho
|
||||
|
|
@ -41,8 +41,8 @@ services:
|
|||
WORKFLOW_SERVICE_USER: "admin"
|
||||
WORKFLOW_SERVICE_PASSWORD: "adminadmin"
|
||||
|
||||
LLM_SERVICE_ENDPOINT_USER: "admin"
|
||||
LLM_SERVICE_ENDPOINT_PASSWORD: "imixs4.null"
|
||||
# LLM Integration
|
||||
LLM_CONFIG_FILE: /opt/jboss/imixs-llm.xml
|
||||
|
||||
# KSeF - Polen Test
|
||||
KSEF_API_NIP: "9552521552"
|
||||
|
|
@ -57,6 +57,7 @@ services:
|
|||
- "8787:8787"
|
||||
volumes:
|
||||
- ./docker/deployments:/opt/jboss/wildfly/standalone/deployments/
|
||||
- ./docker/keys/imixs-llm.xml:/opt/jboss/imixs-llm.xml
|
||||
- ./docker/transfer:/opt/jboss/wildfly/transfer/
|
||||
|
||||
###############################################
|
||||
|
|
|
|||
11
hotdeploy.sh
11
hotdeploy.sh
|
|
@ -1,11 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
############################################################
|
||||
# Setup hotdeploy
|
||||
#
|
||||
############################################################
|
||||
|
||||
cd office-alexander-logistics-app
|
||||
mvn manik-hotdeploy:hotdeploy
|
||||
|
||||
cd ..
|
||||
1
office-alexander-logistics-app/.gitignore
vendored
1
office-alexander-logistics-app/.gitignore
vendored
|
|
@ -1 +0,0 @@
|
|||
/target/
|
||||
|
|
@ -1,430 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>office-alexander-logistics</artifactId>
|
||||
<groupId>com.alexander-logistics</groupId>
|
||||
<version>1.3.6</version>
|
||||
</parent>
|
||||
<artifactId>office-alexander-logistics-app</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>Imixs Office Workflow App</name>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>docker</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<exec executable="docker">
|
||||
<arg value="build" />
|
||||
<arg value="-t" />
|
||||
<arg value="imixs/${imixs-office.applicationname}" />
|
||||
<arg value="../." />
|
||||
</exec>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>debug</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<exec executable="docker">
|
||||
<arg value="build" />
|
||||
<arg value="-f" />
|
||||
<arg value="../Dockerfile-wildfly-debug" />
|
||||
<arg value="-t" />
|
||||
<arg value="imixs/${imixs-office.applicationname}" />
|
||||
<arg value="../." />
|
||||
</exec>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>kubernetes</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<exec executable="docker">
|
||||
<arg value="build" />
|
||||
<arg value="-t" />
|
||||
<arg
|
||||
value="imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
<arg value="../." />
|
||||
</exec>
|
||||
<exec executable="docker">
|
||||
<arg value="tag" />
|
||||
<arg
|
||||
value="imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
<arg
|
||||
value="${org.imixs.kubernetes.registry}/imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
</exec>
|
||||
<exec executable="docker">
|
||||
<arg value="push" />
|
||||
<arg
|
||||
value="${org.imixs.kubernetes.registry}/imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
</exec>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<build>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>${basedir}/../reports</directory>
|
||||
</testResource>
|
||||
<testResource>
|
||||
<directory>${basedir}/../workflow</directory>
|
||||
</testResource>
|
||||
<testResource>
|
||||
<directory>${basedir}/src/test/resources</directory>
|
||||
</testResource>
|
||||
</testResources>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>3.3.2</version>
|
||||
<configuration>
|
||||
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||||
<webResources>
|
||||
<resource>
|
||||
<filtering>true</filtering>
|
||||
<!-- this is relative to the pom.xml directory -->
|
||||
<directory>${custom.webResources}</directory>
|
||||
<includes>
|
||||
<include>**/WEB-INF/*</include>
|
||||
<!-- include any other file types you want to filter -->
|
||||
</includes>
|
||||
</resource>
|
||||
</webResources>
|
||||
<workDirectory>target/overlay-war-folder</workDirectory>
|
||||
<!-- We exclude libs form the parent WAR artifact -->
|
||||
<overlays>
|
||||
<overlay>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<excludes>
|
||||
<exclude>WEB-INF/lib/*.jar</exclude>
|
||||
</excludes>
|
||||
</overlay>
|
||||
</overlays>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.imixs.maven</groupId>
|
||||
<artifactId>manik-hotdeploy-maven-plugin</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>deploy</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<!-- List Source and Target folders for Autodeploy and Hotdeploy -->
|
||||
<autodeployments>
|
||||
<deployment>
|
||||
<!-- wildcard deployment -->
|
||||
<source>target/*.{war,ear,jar}</source>
|
||||
<target>../docker/deployments/</target>
|
||||
<unpack>true</unpack>
|
||||
</deployment>
|
||||
</autodeployments>
|
||||
<hotdeployments>
|
||||
<deployment>
|
||||
<source>src/main/webapp</source>
|
||||
<target>../docker/deployments/office-alexander-logistics.war</target>
|
||||
</deployment>
|
||||
</hotdeployments>
|
||||
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
<dependencies>
|
||||
<!-- Imixs Workflow -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-core</artifactId>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-engine</artifactId>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-jax-rs</artifactId>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-faces</artifactId>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-index-lucene</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Marty -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-marty</artifactId>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs-Office-Workflow -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-util</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs-Archive -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-archive-api</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Imixs Data -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-groups</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-views</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-documents</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-importer</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- SEPA Adapter -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-sepa</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<!-- DATEV Adapter -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-datev</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<!-- QR Code -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-qrcode</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<!-- POI Adapter -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-poi</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-ai-workflow</artifactId>
|
||||
<version>${org.imixs.ai.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- E-Invoice -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.util</groupId>
|
||||
<artifactId>imixs-e-invoice</artifactId>
|
||||
<version>${org.imixs.e-invoice.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- xsl 2.0 support for Reporting / Chart Diagrams -->
|
||||
<dependency>
|
||||
<groupId>net.sf.saxon</groupId>
|
||||
<artifactId>Saxon-HE</artifactId>
|
||||
</dependency>
|
||||
<!-- Apache PDFBox -->
|
||||
<dependency>
|
||||
<groupId>org.apache.pdfbox</groupId>
|
||||
<artifactId>pdfbox</artifactId>
|
||||
<version>${apache.pdfbox.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Apache Commons FTP Client -->
|
||||
<dependency>
|
||||
<groupId>commons-net</groupId>
|
||||
<artifactId>commons-net</artifactId>
|
||||
<version>3.6</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Microsoft oauth token -->
|
||||
<dependency>
|
||||
<groupId>com.sun.mail</groupId>
|
||||
<artifactId>javax.mail</artifactId>
|
||||
<version>1.6.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.5.10</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>2.13.3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- JUnit Tests
|
||||
<dependency>
|
||||
<groupId>javax.json</groupId>
|
||||
<artifactId>javax.json-api</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.glassfish</groupId>
|
||||
<artifactId>javax.json</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
-->
|
||||
<!-- JAX-RS 2.0 Test dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jersey.core</groupId>
|
||||
<artifactId>jersey-client</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-rs-client</artifactId>
|
||||
<version>3.3.6</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jersey.inject</groupId>
|
||||
<artifactId>jersey-hk2</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>jakarta.ws.rs</groupId>
|
||||
<artifactId>jakarta.ws.rs-api</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- KSeF 2.0 Client
|
||||
<dependency>
|
||||
<groupId>pl.akmf.ksef-sdk</groupId>
|
||||
<artifactId>ksef-client</artifactId>
|
||||
<version>3.0.4</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
</dependencies>
|
||||
|
||||
<!--
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>github-cirfmf</id>
|
||||
<url>https://maven.pkg.github.com/CIRFMF/ksef-client-java</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
-->
|
||||
</project>
|
||||
|
|
@ -1,181 +0,0 @@
|
|||
package org.imixs.workflow.office.forms;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.faces.data.WorkflowController;
|
||||
|
||||
import jakarta.enterprise.context.ConversationScoped;
|
||||
import jakarta.enterprise.event.Event;
|
||||
import jakarta.inject.Inject;
|
||||
import jakarta.inject.Named;
|
||||
|
||||
/**
|
||||
* The AnalyticController is a conversationScoped controller that provides
|
||||
* values for the analytic-custom parts.
|
||||
* <p>
|
||||
* A custom implementation can react on AnalyticEvent to compute values and
|
||||
* datasets.
|
||||
* <p>
|
||||
* The controller implements a caching mechanism to avoid repeated calls for new
|
||||
* analytic values. If the analytic value is already stored in the current
|
||||
* workitem, no new value will be fired.
|
||||
*
|
||||
*
|
||||
* @author rsoika
|
||||
*
|
||||
*/
|
||||
@Named
|
||||
@ConversationScoped
|
||||
public class AnalyticController implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static Logger logger = Logger.getLogger(AnalyticController.class.getName());
|
||||
|
||||
@Inject
|
||||
protected Event<AnalyticEvent> analyticEvents;
|
||||
|
||||
@Inject
|
||||
protected WorkflowController workflowController;
|
||||
|
||||
/**
|
||||
* Returns a analytic value as a String for a given key.
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
public String getAsString(String key) {
|
||||
ItemCollection analyticData = computeValue(key);
|
||||
return analyticData.getItemValueString("value");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a analytic value as a Json String for a given key.
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
public String getAsJson(String key) {
|
||||
ItemCollection analyticData = computeValue(key);
|
||||
String jsonval = analyticData.getItemValueString("value");
|
||||
if (jsonval == null || jsonval.isEmpty()) {
|
||||
return "null";
|
||||
} else {
|
||||
return jsonval;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a analytic value as a Double for a given key.
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
public double getAsDouble(String key) {
|
||||
ItemCollection analyticData = computeValue(key);
|
||||
return analyticData.getItemValueDouble("value");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the analytic label for a given key
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
public String getLabel(String key) {
|
||||
ItemCollection analyticData = computeValue(key);
|
||||
return analyticData.getItemValueString("label");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the analytic optional link for a given key
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
public String getLink(String key) {
|
||||
ItemCollection analyticData = computeValue(key);
|
||||
return analyticData.getItemValueString("link");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the analytic description for a given key
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
public String getDescription(String key) {
|
||||
ItemCollection analyticData = computeValue(key);
|
||||
return analyticData.getItemValueString("description");
|
||||
}
|
||||
|
||||
/**
|
||||
* Computes an analytic value. The method cache the value in the item key.
|
||||
*
|
||||
* An observer controller is responsible to cache or reset the cached values if
|
||||
* needed.
|
||||
*
|
||||
* @param key
|
||||
* @return
|
||||
*/
|
||||
protected ItemCollection computeValue(String key) {
|
||||
if (workflowController.getWorkitem() != null) {
|
||||
logger.fine("fire analytic event for key '" + key + "'");
|
||||
// Fire the Analytics Event for this key
|
||||
AnalyticEvent event = new AnalyticEvent(key, workflowController.getWorkitem());
|
||||
if (analyticEvents != null) {
|
||||
analyticEvents.fire(event);
|
||||
if (event.getValue() != null) {
|
||||
ItemCollection details = new ItemCollection();
|
||||
details.setItemValue("value", event.getValue());
|
||||
details.setItemValue("label", event.getLabel());
|
||||
details.setItemValue("description", event.getDescription());
|
||||
details.setItemValue("link", event.getLink());
|
||||
// cache result
|
||||
implodeDetails(key, details);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// analytic value is now already cached!
|
||||
return explodeDetails(key);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert the List of ItemCollections back into a List of Map elements
|
||||
*
|
||||
* @param workitem
|
||||
*/
|
||||
@SuppressWarnings({ "rawtypes" })
|
||||
private void implodeDetails(String key, ItemCollection details) {
|
||||
// convert the child ItemCollection elements into a List of Map
|
||||
List<Map> detailsList = new ArrayList<Map>();
|
||||
detailsList.add(details.getAllItems());
|
||||
workflowController.getWorkitem().replaceItemValue(key, detailsList);
|
||||
}
|
||||
|
||||
/**
|
||||
* converts the Map List of a workitem into a List of ItemCollectons
|
||||
*/
|
||||
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||
private ItemCollection explodeDetails(String key) {
|
||||
// convert current list of childItems into ItemCollection elements
|
||||
List<Object> mapOrderItems = workflowController.getWorkitem().getItemValue(key);
|
||||
if (mapOrderItems != null && mapOrderItems.size() > 0) {
|
||||
ItemCollection itemCol = new ItemCollection((Map) mapOrderItems.get(0));
|
||||
return itemCol;
|
||||
}
|
||||
// return empty collection
|
||||
ItemCollection dummy = new ItemCollection();
|
||||
dummy.setItemValue("value", "");
|
||||
dummy.setItemValue("label", "");
|
||||
dummy.setItemValue("description", "No data available");
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
package org.imixs.workflow.office.forms;
|
||||
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
|
||||
/**
|
||||
* An AnalyticEvent is send by the AnalyticController during initialization
|
||||
*/
|
||||
public class AnalyticEvent {
|
||||
|
||||
private String key;
|
||||
private Object value = null;
|
||||
private String label = "";
|
||||
private String description = "";
|
||||
private String link = "";
|
||||
private ItemCollection workitem = null;
|
||||
|
||||
public AnalyticEvent(String key, ItemCollection workitem) {
|
||||
this.key = key;
|
||||
this.workitem = workitem;
|
||||
}
|
||||
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
public void setKey(String key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
public String getLink() {
|
||||
return link;
|
||||
}
|
||||
|
||||
public void setLink(String link) {
|
||||
this.link = link;
|
||||
}
|
||||
|
||||
public ItemCollection getWorkitem() {
|
||||
return workitem;
|
||||
}
|
||||
|
||||
public Object getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(Object value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,173 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* Imixs Workflow Technology
|
||||
* Copyright (C) 2003, 2008 Imixs Software Solutions GmbH,
|
||||
* http://www.imixs.com
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You can receive a copy of the GNU General Public
|
||||
* License at http://www.gnu.org/licenses/gpl.html
|
||||
*
|
||||
* Contributors:
|
||||
* Imixs Software Solutions GmbH - initial API and implementation
|
||||
* Ralph Soika
|
||||
*
|
||||
*******************************************************************************/
|
||||
package org.imixs.workflow.office.forms;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.workflow.dataview.DataViewService;
|
||||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.faces.data.WorkflowController;
|
||||
|
||||
import jakarta.annotation.PostConstruct;
|
||||
import jakarta.enterprise.context.Conversation;
|
||||
import jakarta.enterprise.context.ConversationScoped;
|
||||
import jakarta.faces.context.FacesContext;
|
||||
import jakarta.inject.Inject;
|
||||
import jakarta.inject.Named;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
|
||||
/**
|
||||
* The DataViewFormSectionController provides methods to display a data view in
|
||||
* a custom form section
|
||||
*
|
||||
* @see pages/workitems/sections/dataview.xhtml
|
||||
* @author rsoika
|
||||
* @version 1.0
|
||||
*/
|
||||
|
||||
@Named
|
||||
@ConversationScoped
|
||||
public class DataViewSectionController implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public static final int MAX_SEARCH_RESULT = 1000;
|
||||
public static Logger logger = Logger.getLogger(DataViewSectionController.class.getName());
|
||||
|
||||
@Inject
|
||||
WorkflowController workflowController;
|
||||
|
||||
@Inject
|
||||
private Conversation conversation;
|
||||
|
||||
@Inject
|
||||
DataViewService dataViewService;
|
||||
|
||||
private Map<String, DataViewSectionDataSet> dataSets = null;
|
||||
|
||||
@PostConstruct
|
||||
public void init() {
|
||||
startConversation();
|
||||
dataSets = new HashMap<>();
|
||||
}
|
||||
|
||||
/**
|
||||
* Starts a new conversation
|
||||
*/
|
||||
protected void startConversation() {
|
||||
if (conversation.isTransient()) {
|
||||
conversation.setTimeout(
|
||||
((HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest())
|
||||
.getSession().getMaxInactiveInterval() * 1000);
|
||||
conversation.begin();
|
||||
logger.log(Level.FINEST, "......start new conversation, id={0}",
|
||||
conversation.getId());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a single value from a Option key/value list
|
||||
*
|
||||
* @param options - options
|
||||
* @param key - option key
|
||||
* @return option value
|
||||
*/
|
||||
public String getOptionValue(String options, String key) {
|
||||
// Null checks
|
||||
if (options == null || key == null || options.trim().isEmpty() || key.trim().isEmpty()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// Split options into key/value pairs (separated by semicolon)
|
||||
String[] pairs = options.split(";");
|
||||
|
||||
for (String pair : pairs) {
|
||||
// Split each pair into key and value (separated by equals sign)
|
||||
String[] keyValue = pair.split("=", 2); // Limit to 2 in case value contains "="
|
||||
|
||||
if (keyValue.length == 2) {
|
||||
String currentKey = keyValue[0].trim();
|
||||
String currentValue = keyValue[1].trim();
|
||||
|
||||
// Check if the searched key was found
|
||||
if (key.equals(currentKey)) {
|
||||
return currentValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Key not found
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initializes a new DataViewSectionDataSet based on the given options
|
||||
* (parameter 'name').
|
||||
*
|
||||
* The expected format of the options string is:
|
||||
* <p>
|
||||
* "name=DATAVIEWNAME"
|
||||
* <p>
|
||||
* The method loads the corresponding dataView definition immediately and stores
|
||||
* the dataSet in a local cache.
|
||||
*
|
||||
* @return view result
|
||||
* @throws QueryException
|
||||
*/
|
||||
public DataViewSectionDataSet loadDataSet(String options) throws QueryException {
|
||||
DataViewSectionDataSet dataSet = dataSets.get(options);
|
||||
// Extract and set dataViewName from options
|
||||
if (dataSet == null) {
|
||||
String _dataViewName = getOptionValue(options, "name");
|
||||
if (_dataViewName != null) {
|
||||
logger.info("...build new dataSet by options: " + options);
|
||||
dataSet = new DataViewSectionDataSet(_dataViewName, workflowController.getWorkitem(), dataViewService);
|
||||
if (dataSet.getDataViewDefinition() != null) {
|
||||
dataSets.put(options, dataSet);
|
||||
}
|
||||
}
|
||||
}
|
||||
return dataSet;
|
||||
}
|
||||
|
||||
public boolean hasDataSet(String options) {
|
||||
DataViewSectionDataSet dataSet = dataSets.get(options);
|
||||
// Extract and set dataViewName from options
|
||||
if (dataSet != null) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// test if view exists..
|
||||
String _dataViewName = getOptionValue(options, "name");
|
||||
if (dataViewService.loadDataViewDefinition(_dataViewName) != null) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,279 +0,0 @@
|
|||
package org.imixs.workflow.office.forms;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.workflow.FileData;
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.dataview.DataViewController;
|
||||
import org.imixs.workflow.dataview.DataViewExportEvent;
|
||||
import org.imixs.workflow.dataview.DataViewPOIHelper;
|
||||
import org.imixs.workflow.dataview.DataViewService;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.exceptions.QueryException;
|
||||
|
||||
public class DataViewSectionDataSet implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public static Logger logger = Logger.getLogger(DataViewSectionController.class.getName());
|
||||
|
||||
List<ItemCollection> data = null;
|
||||
private ItemCollection dataViewDefinition;
|
||||
private String dataViewName;
|
||||
private List<ItemCollection> viewItemDefinitions = null;
|
||||
private String query = null;
|
||||
private boolean endOfList = false;
|
||||
|
||||
private long totalCount = 0;
|
||||
private long totalPages = 0;
|
||||
|
||||
private String sortBy = null;
|
||||
private boolean sortReverse = false;
|
||||
private int pageSize = 10;
|
||||
private int pageIndex = 0;
|
||||
|
||||
private String viewId;
|
||||
|
||||
private DataViewService dataViewService;
|
||||
|
||||
private ItemCollection workitem;
|
||||
|
||||
public DataViewSectionDataSet(String dataViewName, ItemCollection workitem, DataViewService dataViewService) {
|
||||
this.dataViewName = dataViewName;
|
||||
this.workitem = workitem;
|
||||
this.dataViewService = dataViewService;
|
||||
|
||||
// Generate a unique view ID for JSF component identification
|
||||
this.viewId = "dv_" + UUID.randomUUID().toString().replace("-", "");
|
||||
|
||||
dataViewDefinition = dataViewService.loadDataViewDefinition(dataViewName);
|
||||
if (dataViewDefinition == null) {
|
||||
return;
|
||||
}
|
||||
boolean debug = dataViewDefinition.getItemValueBoolean("debug");
|
||||
if (debug) {
|
||||
logger.info("resolve query by dataView '" + dataViewName + "'");
|
||||
}
|
||||
|
||||
// preload the viewItem definitions
|
||||
viewItemDefinitions = this.dataViewService.computeDataViewItemDefinitions(dataViewDefinition);
|
||||
|
||||
// resove query by dataView
|
||||
query = this.dataViewService.parseQuery(dataViewDefinition, this.workitem);
|
||||
sortBy = dataViewDefinition.getItemValueString("sort.by");
|
||||
sortReverse = dataViewDefinition.getItemValueBoolean("sort.reverse");
|
||||
|
||||
loadData();
|
||||
}
|
||||
|
||||
/**
|
||||
* return unique data view id for jsf pages
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getViewId() {
|
||||
return viewId;
|
||||
}
|
||||
|
||||
public void forward() {
|
||||
if (!isEndOfList()) {
|
||||
pageIndex++;
|
||||
loadData();
|
||||
}
|
||||
}
|
||||
|
||||
public void back() {
|
||||
if (pageIndex > 0) {
|
||||
pageIndex--;
|
||||
loadData();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* load current page
|
||||
*/
|
||||
private void loadData() {
|
||||
try {
|
||||
data = dataViewService.getWorkflowService().getDocumentService().find(query, getPageSize(), getPageIndex(),
|
||||
getSortBy(), isSortReverse());
|
||||
|
||||
// The end of a list is reached when the size is below or equal the
|
||||
// pageSize. See issue #287
|
||||
totalCount = dataViewService.getWorkflowService().getDocumentService().count(query);
|
||||
totalPages = (long) Math.ceil((double) totalCount / pageSize);
|
||||
|
||||
if (data.size() < pageSize) {
|
||||
setEndOfList(true);
|
||||
} else {
|
||||
// look ahead if we have more entries...
|
||||
int iAhead = (getPageSize() * (getPageIndex() + 1)) + 1;
|
||||
if (totalCount < iAhead) {
|
||||
// there is no more data
|
||||
setEndOfList(true);
|
||||
} else {
|
||||
setEndOfList(false);
|
||||
}
|
||||
}
|
||||
} catch (QueryException e) {
|
||||
logger.warning("Failed to load data: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public List<ItemCollection> getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public ItemCollection getDataViewDefinition() {
|
||||
return dataViewDefinition;
|
||||
}
|
||||
|
||||
public long getTotalCount() {
|
||||
return totalCount;
|
||||
}
|
||||
|
||||
public long getTotalPages() {
|
||||
return totalPages;
|
||||
}
|
||||
|
||||
public int getPageIndex() {
|
||||
return pageIndex;
|
||||
}
|
||||
|
||||
public void setPageIndex(int pageIndex) {
|
||||
this.pageIndex = pageIndex;
|
||||
}
|
||||
|
||||
public boolean isEndOfList() {
|
||||
return endOfList;
|
||||
}
|
||||
|
||||
public void setEndOfList(boolean endOfList) {
|
||||
this.endOfList = endOfList;
|
||||
}
|
||||
|
||||
public String getDataViewName() {
|
||||
return dataViewName;
|
||||
}
|
||||
|
||||
public List<ItemCollection> getViewItemDefinitions() {
|
||||
return viewItemDefinitions;
|
||||
}
|
||||
|
||||
/**
|
||||
* returns the maximum size of a search result
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* set the maximum size of a search result
|
||||
*
|
||||
* @param searchCount
|
||||
*/
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public String getSortBy() {
|
||||
return sortBy;
|
||||
}
|
||||
|
||||
public void setSortBy(String sortBy) {
|
||||
this.sortBy = sortBy;
|
||||
}
|
||||
|
||||
public boolean isSortReverse() {
|
||||
return sortReverse;
|
||||
}
|
||||
|
||||
public void setSortReverse(boolean sortReverse) {
|
||||
this.sortReverse = sortReverse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Exports data into a excel template processed by apache-poi. The method sends
|
||||
* a DataViewExport event to allow clients to adapt the export process.
|
||||
*
|
||||
* @see DataViewExportEvent
|
||||
*
|
||||
* @throws PluginException
|
||||
* @throws QueryException
|
||||
*/
|
||||
public String export() throws PluginException, QueryException {
|
||||
|
||||
// Build target filename
|
||||
boolean debug = dataViewDefinition.getItemValueBoolean("debug");
|
||||
|
||||
// start export
|
||||
if (debug) {
|
||||
logger.info("│ ├── Query: " + query);
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
// test if query exceeds max count
|
||||
int totalCount = dataViewService.getWorkflowService().getDocumentService().count(query);
|
||||
// start export
|
||||
if (debug) {
|
||||
logger.info("│ ├── Count: " + totalCount);
|
||||
}
|
||||
if (totalCount > DataViewService.MAX_ROWS) {
|
||||
throw new PluginException(DataViewController.class.getSimpleName(), DataViewService.ERROR_CONFIG,
|
||||
"Data can not be exported into Excel because dataset exceeds " + DataViewService.MAX_ROWS
|
||||
+ " rows!");
|
||||
}
|
||||
String sortBy = dataViewDefinition.getItemValueString("sort.by");
|
||||
if (sortBy.isEmpty()) {
|
||||
sortBy = "$modified"; // default
|
||||
}
|
||||
List<ItemCollection> workitems = dataViewService.getWorkflowService().getDocumentService().find(query,
|
||||
DataViewService.MAX_ROWS, 0, sortBy,
|
||||
dataViewDefinition.getItemValueBoolean("sort.reverse"));
|
||||
|
||||
FileData fileDataExport = dataViewService.poiExport(workitems, dataViewDefinition, viewItemDefinitions);
|
||||
|
||||
// create a temp event
|
||||
ItemCollection event = new ItemCollection().setItemValue("txtActivityResult",
|
||||
dataViewDefinition.getItemValue("poi.update"));
|
||||
ItemCollection poiConfig = dataViewService.getWorkflowService().evalWorkflowResult(event, "poi-update",
|
||||
dataViewDefinition,
|
||||
false);
|
||||
|
||||
// merge workitem fields (Workaround because custom forms did hard coded map to
|
||||
// workflowController instead of workitem
|
||||
|
||||
DataViewPOIHelper.poiUpdate(workitem, fileDataExport, poiConfig, dataViewService.getWorkflowService());
|
||||
|
||||
if (debug) {
|
||||
logger.info("├── POI Export completed!");
|
||||
}
|
||||
// See:
|
||||
// https://stackoverflow.com/questions/9391838/how-to-provide-a-file-download-from-a-jsf-backing-bean
|
||||
DataViewPOIHelper.downloadExcelFile(fileDataExport);
|
||||
} catch (IOException | QueryException e) {
|
||||
throw new PluginException(DataViewController.class.getSimpleName(), DataViewService.ERROR_CONFIG,
|
||||
"Failed to generate Excel Export: " + e.getMessage());
|
||||
}
|
||||
|
||||
// return "/pages/admin/excel_export_rechnungsausgang.jsf?faces-redirect=true";
|
||||
return "";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if a poi export is defined
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public boolean hasPoiExport() {
|
||||
if (dataViewDefinition != null && !dataViewDefinition.getItemValueString("poi.targetfilename").isBlank()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,139 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>office-alexander-logistics</artifactId>
|
||||
<groupId>com.alexander-logistics</groupId>
|
||||
<version>1.3.6</version>
|
||||
</parent>
|
||||
<artifactId>office-alexander-logistics-testclient</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Imixs Office Workflow Remote Test Client</name>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<!-- enable resource filtering for multi language version -->
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<!-- use JDK settings for compiling -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.11.0</version>
|
||||
<configuration>
|
||||
<source>11</source>
|
||||
<target>11</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>3.3.1</version>
|
||||
<configuration>
|
||||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
<!-- Testing JUnit 5 -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>3.1.2</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
<finalName>imixs-process-manager</finalName>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<!-- JEE Dependencies -->
|
||||
<dependency>
|
||||
<groupId>jakarta.platform</groupId>
|
||||
<artifactId>jakarta.jakartaee-api</artifactId>
|
||||
<version>10.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Imixs Workflow -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-core</artifactId>
|
||||
<version>${org.imixs.workflow.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-melman</artifactId>
|
||||
<version>${org.imixs.melman.version}</version>
|
||||
</dependency>
|
||||
<!-- JUnit 5 Dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>${junit.jupiter.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<version>${junit.jupiter.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<!-- Mockito Dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>${mockito.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-junit-jupiter</artifactId>
|
||||
<version>${mockito.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<!-- Test dependencies -->
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.bind</groupId>
|
||||
<artifactId>jakarta.xml.bind-api</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.parsson</groupId>
|
||||
<artifactId>jakarta.json</artifactId>
|
||||
<version>1.1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jaxb</groupId>
|
||||
<artifactId>jaxb-runtime</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jersey.media</groupId>
|
||||
<artifactId>jersey-media-jaxb</artifactId>
|
||||
<version>3.1.5</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jersey.core</groupId>
|
||||
<artifactId>jersey-client</artifactId>
|
||||
<version>3.1.5</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
@ -1,105 +0,0 @@
|
|||
package com.alexanderlogistics.rest;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.melman.EventLogClient;
|
||||
import org.imixs.melman.FormAuthenticator;
|
||||
import org.imixs.melman.RestAPIException;
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* A test to explore a corgosoft invoice event
|
||||
*
|
||||
*/
|
||||
@Disabled
|
||||
public class TestCargosoftEvents {
|
||||
|
||||
private static Logger logger = Logger.getLogger(TestCargosoftEvents.class.getName());
|
||||
|
||||
EventLogClient client = null;
|
||||
|
||||
String restAPI = "https://test.alexander-logistics.office-workflow.de/api";
|
||||
// String restAPI = "http://localhost:8080/api";
|
||||
String userID = "kutzner-service";
|
||||
String password = "imixs";
|
||||
|
||||
/**
|
||||
* Setup a new Rest Client
|
||||
*
|
||||
* @throws PluginException
|
||||
*/
|
||||
@BeforeEach
|
||||
public void setup() throws PluginException {
|
||||
|
||||
client = new EventLogClient(restAPI);
|
||||
FormAuthenticator aut;
|
||||
try {
|
||||
aut = new FormAuthenticator(restAPI, userID, password);
|
||||
client.registerClientRequestFilter(aut);
|
||||
} catch (RestAPIException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@Test
|
||||
public void getXMLData() {
|
||||
logger.info("start...");
|
||||
try {
|
||||
List<ItemCollection> list = client.searchEventLog("TOPIC_CARGOSOFT_INVOICE");
|
||||
logger.info("found " + list.size() + " log entries");
|
||||
for (ItemCollection entry : list) {
|
||||
List<?> dataList = entry.getItemValue("data");
|
||||
if (dataList != null && dataList.size() > 0) {
|
||||
ItemCollection data = new ItemCollection((Map<String, List<Object>>) dataList.get(0));
|
||||
logger.info("Data=" + data.getItemValueString("some-data"));
|
||||
logger.info("XML Data=" + data.getItemValueString("xml-data"));
|
||||
}
|
||||
}
|
||||
} catch (RestAPIException e) {
|
||||
logger.severe("Failed to read event log entry: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes the 10 last topics
|
||||
*/
|
||||
@Test
|
||||
public void deleteXMLData() {
|
||||
logger.info("start...");
|
||||
int count = 0;
|
||||
try {
|
||||
client.setPageSize(1000);
|
||||
List<ItemCollection> list = client.searchEventLog("topictest", "TOPIC_CARGOSOFT_INVOICE");
|
||||
// List<ItemCollection> list = client.searchEventLog("");
|
||||
|
||||
logger.info("found " + list.size() + " log entries");
|
||||
for (ItemCollection entry : list) {
|
||||
String id = entry.getItemValueString("id");
|
||||
logger.info("delete event log entry id=" + id);
|
||||
client.deleteEventLogEntry(id);
|
||||
|
||||
count++;
|
||||
if (count >= 635000) {
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
logger.info(count + " log entries deleted");
|
||||
} catch (
|
||||
|
||||
RestAPIException e) {
|
||||
logger.severe("Failed to read event log entry: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,101 +0,0 @@
|
|||
package com.alexanderlogistics.rest;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.melman.EventLogClient;
|
||||
import org.imixs.melman.FormAuthenticator;
|
||||
import org.imixs.melman.RestAPIException;
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.WorkflowKernel;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* A simple example how to create a new event log entry remote.
|
||||
*
|
||||
*/
|
||||
@Disabled
|
||||
public class TestEventLog {
|
||||
|
||||
private static Logger logger = Logger.getLogger(TestEventLog.class.getName());
|
||||
|
||||
EventLogClient client = null;
|
||||
|
||||
// String restAPI = "https://test.alexander-logistics.office-workflow.de/api";
|
||||
String restAPI = "http://localhost:8080/api";
|
||||
String userID = "kutzner-service";
|
||||
String password = "imixs";
|
||||
|
||||
/**
|
||||
* Setup a new Rest Client
|
||||
*
|
||||
* @throws PluginException
|
||||
*/
|
||||
@BeforeEach
|
||||
public void setup() throws PluginException {
|
||||
|
||||
client = new EventLogClient(restAPI);
|
||||
FormAuthenticator aut;
|
||||
try {
|
||||
aut = new FormAuthenticator(restAPI, userID, password);
|
||||
client.registerClientRequestFilter(aut);
|
||||
} catch (RestAPIException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an event log entry....
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void sendXMLData() {
|
||||
|
||||
logger.info("start...");
|
||||
ItemCollection payLoad = new ItemCollection();
|
||||
String uid = WorkflowKernel.generateUniqueID();
|
||||
try {
|
||||
// set data....
|
||||
payLoad.setItemValue("some-data", "abc");
|
||||
String xmlString = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
+ "<Invoices>"
|
||||
+ " <InvoiceHeader>"
|
||||
+ " <InvoiceNumber>224225</InvoiceNumber>"
|
||||
+ " </InvoiceHeader>"
|
||||
+ " </Invoices>";
|
||||
payLoad.setItemValue("xml-data", xmlString);
|
||||
|
||||
client.createEventLogEntry("TOPIC_CARGOSOFT_INVOICE", uid, payLoad);
|
||||
logger.info("completed");
|
||||
} catch (RestAPIException e) {
|
||||
logger.severe("Failed to send event log entry: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getXMLData() {
|
||||
logger.info("start...");
|
||||
try {
|
||||
List<ItemCollection> list = client.searchEventLog("TOPIC_CARGOSOFT_INVOICE");
|
||||
logger.info("found " + list.size() + " log entries");
|
||||
for (ItemCollection entry : list) {
|
||||
List<?> dataList = entry.getItemValue("data");
|
||||
if (dataList != null && dataList.size() > 0) {
|
||||
ItemCollection data = new ItemCollection((Map<String, List<Object>>) dataList.get(0));
|
||||
logger.info("Data=" + data.getItemValueString("some-data"));
|
||||
logger.info("XML Data=" + data.getItemValueString("xml-data"));
|
||||
}
|
||||
}
|
||||
} catch (RestAPIException e) {
|
||||
logger.severe("Failed to read event log entry: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
package com.alexanderlogistics.rest;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.fail;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.melman.FormAuthenticator;
|
||||
import org.imixs.melman.RestAPIException;
|
||||
import org.imixs.melman.WorkflowClient;
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.xml.XMLDataCollectionAdapter;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import jakarta.xml.bind.JAXBException;
|
||||
|
||||
/**
|
||||
* A simple example how to send an invoice document remote.
|
||||
*
|
||||
*/
|
||||
@Disabled
|
||||
public class TestSendInvoice {
|
||||
|
||||
private static Logger logger = Logger.getLogger(TestSendInvoice.class.getName());
|
||||
|
||||
WorkflowClient client = null;
|
||||
|
||||
// String restAPI = "https://test.alexander-logistics.office-workflow.de/api";
|
||||
String restAPI = "http://localhost:8080/api";
|
||||
String userID = "kutzner-service";
|
||||
String password = "imixs";
|
||||
|
||||
/**
|
||||
* Setup a new Rest Client
|
||||
*
|
||||
* @throws PluginException
|
||||
*/
|
||||
@BeforeEach
|
||||
public void setup() throws PluginException {
|
||||
|
||||
client = new WorkflowClient(restAPI);
|
||||
FormAuthenticator aut;
|
||||
try {
|
||||
aut = new FormAuthenticator(restAPI, userID, password);
|
||||
client.registerClientRequestFilter(aut);
|
||||
} catch (RestAPIException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an event log entry....
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void sendXMLData() {
|
||||
|
||||
logger.info("send invoice...");
|
||||
ItemCollection payLoad = new ItemCollection();
|
||||
ItemCollection result = null;
|
||||
try {
|
||||
// read test data
|
||||
List<ItemCollection> col = null;
|
||||
// read default content
|
||||
|
||||
col = XMLDataCollectionAdapter
|
||||
.readCollectionFromInputStream(getClass().getResourceAsStream("/invoice-01.xml"));
|
||||
assertEquals(1, col.size());
|
||||
// set invoice data....
|
||||
// XMLDataCollection result = client.postXMLDocument("workflow/workitem",
|
||||
// XMLDocumentAdapter.getDocument(col.get(0)));
|
||||
result = client.processWorkitem(col.get(0));
|
||||
|
||||
logger.info("completed");
|
||||
} catch (RestAPIException | JAXBException | IOException e) {
|
||||
logger.severe("Failed to send event log entry: " + e.getMessage());
|
||||
|
||||
fail(e);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,187 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<document>
|
||||
<!-- Workflow -->
|
||||
<item name="type">
|
||||
<value xsi:type="xs:string">workitem</value>
|
||||
</item>
|
||||
<item name="$workflowgroup">
|
||||
<value xsi:type="xs:string">Rechnungsausgang</value>
|
||||
</item>
|
||||
<item name="$taskid">
|
||||
<value xsi:type="xs:int">5001</value>
|
||||
</item>
|
||||
<item name="$eventid">
|
||||
<value xsi:type="xs:int">980</value>
|
||||
</item>
|
||||
|
||||
<!-- Dateianhänge -->
|
||||
<item name="$file">
|
||||
<value xsi:type="xmlItemArray">
|
||||
<item name="001_245956_250901_R.pdf">
|
||||
<value xsi:type="xs:string">application/pdf</value>
|
||||
<value xsi:type="xs:base64Binary">
|
||||
JVBERi0xLjMgCiXi48............................
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</item>
|
||||
|
||||
<!-- Rechnungspositionen -->
|
||||
<item name="_childitems">
|
||||
<value xsi:type="xmlItemArray">
|
||||
<item name="billingcode">
|
||||
<value xsi:type="xs:string">NACHL40</value>
|
||||
</item>
|
||||
<item name="datev.wkz">
|
||||
<value xsi:type="xs:string">EUR</value>
|
||||
</item>
|
||||
<item name="datev.umsatz">
|
||||
<value xsi:type="xs:double">252.84</value>
|
||||
</item>
|
||||
<item name="billingtext">
|
||||
<value xsi:type="xs:string">Container transport from port</value>
|
||||
<value xsi:type="xs:string">to warehouse in Antwerp</value>
|
||||
</item>
|
||||
<item name="datev.shzeichen">
|
||||
<value xsi:type="xs:string">H</value>
|
||||
</item>
|
||||
<item name="category">
|
||||
<value xsi:type="xs:string">SEE</value>
|
||||
</item>
|
||||
<item name="datev.text">
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
</item>
|
||||
</value>
|
||||
<value xsi:type="xmlItemArray">
|
||||
<item name="billingcode">
|
||||
<value xsi:type="xs:string">FC</value>
|
||||
</item>
|
||||
<item name="datev.wkz">
|
||||
<value xsi:type="xs:string">EUR</value>
|
||||
</item>
|
||||
<item name="datev.umsatz">
|
||||
<value xsi:type="xs:double">22.38</value>
|
||||
</item>
|
||||
<item name="billingtext">
|
||||
<value xsi:type="xs:string">Fuel Charge as per fuel floater August</value>
|
||||
<value xsi:type="xs:string">2025</value>
|
||||
</item>
|
||||
<item name="datev.shzeichen">
|
||||
<value xsi:type="xs:string">H</value>
|
||||
</item>
|
||||
<item name="category">
|
||||
<value xsi:type="xs:string">DIESEL</value>
|
||||
</item>
|
||||
<item name="datev.text">
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
</item>
|
||||
</value>
|
||||
<value xsi:type="xmlItemArray">
|
||||
<item name="billingcode">
|
||||
<value xsi:type="xs:string">ZOLLABF</value>
|
||||
</item>
|
||||
<item name="datev.wkz">
|
||||
<value xsi:type="xs:string">EUR</value>
|
||||
</item>
|
||||
<item name="datev.umsatz">
|
||||
<value xsi:type="xs:double">16.2</value>
|
||||
</item>
|
||||
<item name="billingtext">
|
||||
<value xsi:type="xs:string">custom clearance fiscal representation</value>
|
||||
<value xsi:type="xs:string">VAT reporting</value>
|
||||
</item>
|
||||
<item name="datev.shzeichen">
|
||||
<value xsi:type="xs:string">H</value>
|
||||
</item>
|
||||
<item name="category">
|
||||
<value xsi:type="xs:string">SEE</value>
|
||||
</item>
|
||||
<item name="datev.text">
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
</item>
|
||||
</value>
|
||||
|
||||
</item>
|
||||
|
||||
|
||||
<!-- Fachdaten -->
|
||||
<item name="dbtr.name">
|
||||
<value xsi:type="xs:string">Graphic Packaging International (NL)</value>
|
||||
</item>
|
||||
<item name="dbtr.number">
|
||||
<value xsi:type="xs:string">D12495</value>
|
||||
</item>
|
||||
<item name="invoice.base.amount">
|
||||
<value xsi:type="xs:double">0.0</value>
|
||||
</item>
|
||||
<item name="invoice.bookingperiod">
|
||||
<value xsi:type="xs:string">202508</value>
|
||||
</item>
|
||||
<item name="invoice.costunit">
|
||||
<value xsi:type="xs:string">IM-ZEL</value>
|
||||
</item>
|
||||
<item name="invoice.country">
|
||||
<value xsi:type="xs:string" />
|
||||
</item>
|
||||
<item name="invoice.currency">
|
||||
<value xsi:type="xs:string">EUR</value>
|
||||
</item>
|
||||
<item name="invoice.date">
|
||||
<value xsi:type="xs:dateTime">2025-09-01T00:00:00+02:00</value>
|
||||
</item>
|
||||
<item name="invoice.duedate">
|
||||
<value xsi:type="xs:dateTime">2025-10-16T00:00:00+02:00</value>
|
||||
</item>
|
||||
<item name="invoice.language">
|
||||
<value xsi:type="xs:string">EN</value>
|
||||
</item>
|
||||
<item name="invoice.number">
|
||||
<value xsi:type="xs:string">245956</value>
|
||||
</item>
|
||||
<item name="invoice.positions">
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
</item>
|
||||
<item name="invoice.rate">
|
||||
<value xsi:type="xs:double">0.0</value>
|
||||
</item>
|
||||
<item name="invoice.reminder">
|
||||
<value xsi:type="xs:dateTime">2025-10-16T00:00:00+02:00</value>
|
||||
</item>
|
||||
<item name="invoice.saldo">
|
||||
<value xsi:type="xs:double">469.07</value>
|
||||
</item>
|
||||
<item name="invoice.text">
|
||||
<value xsi:type="xs:string">LA-PAP-2508-012</value>
|
||||
</item>
|
||||
<item name="invoice.total">
|
||||
<value xsi:type="xs:double">469.07</value>
|
||||
</item>
|
||||
<item name="invoice.total.net">
|
||||
<value xsi:type="xs:double">469.07</value>
|
||||
</item>
|
||||
<item name="invoice.total.tax">
|
||||
<value xsi:type="xs:double">0.0</value>
|
||||
</item>
|
||||
<item name="invoice.type">
|
||||
<value xsi:type="xs:string">R</value>
|
||||
</item>
|
||||
<item name="invoice.type.description">
|
||||
<value xsi:type="xs:string">Ausgangsrechnung</value>
|
||||
</item>
|
||||
<item name="invoice.vatrate">
|
||||
<value xsi:type="xs:double">0.0</value>
|
||||
</item>
|
||||
<item name="mandant.id">
|
||||
<value xsi:type="xs:string">001</value>
|
||||
</item>
|
||||
<item name="payment.term">
|
||||
<value xsi:type="xs:string">10</value>
|
||||
</item>
|
||||
|
||||
|
||||
</document>
|
||||
</data>
|
||||
577
pom.xml
577
pom.xml
|
|
@ -5,40 +5,73 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.alexander-logistics</groupId>
|
||||
<artifactId>office-alexander-logistics</artifactId>
|
||||
<version>1.3.6</version>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.4.0</version>
|
||||
<packaging>war</packaging>
|
||||
<name>Imixs Office Workflow - Custom Build</name>
|
||||
<organization>
|
||||
<name>Imixs Software Solutions GmbH</name>
|
||||
<url>http://www.imixs.com</url>
|
||||
</organization>
|
||||
<inceptionYear>2024</inceptionYear>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>rsoika</id>
|
||||
<name>Ralph Soika</name>
|
||||
<email>ralph.soika@imixs.com</email>
|
||||
<url>http://blog.imixs.org/</url>
|
||||
<organization>Imixs Software Solutions GmbH</organization>
|
||||
<organizationUrl>http://www.imixs.com</organizationUrl>
|
||||
<roles>
|
||||
<role>developer</role>
|
||||
<role>testing</role>
|
||||
</roles>
|
||||
<timezone>2</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>gaheinle</id>
|
||||
<name>Gaby Heinle</name>
|
||||
<email />
|
||||
<url />
|
||||
<organization>Imixs Software Solutions GmbH</organization>
|
||||
<organizationUrl>http://www.imixs.com</organizationUrl>
|
||||
<roles>
|
||||
<role>developer</role>
|
||||
<role>testing</role>
|
||||
</roles>
|
||||
<timezone>2</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<modules>
|
||||
<module>office-alexander-logistics-app</module>
|
||||
<module>office-alexander-logistics-testclient</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
<java.source>11</java.source>
|
||||
<java.target>11</java.target>
|
||||
<java.source>17</java.source>
|
||||
<java.target>17</java.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
|
||||
<!-- Wildfly -->
|
||||
<custom.webResources>src/main/webapp</custom.webResources>
|
||||
<custom.unpackTypes>war</custom.unpackTypes>
|
||||
|
||||
<!-- Build Time -->
|
||||
<org.imixs.build.timestamp>${maven.build.timestamp}</org.imixs.build.timestamp>
|
||||
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
|
||||
|
||||
<!-- Dependency Versions -->
|
||||
<jakarta.version>10.0.0</jakarta.version>
|
||||
<org.imixs.office.version>5.0.5</org.imixs.office.version>
|
||||
<org.imixs.workflow.version>6.0.9</org.imixs.workflow.version>
|
||||
<org.imixs.marty.version>5.0.0</org.imixs.marty.version>
|
||||
<org.imixs.archive.version>3.1.3</org.imixs.archive.version>
|
||||
<org.imixs.adapters.version>3.0.3</org.imixs.adapters.version>
|
||||
<org.imixs.melman.version>2.1.1</org.imixs.melman.version>
|
||||
<org.imixs.data.version>1.0.3</org.imixs.data.version>
|
||||
<org.imixs.e-invoice.version>1.0.3-SNAPSHOT</org.imixs.e-invoice.version>
|
||||
<microprofile.version>6.0</microprofile.version>
|
||||
<org.imixs.office.version>5.1.9-SNAPSHOT</org.imixs.office.version>
|
||||
<org.imixs.workflow.version>6.2.8-SNAPSHOT</org.imixs.workflow.version>
|
||||
<org.imixs.marty.version>5.2.0</org.imixs.marty.version>
|
||||
<org.imixs.e-invoice.version>1.0.3-SNAPSHOT</org.imixs.e-invoice.version>
|
||||
<org.imixs.adapter.version>3.2.4-SNAPSHOT</org.imixs.adapter.version>
|
||||
<org.imixs.data.version>1.0.4-SNAPSHOT</org.imixs.data.version>
|
||||
|
||||
<apache.poi.version>4.0.0</apache.poi.version>
|
||||
<net.sf.saxon.version>9.9.1-4</net.sf.saxon.version>
|
||||
<apache.pdfbox.version>2.0.26</apache.pdfbox.version>
|
||||
<apache.pdfbox.version>2.0.24</apache.pdfbox.version>
|
||||
<!-- -->
|
||||
<org.imixs.ai.version>1.1.1</org.imixs.ai.version>
|
||||
<org.imixs.ai.version>1.1.9-SNAPSHOT</org.imixs.ai.version>
|
||||
<custom.webResources>src/main/webapp</custom.webResources>
|
||||
|
||||
<!-- test dependencies -->
|
||||
|
|
@ -56,6 +89,7 @@
|
|||
|
||||
<!-- Wildfly unpack war -->
|
||||
<custom.unpackTypes>war</custom.unpackTypes>
|
||||
<jakarta.faces.project_stage>Production</jakarta.faces.project_stage>
|
||||
|
||||
<!-- jndi Mail res-ref name -->
|
||||
<imixs-mail-res-ref-name>java:/mail/org.imixs.workflow.mail</imixs-mail-res-ref-name>
|
||||
|
|
@ -67,9 +101,9 @@
|
|||
<repositories>
|
||||
<!-- Sonatype Snapshot repository -->
|
||||
<repository>
|
||||
<id>sonatype-snaptshots</id>
|
||||
<name>Sonatype Snapshot repository</name>
|
||||
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
<id>central-portal-snapshots</id>
|
||||
<name>Central Portal Snapshots</name>
|
||||
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
|
|
@ -82,19 +116,114 @@
|
|||
<profiles>
|
||||
<profile>
|
||||
<id>docker</id>
|
||||
<!-- build latest - see ear module for details -->
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<exec executable="docker">
|
||||
<arg value="build" />
|
||||
<arg value="-t" />
|
||||
<arg value="imixs/${imixs-office.applicationname}" />
|
||||
<arg value="./" />
|
||||
</exec>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>debug</id>
|
||||
<!-- build latest - see ear module for details -->
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<exec executable="docker">
|
||||
<arg value="build" />
|
||||
<arg value="-f" />
|
||||
<arg value="./Dockerfile-debug" />
|
||||
<arg value="-t" />
|
||||
<arg value="imixs/${imixs-office.applicationname}" />
|
||||
<arg value="./." />
|
||||
</exec>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>kubernetes</id>
|
||||
<!-- build and push to rep - see ear module for details -->
|
||||
<id>imixs-cloud</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>install</phase>
|
||||
<configuration>
|
||||
<target>
|
||||
<exec executable="docker">
|
||||
<arg value="build" />
|
||||
<arg value="-t" />
|
||||
<arg
|
||||
value="imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
<arg value="./." />
|
||||
</exec>
|
||||
<exec executable="docker">
|
||||
<arg value="tag" />
|
||||
<arg
|
||||
value="imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
<arg
|
||||
value="${org.imixs.kubernetes.registry}/imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
</exec>
|
||||
<exec executable="docker">
|
||||
<arg value="push" />
|
||||
<arg
|
||||
value="${org.imixs.kubernetes.registry}/imixs/${imixs-office.applicationname}:${project.version}" />
|
||||
</exec>
|
||||
</target>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<!-- enable resource filtering for multi language version -->
|
||||
|
|
@ -103,7 +232,21 @@
|
|||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>${basedir}/./reports</directory>
|
||||
</testResource>
|
||||
<testResource>
|
||||
<directory>${basedir}/./workflow</directory>
|
||||
</testResource>
|
||||
<testResource>
|
||||
<directory>${basedir}/src/test/resources</directory>
|
||||
</testResource>
|
||||
</testResources>
|
||||
|
||||
<plugins>
|
||||
|
||||
<!-- use JDK settings for compiling -->
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
|
|
@ -117,8 +260,59 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.22.2</version>
|
||||
<version>3.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-test</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>test</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<argLine>
|
||||
--add-opens java.base/java.lang=ALL-UNNAMED
|
||||
</argLine>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>3.2.0</version>
|
||||
<configuration>
|
||||
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||||
<webResources>
|
||||
<resource>
|
||||
<filtering>true</filtering>
|
||||
<!-- this is relative to the pom.xml directory -->
|
||||
<directory>${custom.webResources}</directory>
|
||||
<includes>
|
||||
<include>**/WEB-INF/*</include>
|
||||
<!-- include any other file types you want to filter -->
|
||||
</includes>
|
||||
</resource>
|
||||
</webResources>
|
||||
|
||||
<!-- We exclude libs form the parent WAR artifact
|
||||
<workDirectory>target/overlay-war-folder</workDirectory>
|
||||
|
||||
<overlays>
|
||||
<overlay>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<excludes>
|
||||
<exclude>WEB-INF/lib/imixs-data-*.jar</exclude>
|
||||
</excludes>
|
||||
</overlay>
|
||||
</overlays>
|
||||
-->
|
||||
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
|
|
@ -128,196 +322,49 @@
|
|||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Imixs Code Formatter and Checkstyle
|
||||
|
||||
<plugin>
|
||||
<groupId>net.revelc.code.formatter</groupId>
|
||||
<artifactId>formatter-maven-plugin</artifactId>
|
||||
<version>2.26.0</version>
|
||||
<configuration>
|
||||
<configFile>
|
||||
https://raw.githubusercontent.com/imixs/imixs-workflow/refs/heads/master/imixs-code-style.xml</configFile>
|
||||
<lineEnding>LF</lineEnding>
|
||||
</configuration>
|
||||
<groupId>org.imixs.maven</groupId>
|
||||
<artifactId>manik-hotdeploy-maven-plugin</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>validate</phase>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>format</goal>
|
||||
<goal>deploy</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<!-- List Source and Target folders for Autodeploy and Hotdeploy -->
|
||||
<autodeployments>
|
||||
<deployment>
|
||||
<!-- wildcard deployment -->
|
||||
<source>target/*.{war,ear,jar}</source>
|
||||
<target>./docker/deployments/</target>
|
||||
<unpack>true</unpack>
|
||||
</deployment>
|
||||
</autodeployments>
|
||||
<hotdeployments>
|
||||
<deployment>
|
||||
<source>src/main/webapp</source>
|
||||
<target>./docker/deployments/${imixs-office.applicationname}.war</target>
|
||||
</deployment>
|
||||
</hotdeployments>
|
||||
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- relase management -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
<configuration>
|
||||
<configLocation>
|
||||
https://raw.githubusercontent.com/imixs/imixs-workflow/master/imixs-checkstyle-8.44.xml</configLocation>
|
||||
<failOnViolation>true</failOnViolation>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
</plugin>
|
||||
-->
|
||||
|
||||
</plugins>
|
||||
|
||||
<finalName>office-alexander-logistics</finalName>
|
||||
</build>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
|
||||
<!-- Imixs Workflow -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-core</artifactId>
|
||||
<version>${org.imixs.workflow.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-engine</artifactId>
|
||||
<version>${org.imixs.workflow.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-faces</artifactId>
|
||||
<version>${org.imixs.workflow.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-jax-rs</artifactId>
|
||||
<version>${org.imixs.workflow.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-workflow-index-lucene</artifactId>
|
||||
<version>${org.imixs.workflow.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Marty -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-marty</artifactId>
|
||||
<version>${org.imixs.marty.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Office Workflow -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<version>${org.imixs.office.version}</version>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-util</artifactId>
|
||||
<version>${org.imixs.office.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- SEPA Adapter -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-sepa</artifactId>
|
||||
<version>${org.imixs.adapters.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- DATEV Adapter -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-datev</artifactId>
|
||||
<version>${org.imixs.adapters.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- QR Code -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-qrcode</artifactId>
|
||||
<version>${org.imixs.adapters.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- POI Adapter -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-poi</artifactId>
|
||||
<version>${org.imixs.adapters.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs-Archive API -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-archive-api</artifactId>
|
||||
<version>${org.imixs.archive.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Imixs AI -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-ai-workflow</artifactId>
|
||||
<version>${org.imixs.ai.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Imixs Data -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-groups</artifactId>
|
||||
<version>${org.imixs.data.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-views</artifactId>
|
||||
<version>${org.imixs.data.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-documents</artifactId>
|
||||
<version>${org.imixs.data.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-importer</artifactId>
|
||||
<version>${org.imixs.data.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Melman Version Management hinzufügen -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-melman</artifactId>
|
||||
<version>${org.imixs.melman.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- xsl 2.0 support for Reporting / Chart Diagrams -->
|
||||
<dependency>
|
||||
<groupId>net.sf.saxon</groupId>
|
||||
<artifactId>Saxon-HE</artifactId>
|
||||
<version>${net.sf.saxon.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- Jakarta EE -->
|
||||
<dependency>
|
||||
|
|
@ -326,8 +373,6 @@
|
|||
<version>${jakarta.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Microprofile -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.microprofile</groupId>
|
||||
|
|
@ -337,6 +382,131 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs-Office-Workflow Overlay -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<type>war</type>
|
||||
<version>${org.imixs.office.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-util</artifactId>
|
||||
<version>${org.imixs.office.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs Data -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-data-importer</artifactId>
|
||||
<version>${org.imixs.data.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.pdfbox</groupId>
|
||||
<artifactId>pdfbox</artifactId>
|
||||
<version>${apache.pdfbox.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs-AI -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-ai-workflow</artifactId>
|
||||
<version>${org.imixs.ai.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-ai-bpmn</artifactId>
|
||||
<version>${org.imixs.ai.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- SEPA -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-sepa</artifactId>
|
||||
<version>${org.imixs.adapter.version}</version>
|
||||
</dependency>
|
||||
<!-- DATEV -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-datev</artifactId>
|
||||
<version>${org.imixs.adapter.version}</version>
|
||||
</dependency>
|
||||
<!-- POI Adapter
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-poi</artifactId>
|
||||
<version>${org.imixs.adapter.version}</version>
|
||||
</dependency>
|
||||
-->
|
||||
<!-- QR Code -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-adapters-qrcode</artifactId>
|
||||
<version>${org.imixs.adapter.version}</version>
|
||||
</dependency>
|
||||
<!-- E-Invoice-->
|
||||
<dependency>
|
||||
<groupId>org.imixs.util</groupId>
|
||||
<artifactId>imixs-e-invoice</artifactId>
|
||||
<version>${org.imixs.e-invoice.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Apache Commons FTP Client -->
|
||||
<dependency>
|
||||
<groupId>commons-net</groupId>
|
||||
<artifactId>commons-net</artifactId>
|
||||
<version>3.6</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Microsoft oauth token -->
|
||||
<dependency>
|
||||
<groupId>com.sun.mail</groupId>
|
||||
<artifactId>javax.mail</artifactId>
|
||||
<version>1.6.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.5.10</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>2.13.3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- JAX-RS 2.0 Test dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jersey.core</groupId>
|
||||
<artifactId>jersey-client</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-rs-client</artifactId>
|
||||
<version>3.3.6</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jersey.inject</groupId>
|
||||
<artifactId>jersey-hk2</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>jakarta.ws.rs</groupId>
|
||||
<artifactId>jakarta.ws.rs-api</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- Testing -->
|
||||
|
||||
<!-- JUnit 5 Dependencies -->
|
||||
|
|
@ -365,7 +535,6 @@
|
|||
<version>${mockito.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<!-- Test dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.parsson</groupId>
|
||||
<artifactId>jakarta.json</artifactId>
|
||||
|
|
|
|||
|
|
@ -1,523 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.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.001.03 pain.001.001.03.xsd">
|
||||
<CstmrCdtTrfInitn>
|
||||
<GrpHdr>
|
||||
<MsgId>885e0519099f4ef5876b1b721d4b605f</MsgId>
|
||||
<CreDtTm>2024-06-20T09:33:46</CreDtTm>
|
||||
<NbOfTxs>20</NbOfTxs>
|
||||
<CtrlSum>67913,22</CtrlSum>
|
||||
<InitgPty>
|
||||
<Nm>PKO Bank Polski SA (PLN)</Nm>
|
||||
</InitgPty>
|
||||
</GrpHdr>
|
||||
<PmtInf>
|
||||
<PmtInfId>885e0519099f4ef5876b1b721d4b605f-1</PmtInfId>
|
||||
<PmtMtd>TRF</PmtMtd>
|
||||
<NbOfTxs>20</NbOfTxs>
|
||||
<CtrlSum>67913,22</CtrlSum>
|
||||
<PmtTpInf>
|
||||
<SvcLvl>
|
||||
<Cd>SEPA</Cd>
|
||||
</SvcLvl>
|
||||
</PmtTpInf>
|
||||
<ReqdExctnDt>2024-06-20</ReqdExctnDt>
|
||||
<Dbtr>
|
||||
<Nm>PKO Bank Polski SA (PLN)</Nm>
|
||||
</Dbtr>
|
||||
<DbtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL61102010260000120203993128</IBAN>
|
||||
</Id>
|
||||
</DbtrAcct>
|
||||
<DbtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>BPKOPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</DbtrAgt>
|
||||
<ChrgBr>SHAR</ChrgBr>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>ALBPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Blaszkiewicz</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL35249000050000453034973384</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701528 / 540/05/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">4059.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>GBWCPLPP</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>KOWALEWSKI</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL33823300040017753920140001</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701515 / FS 318/04/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>GEODIS</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL85124062921111001069083502</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701779 / FWA/24FTD/01725</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>GEODIS</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL85124062921111001069083502</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701780 / FWA/24FTD/01732</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>GEODIS</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL85124062921111001069083502</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701781 / FWA/24FTD/01736</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">3013.50</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>INGBPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>adex</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL42105015911000009135641521</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701800 / FS 34/05/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2952.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PPABPLPK</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Danuta Bedkowska</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL50102024300000860200294058</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701801 / FT/948/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2952.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>INGBPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Easy Way</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL31105017221000009142459099</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701817 / FV/106/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PPABPLPK</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>RABEN</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL67203000745059000010201640</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701809 / 8742530343</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PPABPLPK</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>RABEN</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL67203000745059000010201640</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701808 / 8742530342</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>WBKPPLPP</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>ZASADA TRANS</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL08150017481217400107410000</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701815 / TKP/0211/05/2024/FV</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PPABPLPKXXX</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Wielkopolska</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL73203000451110000002046170</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701802 / V 00043/05/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2337.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>EXWIS</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL88124060871111001053542790</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701823 / 381/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">1230.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>GEODIS</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL85124062921111001069083502</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701782 / FKA/24FTD/01907</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2029.50</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>STALKO</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL51124063351111000051278199</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701813 / 3814/04/2024/TR</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">2029.50</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PKOPPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>STALKO</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL51124063351111000051278199</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701811 / 3812/04/2024/TR</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">3075.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>POLUPLPR</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Klajnowski</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL21888210322001002691790001</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>701816 / 751/2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">1848.00</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>INGBPLPW</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>BULK CARGO</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL97105000995381000010009580</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>702441 / VAT/2043/E /2024</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">16961.40</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PPABPLPK</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Baltic Hub</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL52160014753166100000000793</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>702466 / FV/24/06/0304</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
<CdtTrfTxInf>
|
||||
<PmtId>
|
||||
<EndToEndId>NOTPROVIDED</EndToEndId>
|
||||
</PmtId>
|
||||
<Amt>
|
||||
<InstdAmt Ccy="PLN">6730.32</InstdAmt>
|
||||
</Amt>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>PPABPLPK</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
<Cdtr>
|
||||
<Nm>Baltic Hub</Nm>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>PL52160014753166100000000793</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
<RmtInf>
|
||||
<Ustrd>702467 / FV/24/06/0309</Ustrd>
|
||||
</RmtInf>
|
||||
</CdtTrfTxInf>
|
||||
</PmtInf>
|
||||
</CstmrCdtTrfInitn>
|
||||
</Document>
|
||||
20
setup_dev.sh
20
setup_dev.sh
|
|
@ -1,20 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
############################################################
|
||||
# Setup Imixs-Documents Training Environment
|
||||
#
|
||||
############################################################
|
||||
|
||||
sudo chmod -R 777 docker/deployments/
|
||||
|
||||
echo "#############################################"
|
||||
echo " building Imixs-ML Docker images..."
|
||||
echo "#############################################"
|
||||
mvn -f ~/git/imixs-ml/ clean install -Pdocker -DskipTests
|
||||
|
||||
echo "#############################################"
|
||||
echo " starting dev enrvionment..."
|
||||
echo "#############################################"
|
||||
mvn clean install -Pdebug
|
||||
cp ./*-app/target/*.war ./docker/deployments/
|
||||
docker-compose -f docker-compose.yml up
|
||||
167
src/main/java/com/alexanderlogistics/AGLAIInvoiceAdapter.java
Normal file
167
src/main/java/com/alexanderlogistics/AGLAIInvoiceAdapter.java
Normal file
|
|
@ -0,0 +1,167 @@
|
|||
package com.alexanderlogistics;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.SignalAdapter;
|
||||
import org.imixs.workflow.engine.DocumentService;
|
||||
import org.imixs.workflow.exceptions.AdapterException;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.exceptions.QueryException;
|
||||
|
||||
import com.alexanderlogistics.mahnlauf.MahnlaufService;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
||||
/**
|
||||
* Der AGLAIInvoiceAdapter weist eien Rechnung dem richtigen Space zu und sucht
|
||||
* nach dem passenden Business Partner
|
||||
*
|
||||
*
|
||||
*
|
||||
* @version 1.0
|
||||
* @author rsoika
|
||||
*/
|
||||
public class AGLAIInvoiceAdapter implements SignalAdapter {
|
||||
|
||||
private static Logger logger = Logger.getLogger(AGLAIInvoiceAdapter.class.getName());
|
||||
|
||||
public static final String ERROR_MISSING_DATA = "MISSING_DATA";
|
||||
public static final String ERROR_CONFIG = "CONFIG_ERROR";
|
||||
|
||||
@Inject
|
||||
MahnlaufService mahnlaufService;
|
||||
|
||||
@Inject
|
||||
DocumentService documentService;
|
||||
|
||||
/**
|
||||
* This method finds or create the Zahlungsavis and adds a reference
|
||||
* ($workitemref) to the current invoice.
|
||||
*
|
||||
* @throws PluginException
|
||||
*/
|
||||
@Override
|
||||
public ItemCollection execute(ItemCollection workitem, ItemCollection event)
|
||||
throws AdapterException, PluginException {
|
||||
|
||||
// Inbound Invoice?
|
||||
if (workitem.getModelVersion().startsWith("rechnungseingang")) {
|
||||
|
||||
// Initialize invoice.positions and Space
|
||||
initInvoicePositions(workitem);
|
||||
initInvoiceSpace(workitem);
|
||||
initInvoiceBusinessPartner(workitem);
|
||||
}
|
||||
|
||||
return workitem;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Diese Methode prüft ob es bei einer Eingangsrechnung zwar das feld
|
||||
* 'invoice.positions' gibt, aber noch keine Positionsliste
|
||||
* Die Methode erzeugt eine Default Zeile.
|
||||
*
|
||||
* @param workitem
|
||||
*/
|
||||
private void initInvoicePositions(ItemCollection workitem) {
|
||||
|
||||
List<ItemCollection> childList = InvoiceUtil.explodeChildList(workitem);
|
||||
if (childList.size() == 0 && !workitem.getItemValueString("invoice.positions").isEmpty()) {
|
||||
String positionNumber = workitem.getItemValueString("invoice.positions");
|
||||
|
||||
logger.info("├── init invoice.positions: " + positionNumber);
|
||||
|
||||
ItemCollection child = new ItemCollection();
|
||||
child.setItemValue("numPos", 1);
|
||||
child.setItemValue("name", positionNumber);
|
||||
childList.add(child);
|
||||
InvoiceUtil.implodeChildList(workitem, childList);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Die Methode findet den passenden Space anhand
|
||||
* der REgex in space sofern das workitem noch keinem Space zugewiesen ist
|
||||
*
|
||||
* @param workitem
|
||||
*/
|
||||
private void initInvoiceSpace(ItemCollection workitem) {
|
||||
|
||||
if (workitem.getItemValueString("space.ref").isEmpty()
|
||||
&& !workitem.getItemValueString("invoice.positions").isEmpty()) {
|
||||
String positionNumber = workitem.getItemValueString("invoice.positions");
|
||||
logger.info("├── init space for position : " + positionNumber);
|
||||
// Jetzt noch das Space mapping
|
||||
Map<String, List<String>> spacePosMappings = mahnlaufService.loadSpacePosMappings();
|
||||
mahnlaufService.mapInvoiceTextToSpace(workitem, spacePosMappings, positionNumber);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Find creditor cdtr.name
|
||||
* based on the field
|
||||
* 'document.company' or cdtr.name
|
||||
*
|
||||
* Zunächst versuchen wir falls ein cdtr.name von der KI gefunden wurde dieesn
|
||||
* über das Businesspartner Interface aufzulösne.
|
||||
* Falls das nicht gelingt, suchen wir nach einer alten Rechnung mit der selben
|
||||
* document.company
|
||||
*
|
||||
*/
|
||||
private void initInvoiceBusinessPartner(ItemCollection workitem) {
|
||||
if (workitem.getItemValueString("partner.id").isEmpty()
|
||||
&& !workitem.getItemValueString("document.company").isEmpty()) {
|
||||
|
||||
String companyName = workitem.getItemValueString("document.company");
|
||||
String cdtrName = workitem.getItemValueString("cdtr.name");
|
||||
logger.info("├── init cdtr.name for document.company: " + companyName);
|
||||
|
||||
// erster versuch über Busienss partner.
|
||||
String query = "(type:workitem OR type:workitemarchive) AND ($modelversion:businesspartner*) AND (partner.name:\""
|
||||
+ cdtrName + "\")";
|
||||
|
||||
try {
|
||||
List<ItemCollection> result = documentService.find(query, 1, 0, "$created", true);
|
||||
if (result.size() == 1) {
|
||||
logger.info("│ ├── found business partner by cdtr.name");
|
||||
ItemCollection businessPartner = result.get(0);
|
||||
workitem.setItemValue("cdtr.number", businessPartner.getItemValueString("cdtr.number"));
|
||||
workitem.setItemValue("cdtr.name", businessPartner.getItemValueString("cdtr.name"));
|
||||
workitem.setItemValue("partner.id", businessPartner.getItemValueString("partner.id"));
|
||||
workitem.setItemValue("partner.name", businessPartner.getItemValueString("cdtr.name"));
|
||||
return;
|
||||
}
|
||||
} catch (QueryException e) {
|
||||
// not found!
|
||||
logger.warning("Failed to lookup company name '" + companyName + "' : " + e.getMessage());
|
||||
}
|
||||
|
||||
// Eine Suche über den exakten Namen ist sinnlos gewesen, daher versuchen wir
|
||||
// nun über den letzten Treffer
|
||||
query = "(type:workitem OR type:workitemarchive) AND ($modelversion:rechnungseingang*) AND (document.company:\""
|
||||
+ companyName + "\") AND NOT (partner.id=\"\") AND ($taskid:[5010 TO 5900])";
|
||||
|
||||
try {
|
||||
List<ItemCollection> result = documentService.find(query, 1, 0, "$created", true);
|
||||
if (result.size() == 1) {
|
||||
logger.info("│ ├── found business partner by last invoice");
|
||||
ItemCollection invoice = result.get(0);
|
||||
workitem.setItemValue("cdtr.number", invoice.getItemValueString("cdtr.number"));
|
||||
workitem.setItemValue("cdtr.name", invoice.getItemValueString("cdtr.name"));
|
||||
workitem.setItemValue("partner.id", invoice.getItemValueString("partner.id"));
|
||||
workitem.setItemValue("partner.name", invoice.getItemValueString("cdtr.name"));
|
||||
}
|
||||
} catch (QueryException e) {
|
||||
// not found!
|
||||
logger.warning("Failed to lookup company name '" + companyName + "' : " + e.getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -120,55 +120,57 @@ public class AGLAnalyticControllerDebitor implements Serializable {
|
|||
link = link + "&processref=" + process.getUniqueID() + "&phrase=" + getDbtNr();
|
||||
}
|
||||
if ("analytic.invoices.count.all".equals(event.getKey())) {
|
||||
event.setValue("" + countAll);
|
||||
event.setLabel(formatTotals(totalAllCurrency1, totalAllCurrency2));
|
||||
event.setDescription("Total invoices");
|
||||
event.getWorkitem().setItemValue("invoices.total", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", countAll);
|
||||
event.getData().setItemValue("label", formatTotals(totalAllCurrency1, totalAllCurrency2));
|
||||
event.getData().setItemValue("description", "Total invoices");
|
||||
event.getWorkitem().setItemValue("invoices.total", countAll);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.count.open".equals(event.getKey())) {
|
||||
event.setValue("" + countOpen);
|
||||
event.setLabel(formatTotals(totalOpenCurrency1, totalOpenCurrency2));
|
||||
event.setDescription("Total invoices not yet in due");
|
||||
event.getWorkitem().setItemValue("invoices.total.open", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + countOpen);
|
||||
event.getData().setItemValue("label", formatTotals(totalOpenCurrency1, totalOpenCurrency2));
|
||||
event.getData().setItemValue("description", "Total invoices not yet in due");
|
||||
event.getWorkitem().setItemValue("invoices.total.open", countOpen);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.count.due".equals(event.getKey())) {
|
||||
event.setValue("" + countDue);
|
||||
event.setLabel(formatTotals(totalDueCurrency1, totalDueCurrency2));
|
||||
event.setDescription("Total invoices in due");
|
||||
event.getWorkitem().setItemValue("invoices.total.due", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + countDue);
|
||||
event.getData().setItemValue("label", formatTotals(totalDueCurrency1, totalDueCurrency2));
|
||||
event.getData().setItemValue("description", "Total invoices in due");
|
||||
event.getWorkitem().setItemValue("invoices.total.due", countDue);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.count.dunning".equals(event.getKey())) {
|
||||
event.setValue("" + countDunning);
|
||||
event.setLabel(formatTotals(totalDunningCurrency1, totalDunningCurrency2));
|
||||
event.setDescription("Total invoices in dunning");
|
||||
event.getWorkitem().setItemValue("invoices.total.dunning", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + countDunning);
|
||||
event.getData().setItemValue("label", formatTotals(totalDunningCurrency1, totalDunningCurrency2));
|
||||
event.getData().setItemValue("description", "Total invoices in dunning");
|
||||
event.getWorkitem().setItemValue("invoices.total.dunning", countDunning);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.payment.avg.due".equals(event.getKey())) {
|
||||
event.setValue("" + averagePaymentDue);
|
||||
event.setLabel("days");
|
||||
event.setDescription("Average terms of credit in the last 12 months.");
|
||||
event.getWorkitem().setItemValue("payment.avg.due", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + averagePaymentDue);
|
||||
event.getData().setItemValue("label", "days");
|
||||
event.getData().setItemValue("description", "Average terms of credit in the last 12 months.");
|
||||
event.getWorkitem().setItemValue("payment.avg.due", averagePaymentDue);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.payment.avg.days".equals(event.getKey())) {
|
||||
event.setValue("" + averagePaymentDays);
|
||||
event.setLabel("days");
|
||||
event.setDescription("Average duration for payment during the last 12 months.");
|
||||
event.getWorkitem().setItemValue("payment.avg.days", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + averagePaymentDays);
|
||||
event.getData().setItemValue("label", "days");
|
||||
event.getData().setItemValue("description", "Average duration for payment during the last 12 months.");
|
||||
event.getWorkitem().setItemValue("payment.avg.days", averagePaymentDays);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.trend".equals(event.getKey())) {
|
||||
event.setValue(chartData);
|
||||
event.setLabel("Payment duration in days");
|
||||
event.setDescription("Payment practice by week");
|
||||
event.getData().setItemValue("value", chartData);
|
||||
event.getData().setItemValue("label", "Payment duration in days");
|
||||
event.getData().setItemValue("description", "Payment practice by week");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -100,34 +100,39 @@ public class AGLAnalyticControllerOPListe implements Serializable {
|
|||
+ "&spaceref=" + departmentID;
|
||||
}
|
||||
if ("analytic.invoices.count.all".equals(event.getKey())) {
|
||||
event.setValue("" + countAll);
|
||||
event.setLabel(resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.setDescription(resourceBundleHandler.findMessage("oplist.invoices.description.all"));
|
||||
event.getWorkitem().setItemValue("invoices.total", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + countAll);
|
||||
event.getData().setItemValue("label", resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.getData().setItemValue("description",
|
||||
resourceBundleHandler.findMessage("oplist.invoices.description.all"));
|
||||
event.getWorkitem().setItemValue("invoices.total", countAll);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.count.open".equals(event.getKey())) {
|
||||
event.setValue("" + (countOpen));
|
||||
event.setLabel(resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.setDescription(resourceBundleHandler.findMessage("oplist.invoices.description.open"));
|
||||
event.getWorkitem().setItemValue("invoices.total.open", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + (countOpen));
|
||||
event.getData().setItemValue("label", resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.getData().setItemValue("description",
|
||||
resourceBundleHandler.findMessage("oplist.invoices.description.open"));
|
||||
event.getWorkitem().setItemValue("invoices.total.open", countOpen);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.count.due".equals(event.getKey())) {
|
||||
event.setValue("" + countDue);
|
||||
event.setLabel(resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.setDescription(resourceBundleHandler.findMessage("oplist.invoices.description.due"));
|
||||
event.getWorkitem().setItemValue("invoices.total.due", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + countDue);
|
||||
event.getData().setItemValue("label", resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.getData().setItemValue("description",
|
||||
resourceBundleHandler.findMessage("oplist.invoices.description.due"));
|
||||
event.getWorkitem().setItemValue("invoices.total.due", countDue);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.invoices.count.dunning".equals(event.getKey())) {
|
||||
event.setValue("" + countDunning);
|
||||
event.setLabel(resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.setDescription(resourceBundleHandler.findMessage("oplist.invoices.description.dunning"));
|
||||
event.getWorkitem().setItemValue("invoices.total.dunning", event.getValue());
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", "" + countDunning);
|
||||
event.getData().setItemValue("label", resourceBundleHandler.findMessage("oplist.invoices"));
|
||||
event.getData().setItemValue("description",
|
||||
resourceBundleHandler.findMessage("oplist.invoices.description.dunning"));
|
||||
event.getWorkitem().setItemValue("invoices.total.dunning", countDunning);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -69,53 +69,57 @@ public class AGLAnalyticControllerSteuer implements Serializable {
|
|||
link = link + "?processref=" + process.getUniqueID() + "&workflowgroup=Steuerbescheid";
|
||||
}
|
||||
if ("analytic.steuer.eust".equals(event.getKey())) {
|
||||
event.setValue(computeSteuerbescheideEUST());
|
||||
event.setLabel("EUR");
|
||||
event.setDescription("Gesamt Einfuhrumsatzsteuer (EUSt)");
|
||||
event.getWorkitem().setItemValue("eust.total", event.getValue());
|
||||
event.setLink(link);
|
||||
Object eustTotal = computeSteuerbescheideEUST();
|
||||
event.getData().setItemValue("value", eustTotal);
|
||||
event.getData().setItemValue("label", "EUR");
|
||||
event.getData().setItemValue("description", "Gesamt Einfuhrumsatzsteuer (EUSt)");
|
||||
event.getWorkitem().setItemValue("eust.total", eustTotal);
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.steuer.zoll".equals(event.getKey())) {
|
||||
event.setValue(computeSteuerbescheideZoll());
|
||||
event.setLabel("EUR");
|
||||
event.setDescription("Gesamt Zölle (ZOLLEU)");
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", computeSteuerbescheideZoll());
|
||||
event.getData().setItemValue("label", "EUR");
|
||||
event.getData().setItemValue("description", "Gesamt Zölle (ZOLLEU)");
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.steuer.total".equals(event.getKey())) {
|
||||
event.setValue(computeSteuerbescheideTotal());
|
||||
event.setLabel("EUR");
|
||||
event.setDescription("Alle Steuerbescheide die noch nicht abgerechnet wurden.");
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", computeSteuerbescheideTotal());
|
||||
event.getData().setItemValue("label", "EUR");
|
||||
event.getData().setItemValue("description", "Alle Steuerbescheide die noch nicht abgerechnet wurden.");
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.steuer.saldo".equals(event.getKey())) {
|
||||
event.setValue(computeSteuerbescheideSaldo());
|
||||
event.setLabel("EUR");
|
||||
event.setDescription("Saldo aller Steuerbescheide die noch nicht abgerechnet wurden.");
|
||||
event.setLink(link);
|
||||
event.getData().setItemValue("value", computeSteuerbescheideSaldo());
|
||||
event.getData().setItemValue("label", "EUR");
|
||||
event.getData().setItemValue("description",
|
||||
"Saldo aller Steuerbescheide die noch nicht abgerechnet wurden.");
|
||||
event.getWorkitem().setItemValue("link", link);
|
||||
}
|
||||
|
||||
if ("analytic.steuer.due".equals(event.getKey())) {
|
||||
event.setValue(computeSteuerbescheideSaldoDue());
|
||||
event.setLabel("EUR");
|
||||
event.setDescription("Saldo aller überfälligen Steuerbescheide die noch nicht abgerechnet wurden.");
|
||||
// event.setLink(link + "&task=Überfällig");
|
||||
event.setLink(link + "&task=1200");
|
||||
event.getData().setItemValue("value", computeSteuerbescheideSaldoDue());
|
||||
event.getData().setItemValue("label", "EUR");
|
||||
event.getData().setItemValue("description",
|
||||
"Saldo aller überfälligen Steuerbescheide die noch nicht abgerechnet wurden.");
|
||||
// event.getWorkitem().setItemValue("link", link + "&task=Überfällig");
|
||||
event.getWorkitem().setItemValue("link", link + "&task=1200");
|
||||
}
|
||||
|
||||
// Charts
|
||||
|
||||
if ("analytic.steuer.trend".equals(event.getKey())) {
|
||||
event.setValue(accumulateSteuerbescheideByWeek());
|
||||
event.setLabel("Zoll & EUST");
|
||||
event.setDescription("Fälligkeiten nach KW");
|
||||
event.getData().setItemValue("value", accumulateSteuerbescheideByWeek());
|
||||
event.getData().setItemValue("label", "Zoll & EUST");
|
||||
event.getData().setItemValue("description", "Fälligkeiten nach KW");
|
||||
}
|
||||
|
||||
if ("analytic.steuer.trend.abteilung".equals(event.getKey())) {
|
||||
event.setValue(accumulateSteuerbescheideAbteilungByWeek());
|
||||
event.setLabel("Nach Abteilungen");
|
||||
event.setDescription("Offene Salden nach KW pro Abteilung");
|
||||
event.getData().setItemValue("value", accumulateSteuerbescheideAbteilungByWeek());
|
||||
event.getData().setItemValue("label", "Nach Abteilungen");
|
||||
event.getData().setItemValue("description", "Offene Salden nach KW pro Abteilung");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -25,7 +25,7 @@ import org.imixs.workflow.exceptions.PluginException;
|
|||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.office.config.ConfigService;
|
||||
import org.imixs.workflow.poi.POIFindReplaceAdapter;
|
||||
import org.imixs.workflow.poi.POIUtil;
|
||||
import org.imixs.workflow.poi.XSSFUtil;
|
||||
import org.imixs.workflow.util.XMLParser;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
|
@ -174,7 +174,7 @@ public class AGLAnalyticExcelAdapterDebitor extends POIFindReplaceAdapter {
|
|||
int newColumns = (currencyList.size() - 1) * 2;
|
||||
for (int i = 0; i < newColumns; i++) {
|
||||
logger.info(".. add currency column...");
|
||||
POIUtil.insertColumn(sheet, 6, 8 + i);
|
||||
XSSFUtil.insertColumn(sheet, 6, 8 + i);
|
||||
}
|
||||
|
||||
// Beschriftungen eintragen
|
||||
|
|
@ -247,7 +247,7 @@ public class AGLAnalyticExcelAdapterDebitor extends POIFindReplaceAdapter {
|
|||
|
||||
// jetzt füge alle Rechnungen an.
|
||||
int totalRowCount = invoices.size();
|
||||
POIUtil.insertRows(sheet, "A11", totalRowCount - 0);
|
||||
XSSFUtil.insertRows(sheet, "A11", totalRowCount - 0);
|
||||
|
||||
for (ItemCollection invoice : invoices) {
|
||||
logger.fine("......add invoice " + invoice.getUniqueID());
|
||||
|
|
@ -285,8 +285,8 @@ public class AGLAnalyticExcelAdapterDebitor extends POIFindReplaceAdapter {
|
|||
// setze Summen Formeln
|
||||
for (int column = 6; column < currencyList.size() * 2 + 6; column++) {
|
||||
XSSFCell cell = sheet.getRow(totalRowCount + 11).getCell(column); // G11
|
||||
String cellRefFrom = POIUtil.getCellReference(column, 10);
|
||||
String cellRefTo = POIUtil.getCellReference(column, totalRowCount + 10);
|
||||
String cellRefFrom = XSSFUtil.getCellReference(column, 10);
|
||||
String cellRefTo = XSSFUtil.getCellReference(column, totalRowCount + 10);
|
||||
String formula = "SUM(" + cellRefFrom + ":" + cellRefTo + ")";
|
||||
cell.setCellFormula(formula);
|
||||
}
|
||||
|
|
@ -26,7 +26,7 @@ import org.imixs.workflow.exceptions.PluginException;
|
|||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.office.config.ConfigService;
|
||||
import org.imixs.workflow.poi.POIFindReplaceAdapter;
|
||||
import org.imixs.workflow.poi.POIUtil;
|
||||
import org.imixs.workflow.poi.XSSFUtil;
|
||||
import org.imixs.workflow.util.XMLParser;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
|
@ -179,7 +179,7 @@ public class OPListExportAdapter extends POIFindReplaceAdapter {
|
|||
int newColumns = (currencyList.size() - 1) * 1;
|
||||
for (int i = 0; i < newColumns; i++) {
|
||||
logger.fine(".. add currency column...");
|
||||
POIUtil.insertColumn(sheet, 5, 6 + i);
|
||||
XSSFUtil.insertColumn(sheet, 5, 6 + i);
|
||||
}
|
||||
|
||||
// Beschriftungen eintragen
|
||||
|
|
@ -37,7 +37,7 @@ import org.imixs.workflow.exceptions.PluginException;
|
|||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.office.config.ConfigService;
|
||||
import org.imixs.workflow.poi.POIFindReplaceAdapter;
|
||||
import org.imixs.workflow.poi.POIUtil;
|
||||
import org.imixs.workflow.poi.XSSFUtil;
|
||||
import org.imixs.workflow.util.XMLParser;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
|
@ -199,13 +199,13 @@ public class OPListExportAdapterByWeek extends POIFindReplaceAdapter {
|
|||
int newColumns = (currencyList.size() * (spaces.size())) - 1;
|
||||
for (int i = 0; i < newColumns; i++) {
|
||||
logger.fine(".. add currency column...");
|
||||
POIUtil.insertColumn(sheet, 1, 2 + i);
|
||||
XSSFUtil.insertColumn(sheet, 1, 2 + i);
|
||||
}
|
||||
|
||||
// Total spalten einfuegen
|
||||
for (int i = 0; i < currencyList.size() - 1; i++) {
|
||||
logger.fine(".. add total column...");
|
||||
POIUtil.insertColumn(sheet, 2 + newColumns, 3 + newColumns + i);
|
||||
XSSFUtil.insertColumn(sheet, 2 + newColumns, 3 + newColumns + i);
|
||||
}
|
||||
newColumns = newColumns + currencyList.size();
|
||||
|
||||
|
|
@ -22,6 +22,7 @@ import org.imixs.workflow.exceptions.AdapterException;
|
|||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.poi.POIFindReplaceAdapter;
|
||||
import org.imixs.workflow.poi.XSSFUtil;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
||||
|
|
@ -171,7 +172,7 @@ public class ZahlungsavisExportAdapter extends POIFindReplaceAdapter {
|
|||
sheet.shiftRows(referenceRowPos, lastRow + invoiceIDs.size(), -1, true, true);
|
||||
|
||||
// finally update the total formula...
|
||||
evalXSSFSheet(doc, sheet, "TOTAL");
|
||||
XSSFUtil.evalXSSFSheet(doc, sheet, "TOTAL");
|
||||
|
||||
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
||||
// write back the file
|
||||
|
|
@ -19,7 +19,7 @@ import org.imixs.workflow.exceptions.PluginException;
|
|||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.office.config.ConfigService;
|
||||
import org.imixs.workflow.poi.POIFindReplaceAdapter;
|
||||
import org.imixs.workflow.poi.POIUtil;
|
||||
import org.imixs.workflow.poi.XSSFUtil;
|
||||
|
||||
import com.alexanderlogistics.InvoiceService;
|
||||
|
||||
|
|
@ -189,7 +189,7 @@ public class AGLDataViewDebitorAdapter extends POIFindReplaceAdapter {
|
|||
int newColumns = (currencyList.size() - 1) * 2;
|
||||
for (int i = 0; i < newColumns; i++) {
|
||||
logger.info(".. add currency column...");
|
||||
POIUtil.insertColumn(sheet, 6, 8 + i);
|
||||
XSSFUtil.insertColumn(sheet, 6, 8 + i);
|
||||
}
|
||||
|
||||
// Beschriftungen eintragen
|
||||
|
|
@ -259,7 +259,7 @@ public class AGLDataViewDebitorAdapter extends POIFindReplaceAdapter {
|
|||
|
||||
// jetzt füge alle Rechnungen an.
|
||||
int totalRowCount = invoices.size();
|
||||
POIUtil.insertRows(sheet, "A11", totalRowCount - 0);
|
||||
XSSFUtil.insertRows(sheet, "A11", totalRowCount - 0);
|
||||
|
||||
for (ItemCollection invoice : invoices) {
|
||||
logger.fine("......add invoice " + invoice.getUniqueID());
|
||||
|
|
@ -297,8 +297,8 @@ public class AGLDataViewDebitorAdapter extends POIFindReplaceAdapter {
|
|||
// setze Summen Formeln
|
||||
for (int column = 6; column < currencyList.size() * 2 + 6; column++) {
|
||||
XSSFCell cell = sheet.getRow(totalRowCount + 11).getCell(column); // G11
|
||||
String cellRefFrom = POIUtil.getCellReference(column, 10);
|
||||
String cellRefTo = POIUtil.getCellReference(column, totalRowCount + 10);
|
||||
String cellRefFrom = XSSFUtil.getCellReference(column, 10);
|
||||
String cellRefTo = XSSFUtil.getCellReference(column, totalRowCount + 10);
|
||||
String formula = "SUM(" + cellRefFrom + ":" + cellRefTo + ")";
|
||||
cell.setCellFormula(formula);
|
||||
}
|
||||
|
|
@ -22,6 +22,7 @@ import org.imixs.workflow.exceptions.AdapterException;
|
|||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.poi.POIFindReplaceAdapter;
|
||||
import org.imixs.workflow.poi.XSSFUtil;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
||||
|
|
@ -164,7 +165,7 @@ public class InkassoExportAdapter extends POIFindReplaceAdapter {
|
|||
sheet.shiftRows(referenceRowPos, lastRow + invoiceIDs.size(), -1, true, true);
|
||||
|
||||
// finally update the total formula...
|
||||
evalXSSFSheet(doc, sheet, "TOTAL");
|
||||
XSSFUtil.evalXSSFSheet(doc, sheet, "TOTAL");
|
||||
|
||||
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
||||
// write back the file
|
||||
|
|
@ -9,13 +9,14 @@ import java.util.Map;
|
|||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.Model;
|
||||
import org.imixs.workflow.SignalAdapter;
|
||||
import org.imixs.workflow.engine.ModelService;
|
||||
import org.imixs.workflow.engine.WorkflowService;
|
||||
import org.imixs.workflow.exceptions.AdapterException;
|
||||
import org.imixs.workflow.exceptions.ModelException;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.office.model.SharedModelManager;
|
||||
import org.openbpmn.bpmn.BPMNModel;
|
||||
|
||||
import com.alexanderlogistics.InvoiceUtil;
|
||||
|
||||
|
|
@ -50,6 +51,9 @@ public class MahnlaufExecuteAdapter implements SignalAdapter {
|
|||
@Inject
|
||||
MahnlaufService mahnlaufService;
|
||||
|
||||
@Inject
|
||||
SharedModelManager sharedModelManager;
|
||||
|
||||
/**
|
||||
* This method finds all invices ($workitemref) and tirgges event 300
|
||||
*
|
||||
|
|
@ -96,10 +100,15 @@ public class MahnlaufExecuteAdapter implements SignalAdapter {
|
|||
if (isInDue(invoice)) {
|
||||
try {
|
||||
// first fetch the event of the invoice to be processed
|
||||
Model invoiceModel;
|
||||
invoiceModel = this.modelService.getModel(invoice.getModelVersion());
|
||||
ItemCollection invoiceEvent = invoiceModel.getEvent(invoice.getTaskID(),
|
||||
MahnlaufService.EVENT_MAHNLAUF_EXECUTE);
|
||||
|
||||
BPMNModel bpmnModel = modelService.getBPMNModel(invoice.getModelVersion());
|
||||
ItemCollection invoiceEvent = sharedModelManager.getModelManager().findEventByID(bpmnModel,
|
||||
invoice.getTaskID(), MahnlaufService.EVENT_MAHNLAUF_EXECUTE);
|
||||
|
||||
// Model invoiceModel;
|
||||
// invoiceModel = this.modelService.getModel(invoice.getModelVersion());
|
||||
// ItemCollection invoiceEvent = invoiceModel.getEvent(invoice.getTaskID(),
|
||||
// MahnlaufService.EVENT_MAHNLAUF_EXECUTE);
|
||||
if (invoiceEvent != null) {
|
||||
ItemCollection eventDunningConfig = this.workflowService.evalWorkflowResult(invoiceEvent,
|
||||
"dunning", invoice);
|
||||
|
|
@ -5,7 +5,6 @@ import java.util.List;
|
|||
import java.util.logging.Logger;
|
||||
|
||||
import org.imixs.workflow.ItemCollection;
|
||||
import org.imixs.workflow.Model;
|
||||
import org.imixs.workflow.SignalAdapter;
|
||||
import org.imixs.workflow.WorkflowKernel;
|
||||
import org.imixs.workflow.engine.ModelService;
|
||||
|
|
@ -14,7 +13,9 @@ import org.imixs.workflow.exceptions.AdapterException;
|
|||
import org.imixs.workflow.exceptions.ModelException;
|
||||
import org.imixs.workflow.exceptions.PluginException;
|
||||
import org.imixs.workflow.exceptions.QueryException;
|
||||
import org.imixs.workflow.office.model.SharedModelManager;
|
||||
import org.imixs.workflow.sepa.services.SepaWorkflowService;
|
||||
import org.openbpmn.bpmn.BPMNModel;
|
||||
|
||||
import com.alexanderlogistics.BusinessPartnerService;
|
||||
import com.alexanderlogistics.InvoiceUtil;
|
||||
|
|
@ -50,6 +51,9 @@ public class MahnlaufRefAddAdapter implements SignalAdapter {
|
|||
@Inject
|
||||
BusinessPartnerService businessPartnerService;
|
||||
|
||||
@Inject
|
||||
SharedModelManager sharedModelManager;
|
||||
|
||||
/**
|
||||
* This method finds or create the Mahnlauf and adds a reference ($workitemref)
|
||||
* to the current invoice.
|
||||
|
|
@ -167,8 +171,11 @@ public class MahnlaufRefAddAdapter implements SignalAdapter {
|
|||
mahnlaufWorkitem.setItemValue("invoice.language", invoice.getItemValue("invoice.language"));
|
||||
|
||||
// set workflow group name from the Task Element to identify document in xslt
|
||||
Model model = modelService.getModel(modelVersion);
|
||||
ItemCollection task = model.getTask(taskID);
|
||||
BPMNModel bpmnModel = modelService.getBPMNModel(modelVersion);
|
||||
ItemCollection task = sharedModelManager.getModelManager().findTaskByID(bpmnModel, taskID);
|
||||
|
||||
// Model model = modelService.getModel(modelVersion);
|
||||
// ItemCollection task = model.getTask(taskID);
|
||||
String modelTaskGroupName = task.getItemValueString("txtworkflowgroup"); // DO NOT CHANGE!
|
||||
mahnlaufWorkitem.setItemValue(WorkflowKernel.WORKFLOWGROUP, modelTaskGroupName);
|
||||
|
||||
|
|
@ -129,10 +129,11 @@ public class MahnlaufService {
|
|||
* @param workitem
|
||||
* @param spacePosMappings
|
||||
*/
|
||||
public void mapInvoiceTextToSpace(ItemCollection workitem, Map<String, List<String>> spacePosMappings) {
|
||||
public void mapInvoiceTextToSpace(ItemCollection workitem, Map<String, List<String>> spacePosMappings,
|
||||
String positionNumber) {
|
||||
// Jezt noch das Space mapping
|
||||
// dazu kucken wir in alle spaces den config wert 'pos.mapping'
|
||||
String text = workitem.getItemValueString("invoice.text");
|
||||
String text = positionNumber; // workitem.getItemValueString("invoice.text");
|
||||
if (!text.isEmpty()) {
|
||||
boolean found = false;
|
||||
for (Map.Entry<String, List<String>> entry : spacePosMappings.entrySet()) {
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue