update
This commit is contained in:
parent
c88c2e6433
commit
6f73b67a6f
5 changed files with 59 additions and 7 deletions
40
README.md
40
README.md
|
|
@ -3,7 +3,47 @@
|
||||||
https://alexander-logistics.office-workflow.de
|
https://alexander-logistics.office-workflow.de
|
||||||
|
|
||||||
https://archive.alexander-logistics.office-workflow.de
|
https://archive.alexander-logistics.office-workflow.de
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## FTP Storage
|
||||||
|
|
||||||
|
Wir haben bei Hetzenr eine Storage Box um via FTP Daten mit den Office Scannern von Alexander Logistics sowie der Cargosoft Schnittstelle auszutauschen:
|
||||||
|
|
||||||
|
Server: u248962.your-storagebox.de
|
||||||
|
Userid: u248962
|
||||||
|
Password: 5CGGchRArIhwZjqc
|
||||||
|
|
||||||
|
Wir haben dann zwei Subaccounts für die Office Scanner und Cargosoft
|
||||||
|
|
||||||
|
### Office Scanner
|
||||||
|
|
||||||
|
Hier haben wir einen subacount auf folgendes Verzeichnis eingerichtet:
|
||||||
|
|
||||||
|
/office-alexander-logistics/scanner/Rechnungseingang/
|
||||||
|
|
||||||
|
Die Zugangsdaten lauten:
|
||||||
|
|
||||||
|
Benutzername: u248962-sub1
|
||||||
|
Passwort: zspAWxj4o34Bh1q3
|
||||||
|
|
||||||
|
|
||||||
|
### Cargosoft Schnittstelle
|
||||||
|
|
||||||
|
Benutzername: u248962-sub2
|
||||||
|
Passwort: aXa61n9Un3jDNQlL
|
||||||
|
|
||||||
|
## E-Mail Schnittstelle
|
||||||
|
|
||||||
|
Es gibt ein Email Konto das wir für den Import von Rechnungen nutzen
|
||||||
|
|
||||||
|
** Testaccount **
|
||||||
|
|
||||||
|
E-Mail: imixs@alexander-logistics.com
|
||||||
|
Passwort: i^i$oe-!+o1o0io(
|
||||||
|
IMAP4 Outlook.office365.com 993 SSL/TLS
|
||||||
|
SMTP Smtp.office365.com 587 STARTTLS
|
||||||
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -225,13 +225,20 @@
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Imixs-Documents / OCR -->
|
<!-- Imixs-Archive Documents -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imixs.workflow</groupId>
|
<groupId>org.imixs.workflow</groupId>
|
||||||
<artifactId>imixs-archive-documents</artifactId>
|
<artifactId>imixs-archive-documents</artifactId>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Imixs-Archive Importer -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
<artifactId>imixs-archive-importer</artifactId>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- SEPA Adapter -->
|
<!-- SEPA Adapter -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imixs.workflow</groupId>
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
<div class="imixs-form">
|
<div class="imixs-form">
|
||||||
<div class="imixs-header">
|
<div class="imixs-header">
|
||||||
<h1>Dokument Import</h1>
|
<h1>Document Importer</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -126,7 +126,7 @@
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td><h:outputText
|
<td><h:outputText
|
||||||
value="#{source.item['modelversion']}" />
|
value="#{source.item['workflowmodel']}" />
|
||||||
</td>
|
</td>
|
||||||
<td><h:outputText
|
<td><h:outputText
|
||||||
value="#{source.item['task']}" />
|
value="#{source.item['task']}" />
|
||||||
|
|
|
||||||
10
pom.xml
10
pom.xml
|
|
@ -176,7 +176,7 @@
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Imixs-Archive -->
|
<!-- Imixs-Archive API -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imixs.workflow</groupId>
|
<groupId>org.imixs.workflow</groupId>
|
||||||
<artifactId>imixs-archive-api</artifactId>
|
<artifactId>imixs-archive-api</artifactId>
|
||||||
|
|
@ -190,7 +190,13 @@
|
||||||
<version>${org.imixs.archive.version}</version>
|
<version>${org.imixs.archive.version}</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- Imxixs-Archive Importer -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
<artifactId>imixs-archive-importer</artifactId>
|
||||||
|
<version>${org.imixs.archive.version}</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
|
||||||
|
|
@ -582,10 +582,9 @@ result.isValid=true;
|
||||||
<imixs:value>true</imixs:value>
|
<imixs:value>true</imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
<imixs:item name="keyownershipfields" type="xs:string">
|
<imixs:item name="keyownershipfields" type="xs:string">
|
||||||
<imixs:value><![CDATA[$creator]]></imixs:value>
|
<imixs:value><![CDATA[process.team]]></imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
<imixs:item name="keyaddwritefields" type="xs:string">
|
<imixs:item name="keyaddwritefields" type="xs:string">
|
||||||
<imixs:value><![CDATA[$creator]]></imixs:value>
|
|
||||||
<imixs:value><![CDATA[process.manager]]></imixs:value>
|
<imixs:value><![CDATA[process.manager]]></imixs:value>
|
||||||
<imixs:value><![CDATA[process.team]]></imixs:value>
|
<imixs:value><![CDATA[process.team]]></imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue