Merge branch 'master' of ssh://git@git.imixs.com/git/office-alexander-logistics
This commit is contained in:
commit
721e077c5b
2 changed files with 104 additions and 6 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
package com.alexanderlogistics;
|
package com.alexanderlogistics;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
@ -8,6 +9,7 @@ import java.util.logging.Logger;
|
||||||
import org.imixs.workflow.ItemCollection;
|
import org.imixs.workflow.ItemCollection;
|
||||||
import org.imixs.workflow.engine.plugins.AbstractPlugin;
|
import org.imixs.workflow.engine.plugins.AbstractPlugin;
|
||||||
import org.imixs.workflow.exceptions.PluginException;
|
import org.imixs.workflow.exceptions.PluginException;
|
||||||
|
import org.imixs.workflow.exceptions.QueryException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Das InvoicePlugin prüft die Eingaben auf gültigkeit, so dass diese problemlos
|
* Das InvoicePlugin prüft die Eingaben auf gültigkeit, so dass diese problemlos
|
||||||
|
|
@ -16,7 +18,13 @@ import org.imixs.workflow.exceptions.PluginException;
|
||||||
* Konkret geht es darum, das im Status 5200 in den ChildItems keine leeren
|
* Konkret geht es darum, das im Status 5200 in den ChildItems keine leeren
|
||||||
* Zeilen vorkommen dürfen.
|
* Zeilen vorkommen dürfen.
|
||||||
* <p>
|
* <p>
|
||||||
* Im Status 5000 muss immer der payment.type ausgewählt werden. Dies wird vom Plugin explizit geprüft
|
* Im Status 5000 muss immer der payment.type ausgewählt werden. Dies wird vom
|
||||||
|
* Plugin explizit geprüft
|
||||||
|
* <p>
|
||||||
|
* Das Plugin prüft auch auf doppelte Rechnungsnummern. Dabei wird Systemweit
|
||||||
|
* geprüft ob die Rechnungsnummer schon einmal vorkam. Falls ja, wird eine
|
||||||
|
* Warnung ausgegeben. Der Benutzer kann diese dann skippen.
|
||||||
|
*
|
||||||
*
|
*
|
||||||
* @author rsoika
|
* @author rsoika
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
|
|
@ -30,6 +38,7 @@ public class InvoicePlugin extends AbstractPlugin {
|
||||||
|
|
||||||
public static final String CHILD_ITEM_PROPERTY = "_ChildItems";
|
public static final String CHILD_ITEM_PROPERTY = "_ChildItems";
|
||||||
public static final String ERROR_MISSING_DATA = "MISSING_DATA";
|
public static final String ERROR_MISSING_DATA = "MISSING_DATA";
|
||||||
|
public static final String ERROR_DUPPLICATE_INVOICE_NUMBER = "DUPPLICATE_INVOICE_NUMBER";
|
||||||
|
|
||||||
// XX-YYY-####-###
|
// XX-YYY-####-###
|
||||||
public static final String REGEX_POSNUMER = "([A-Z]{2}-[A-Z]{3}-[0-9]{4}-[0-9]{3})";
|
public static final String REGEX_POSNUMER = "([A-Z]{2}-[A-Z]{3}-[0-9]{4}-[0-9]{3})";
|
||||||
|
|
@ -53,8 +62,12 @@ public class InvoicePlugin extends AbstractPlugin {
|
||||||
throw new PluginException(InvoicePlugin.class.getName(), ERROR_MISSING_DATA,
|
throw new PluginException(InvoicePlugin.class.getName(), ERROR_MISSING_DATA,
|
||||||
"Eingabefehler - Bitte wählen Sie eine Zahlungsart aus!");
|
"Eingabefehler - Bitte wählen Sie eine Zahlungsart aus!");
|
||||||
}
|
}
|
||||||
}
|
// doppelte Rechnungsnummer prüfen
|
||||||
|
validateInvoiceNumber(workitem);
|
||||||
|
|
||||||
|
// Buchungsperiode auf plausi prüfen
|
||||||
|
validateBuchungsperiode(workitem);
|
||||||
|
}
|
||||||
|
|
||||||
// die prüfung der positionsnummern und Category erfolgt nur im Status
|
// die prüfung der positionsnummern und Category erfolgt nur im Status
|
||||||
// Sachprüfung (5200) und nur beim Freigeben (20)!
|
// Sachprüfung (5200) und nur beim Freigeben (20)!
|
||||||
|
|
@ -102,6 +115,91 @@ public class InvoicePlugin extends AbstractPlugin {
|
||||||
return workitem;
|
return workitem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Method prüft die Buchungsperiode auf Plausibilität
|
||||||
|
*
|
||||||
|
* YYYY(+1)01-12
|
||||||
|
*
|
||||||
|
* z.b. 202110 oder 202107 oder 202201
|
||||||
|
*
|
||||||
|
* @param workitem
|
||||||
|
* @throws PluginException
|
||||||
|
*/
|
||||||
|
private void validateBuchungsperiode(ItemCollection workitem) throws PluginException {
|
||||||
|
String period = workitem.getItemValueString("invoice.period");
|
||||||
|
// buchungsperionde nur prüfen wenn noch nicht archiviert
|
||||||
|
if (!period.isEmpty() && "workitem".equals(workitem.getType())) {
|
||||||
|
LocalDate localDate = LocalDate.now();
|
||||||
|
int year = localDate.getYear();
|
||||||
|
// build regex....
|
||||||
|
String regex = "(" + year + "|" + (year + 1) + ")(1[0-2]|0[1-9])";
|
||||||
|
|
||||||
|
if (!period.matches(regex)) {
|
||||||
|
// throw a plugin exception - because name is missing!
|
||||||
|
throw new PluginException(InvoicePlugin.class.getName(), ERROR_MISSING_DATA,
|
||||||
|
"Eingabefehler - Bitte geben Sie ein gültige Buchungsperiode ein!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Method prüft ob die "invoice.number" bereits einmal im
|
||||||
|
* Rechnugnsworkflow vergeben wurde. Falls ja wird eine PluginExcpetion
|
||||||
|
* ausgelöst.
|
||||||
|
* <p>
|
||||||
|
* Query Example:
|
||||||
|
* <p>
|
||||||
|
* <code>NOT $uniqueid:"9f72fa50-4845-41ea-b6b9-ccd518c353be" AND
|
||||||
|
txtcooperatespace:"9dba107e-f8ef-4150-a832-040d75a6eda7" AND invoice.number:"45"</code>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* in case a duplicate invoice was detected the item invoice.number.duplicate is
|
||||||
|
* filled. This item is used for a conditional event. The case is displayed as a
|
||||||
|
* warning in the form.
|
||||||
|
*
|
||||||
|
* @throws PluginException
|
||||||
|
* @throws QueryException
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private void validateInvoiceNumber(ItemCollection workitem) throws PluginException {
|
||||||
|
|
||||||
|
String invoiceNumber = workitem.getItemValueString("invoice.number");
|
||||||
|
String invoiceNumberDuplicate = workitem.getItemValueString("invoice.number.duplicate");
|
||||||
|
|
||||||
|
// wenn keine Rechnungsnummer eingegeben wurde gehts weiter!
|
||||||
|
if (invoiceNumber.isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// rechnungseingang only workitems...
|
||||||
|
String query = "(type:workitem OR type:workitemarchive) AND ($modelversion:rechnungseingang*) AND NOT ($uniqueid:\""
|
||||||
|
+ workitem.getUniqueID() + "\") AND (invoice.number:\"" + invoiceNumber + "\")";
|
||||||
|
try {
|
||||||
|
int result = this.getWorkflowService().getDocumentService().count(query, 1);
|
||||||
|
if (result > 0) {
|
||||||
|
// wenn _invoicenumber_duplicate bereits gesetzt ist - dann geht es ohne prüfung
|
||||||
|
// weiter
|
||||||
|
if (!invoiceNumberDuplicate.isEmpty()) {
|
||||||
|
logger.warning("...validateion skipped by user with duplicate invoice number: " + invoiceNumber);
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// set _invoicenumber_duplicate - dadurch wird die warnmeldung ausgegeben und
|
||||||
|
// der Vorgang nicht weitergeleitet
|
||||||
|
workitem.replaceItemValue("invoice.number.duplicate", invoiceNumber);
|
||||||
|
throw new PluginException(InvoicePlugin.class.getName(), ERROR_DUPPLICATE_INVOICE_NUMBER,
|
||||||
|
"ACHTUNG: Die Rechnungsnummer wurde bereits gebucht. Bitte prüfen Sie den Beleg!");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// clear !
|
||||||
|
workitem.appendItemValue("invoice.number.duplicate.history",
|
||||||
|
workitem.getItemValueString("invoice.number.duplicate"));
|
||||||
|
workitem.replaceItemValue("invoice.number.duplicate", "");
|
||||||
|
}
|
||||||
|
} catch (QueryException e) {
|
||||||
|
throw new PluginException(PluginException.class.getName(), "QUERY ERROR", e.getMessage(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* converts the Map List of a workitem into a List of ItemCollectons
|
* converts the Map List of a workitem into a List of ItemCollectons
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
lucence.indexDir=${imixs-office.IndexDir}
|
lucence.indexDir=${imixs-office.IndexDir}
|
||||||
index.fields=txtsearchstring,txtSubject,txtname,txtEmail,txtUserName,namCreator,txtworkflowgroup,txtworkflowstatus,txtWorkflowAbstract,txtWorkflowSummary,txtworkflowhistory,txtspacename,txtprocessname,_subject,_description,_name,_projectnumber,_projectname,_ordernumber,_contractnumber,datDueDate,txtcommentlog,htmldescription,htmldocumentation,dms,dms_names,_childitems,$file.names
|
index.fields=txtsearchstring,txtSubject,txtname,txtEmail,txtUserName,namCreator,txtworkflowgroup,txtworkflowstatus,txtWorkflowAbstract,txtWorkflowSummary,txtworkflowhistory,txtspacename,txtprocessname,_subject,_description,_name,_projectnumber,_projectname,_ordernumber,_contractnumber,datDueDate,txtcommentlog,htmldescription,htmldocumentation,dms,dms_names,_childitems,$file.names
|
||||||
index.fields.analyze=txtUsername
|
index.fields.analyze=txtUsername
|
||||||
index.fields.noanalyze=type,$UniqueIDRef,$created,$modified,$ModelVersion,namCreator,$ProcessID,datDate,txtWorkflowGroup,txtemail, datdate, datfrom, datto, numsequencenumber,dms_count
|
index.fields.noanalyze=type,$UniqueIDRef,$created,$modified,$ModelVersion,namCreator,$ProcessID,datDate,txtWorkflowGroup,txtemail, datdate, datfrom, datto, numsequencenumber,dms_count,invoice.number
|
||||||
index.fields.store=process.name,txtProcessName,txtWorkflowImageURL
|
index.fields.store=process.name,txtProcessName,txtWorkflowImageURL
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue