Anpassung excel export für Steuerbelege
This commit is contained in:
parent
07ed3a30d0
commit
947bed1ede
2 changed files with 224 additions and 218 deletions
|
|
@ -61,239 +61,245 @@ import jakarta.inject.Inject;
|
||||||
*/
|
*/
|
||||||
public class AGLAnalyticExcelAdapter extends POIFindReplaceAdapter {
|
public class AGLAnalyticExcelAdapter extends POIFindReplaceAdapter {
|
||||||
|
|
||||||
private static Logger logger = Logger.getLogger(AGLAnalyticExcelAdapter.class.getName());
|
private static Logger logger = Logger.getLogger(AGLAnalyticExcelAdapter.class.getName());
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
WorkflowService workflowService;
|
WorkflowService workflowService;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
InvoiceService opListExportService;
|
InvoiceService opListExportService;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
DocumentService documentService;
|
DocumentService documentService;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
ConfigService configService;
|
ConfigService configService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method finds or create the Zahlungsavis and adds a reference
|
* This method finds or create the Zahlungsavis and adds a reference
|
||||||
* ($workitemref) to the current invoice.
|
* ($workitemref) to the current invoice.
|
||||||
*
|
*
|
||||||
* @throws PluginException
|
* @throws PluginException
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
@Override
|
@Override
|
||||||
public ItemCollection execute(ItemCollection document, ItemCollection event)
|
public ItemCollection execute(ItemCollection document, ItemCollection event)
|
||||||
throws AdapterException, PluginException {
|
throws AdapterException, PluginException {
|
||||||
|
|
||||||
// ermittle die Hauptwährungen
|
// ermittle die Hauptwährungen
|
||||||
ItemCollection configItemCollection = configService.loadConfiguration("AGL_CONFIGURATION");
|
ItemCollection configItemCollection = configService.loadConfiguration("AGL_CONFIGURATION");
|
||||||
List<String> currencyList = configItemCollection.getItemValue("currency.out");
|
List<String> currencyList = configItemCollection.getItemValue("currency.out");
|
||||||
if (currencyList == null || currencyList.size() < 2) {
|
if (currencyList == null || currencyList.size() < 2) {
|
||||||
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
||||||
InvoiceService.ERROR_CONFIG,
|
InvoiceService.ERROR_CONFIG,
|
||||||
"missing Currency configuration - please check parameters");
|
"missing Currency configuration - please check parameters");
|
||||||
}
|
|
||||||
|
|
||||||
// read the Steuerbescheide options
|
|
||||||
ItemCollection steuerbescheideConfig = workflowService.evalWorkflowResult(event, "steuerbescheide",
|
|
||||||
document,
|
|
||||||
false);
|
|
||||||
if (steuerbescheideConfig == null || !steuerbescheideConfig.hasItem("excel-export")) {
|
|
||||||
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(), CONFIG_ERROR,
|
|
||||||
"missing Steuerbescheide configuration in model event - please check model configuration");
|
|
||||||
}
|
|
||||||
List<String> excelDefList = steuerbescheideConfig.getItemValue("excel-export");
|
|
||||||
ItemCollection excelDefCollection = XMLParser.parseItemStructure(excelDefList.get(0));
|
|
||||||
|
|
||||||
String textblock = excelDefCollection.getItemValueString("textblock");
|
|
||||||
String template = excelDefCollection.getItemValueString("template");
|
|
||||||
String targetName = excelDefCollection.getItemValueString("target-name");
|
|
||||||
|
|
||||||
// adapt text....
|
|
||||||
targetName = workflowService.adaptText(targetName, document);
|
|
||||||
|
|
||||||
try {
|
|
||||||
appendExcelTemplate(document, textblock, template, targetName);
|
|
||||||
insertInvoiceRows(document, targetName);
|
|
||||||
|
|
||||||
logger.info("... loading poi configuration..");
|
|
||||||
// Process POI instructions
|
|
||||||
// read the config
|
|
||||||
ItemCollection poiConfig = workflowService.evalWorkflowResult(event, "poi-update", document,
|
|
||||||
false);
|
|
||||||
if (poiConfig == null || !poiConfig.hasItem("findreplace")) {
|
|
||||||
throw new PluginException(POIFindReplaceAdapter.class.getSimpleName(), CONFIG_ERROR,
|
|
||||||
"missing poi configuration");
|
|
||||||
}
|
|
||||||
List<String> replaceDevList = poiConfig.getItemValue("findreplace");
|
|
||||||
String eval = poiConfig.getItemValueString("eval");
|
|
||||||
|
|
||||||
logger.info("... update template with normal poi information..");
|
|
||||||
this.updateFileData(document.getFileData(targetName), document, replaceDevList, eval);
|
|
||||||
|
|
||||||
} catch (PluginException | IOException | QueryException e) {
|
|
||||||
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
|
||||||
InvoiceService.ERROR_CONFIG,
|
|
||||||
"failed to update steuerbescheide: " + e.getMessage());
|
|
||||||
}
|
|
||||||
logger.info("... completed!");
|
|
||||||
return document;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This helper method inserts a row for each invoice at row 16
|
|
||||||
* into the excel template file
|
|
||||||
* <p>
|
|
||||||
* The method copies the Row A16 as a reference row
|
|
||||||
* <p>
|
|
||||||
* The named cell 'TOTAL' should contain the summary formula. It will be
|
|
||||||
* evaluated at the end.
|
|
||||||
*
|
|
||||||
* @throws PluginException
|
|
||||||
* @throws QueryException
|
|
||||||
*/
|
|
||||||
private void insertInvoiceRows(ItemCollection document, String fileName)
|
|
||||||
throws PluginException, QueryException {
|
|
||||||
|
|
||||||
// load dummy rechnungen
|
|
||||||
List<ItemCollection> invoices = loadSteuerbescheide();
|
|
||||||
|
|
||||||
FileData fileData = document.getFileData(fileName);
|
|
||||||
|
|
||||||
// load XSSFWorkbook
|
|
||||||
XSSFWorkbook doc = null;
|
|
||||||
try (InputStream imputStream = new ByteArrayInputStream(fileData.getContent())) {
|
|
||||||
doc = new XSSFWorkbook(imputStream);
|
|
||||||
// NOTE: we only take the first sheet !
|
|
||||||
XSSFSheet sheet = doc.getSheetAt(0);
|
|
||||||
CellReference invoiceRefCell = new CellReference("A11");
|
|
||||||
XSSFRow referenceRowInvoice = sheet.getRow(invoiceRefCell.getRow());
|
|
||||||
int referenceRowPos = 10;
|
|
||||||
int rowPos = referenceRowPos;
|
|
||||||
int lastRow = 2999;
|
|
||||||
logger.finest("Last rownum=" + lastRow);
|
|
||||||
|
|
||||||
// jetzt füge alle Rechnungen an.
|
|
||||||
int totalRowCount = invoices.size();
|
|
||||||
sheet.shiftRows(referenceRowPos, lastRow, totalRowCount, true, true);
|
|
||||||
for (ItemCollection invoice : invoices) {
|
|
||||||
logger.fine("......add invoice " + invoice.getUniqueID());
|
|
||||||
// now create a new line..
|
|
||||||
XSSFRow row = sheet.createRow(rowPos);
|
|
||||||
row.copyRowFrom(referenceRowInvoice, new CellCopyPolicy());
|
|
||||||
// insert values
|
|
||||||
row.getCell(0)
|
|
||||||
.setCellValue(invoice.getItemValueDate("$created"));
|
|
||||||
row.getCell(1, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueString("invoice.number"));
|
|
||||||
row.getCell(2, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDate("invoice.date"));
|
|
||||||
row.getCell(3, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDate("invoice.booking_date"));
|
|
||||||
row.getCell(4, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueString("space.name"));
|
|
||||||
row.getCell(5, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueString("invoice.text"));
|
|
||||||
row.getCell(6, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueString("invoice.atc.number"));
|
|
||||||
row.getCell(7, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDouble("invoice.total.net"));
|
|
||||||
row.getCell(8, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDouble("invoice.saldo"));
|
|
||||||
row.getCell(9, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDouble("steuer.eust"));
|
|
||||||
row.getCell(10, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDate("steuer.eust.due"));
|
|
||||||
row.getCell(11, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDouble("steuer.zoll"));
|
|
||||||
row.getCell(12, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
|
||||||
.setCellValue(invoice.getItemValueDate("steuer.zoll.due"));
|
|
||||||
|
|
||||||
rowPos++;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Leerzeile
|
|
||||||
// categoryRow = sheet.createRow(rowPos);
|
|
||||||
rowPos++;
|
|
||||||
|
|
||||||
// write back the file
|
|
||||||
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
|
||||||
doc.write(byteArrayOutputStream);
|
|
||||||
|
|
||||||
byte[] newContent = byteArrayOutputStream.toByteArray();
|
|
||||||
FileData fileDataNew = new FileData(fileData.getName(), newContent, fileData.getContentType(),
|
|
||||||
null);
|
|
||||||
// update the fileData
|
|
||||||
document.addFileData(fileDataNew);
|
|
||||||
|
|
||||||
logger.finest("......new document added");
|
|
||||||
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
|
||||||
InvoiceService.ERROR_CONFIG,
|
|
||||||
"failed to update opliste: " + e.getMessage());
|
|
||||||
} finally {
|
|
||||||
if (doc != null) {
|
|
||||||
try {
|
|
||||||
doc.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
logger.severe("Failed to close workbook: " + e.getMessage());
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
// read the Steuerbescheide options
|
||||||
* This method loads a text-block for a specified ref and appends the named
|
ItemCollection steuerbescheideConfig = workflowService.evalWorkflowResult(event, "steuerbescheide",
|
||||||
* fileData object of this document.
|
document,
|
||||||
*
|
false);
|
||||||
* @param document
|
if (steuerbescheideConfig == null || !steuerbescheideConfig.hasItem("excel-export")) {
|
||||||
* @throws PluginException
|
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(), CONFIG_ERROR,
|
||||||
*/
|
"missing Steuerbescheide configuration in model event - please check model configuration");
|
||||||
private void appendExcelTemplate(ItemCollection document, String textblockRef, String template,
|
}
|
||||||
String targetName)
|
List<String> excelDefList = steuerbescheideConfig.getItemValue("excel-export");
|
||||||
throws PluginException {
|
ItemCollection excelDefCollection = XMLParser.parseItemStructure(excelDefList.get(0));
|
||||||
|
|
||||||
if ((template == null || template.isEmpty()) || (textblockRef == null || textblockRef.isEmpty())) {
|
String textblock = excelDefCollection.getItemValueString("textblock");
|
||||||
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
String template = excelDefCollection.getItemValueString("template");
|
||||||
InvoiceService.ERROR_CONFIG,
|
String targetName = excelDefCollection.getItemValueString("target-name");
|
||||||
"invalid steuerbescheide configuration in model event - textblock/template reference not defined!");
|
|
||||||
|
// adapt text....
|
||||||
|
targetName = workflowService.adaptText(targetName, document);
|
||||||
|
|
||||||
|
try {
|
||||||
|
appendExcelTemplate(document, textblock, template, targetName);
|
||||||
|
insertInvoiceRows(document, targetName);
|
||||||
|
|
||||||
|
logger.info("... loading poi configuration..");
|
||||||
|
// Process POI instructions
|
||||||
|
// read the config
|
||||||
|
ItemCollection poiConfig = workflowService.evalWorkflowResult(event, "poi-update", document,
|
||||||
|
false);
|
||||||
|
if (poiConfig == null || !poiConfig.hasItem("findreplace")) {
|
||||||
|
throw new PluginException(POIFindReplaceAdapter.class.getSimpleName(), CONFIG_ERROR,
|
||||||
|
"missing poi configuration");
|
||||||
|
}
|
||||||
|
List<String> replaceDevList = poiConfig.getItemValue("findreplace");
|
||||||
|
String eval = poiConfig.getItemValueString("eval");
|
||||||
|
|
||||||
|
logger.info("... update template with normal poi information..");
|
||||||
|
this.updateFileData(document.getFileData(targetName), document, replaceDevList, eval);
|
||||||
|
|
||||||
|
} catch (PluginException | IOException | QueryException e) {
|
||||||
|
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
||||||
|
InvoiceService.ERROR_CONFIG,
|
||||||
|
"failed to update steuerbescheide: " + e.getMessage());
|
||||||
|
}
|
||||||
|
logger.info("... completed!");
|
||||||
|
return document;
|
||||||
}
|
}
|
||||||
|
|
||||||
// load the text block
|
/**
|
||||||
FileData fileData = opListExportService.loadTextBlockFileData(textblockRef, template);
|
* This helper method inserts a row for each invoice at row 16
|
||||||
|
* into the excel template file
|
||||||
|
* <p>
|
||||||
|
* The method copies the Row A16 as a reference row
|
||||||
|
* <p>
|
||||||
|
* The named cell 'TOTAL' should contain the summary formula. It will be
|
||||||
|
* evaluated at the end.
|
||||||
|
*
|
||||||
|
* @throws PluginException
|
||||||
|
* @throws QueryException
|
||||||
|
*/
|
||||||
|
private void insertInvoiceRows(ItemCollection document, String fileName)
|
||||||
|
throws PluginException, QueryException {
|
||||||
|
|
||||||
// do we found the document?
|
// load dummy rechnungen
|
||||||
if (fileData == null) {
|
List<ItemCollection> invoices = loadSteuerbescheide();
|
||||||
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
|
||||||
InvoiceService.ERROR_CONFIG,
|
FileData fileData = document.getFileData(fileName);
|
||||||
"invalid steuerbescheide configuration in model event - template=" + template
|
|
||||||
+ " not found!");
|
// load XSSFWorkbook
|
||||||
|
XSSFWorkbook doc = null;
|
||||||
|
try (InputStream imputStream = new ByteArrayInputStream(fileData.getContent())) {
|
||||||
|
doc = new XSSFWorkbook(imputStream);
|
||||||
|
// NOTE: we only take the first sheet !
|
||||||
|
XSSFSheet sheet = doc.getSheetAt(0);
|
||||||
|
CellReference invoiceRefCell = new CellReference("A11");
|
||||||
|
XSSFRow referenceRowInvoice = sheet.getRow(invoiceRefCell.getRow());
|
||||||
|
int referenceRowPos = 10;
|
||||||
|
int rowPos = referenceRowPos;
|
||||||
|
int lastRow = 2999;
|
||||||
|
logger.finest("Last rownum=" + lastRow);
|
||||||
|
|
||||||
|
// jetzt füge alle Rechnungen an.
|
||||||
|
int totalRowCount = invoices.size();
|
||||||
|
sheet.shiftRows(referenceRowPos, lastRow, totalRowCount, true, true);
|
||||||
|
for (ItemCollection invoice : invoices) {
|
||||||
|
logger.fine("......add invoice " + invoice.getUniqueID());
|
||||||
|
// now create a new line..
|
||||||
|
XSSFRow row = sheet.createRow(rowPos);
|
||||||
|
row.copyRowFrom(referenceRowInvoice, new CellCopyPolicy());
|
||||||
|
// insert values
|
||||||
|
row.getCell(0)
|
||||||
|
.setCellValue(invoice.getItemValueDate("$created"));
|
||||||
|
row.getCell(1, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueString("invoice.number"));
|
||||||
|
row.getCell(2, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDate("invoice.date"));
|
||||||
|
row.getCell(3, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDate("invoice.booking_date"));
|
||||||
|
|
||||||
|
// Änderung Frau Mwangi am 5.12.2025
|
||||||
|
// Nun soll anstatt des Departments der Anmelder ausgegeben werden
|
||||||
|
// row.getCell(4, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
// .setCellValue(invoice.getItemValueString("space.name"));
|
||||||
|
row.getCell(4, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueString("steuer.anmelder"));
|
||||||
|
|
||||||
|
row.getCell(5, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueString("invoice.text"));
|
||||||
|
row.getCell(6, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueString("invoice.atc.number"));
|
||||||
|
row.getCell(7, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDouble("invoice.total.net"));
|
||||||
|
row.getCell(8, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDouble("invoice.saldo"));
|
||||||
|
row.getCell(9, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDouble("steuer.eust"));
|
||||||
|
row.getCell(10, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDate("steuer.eust.due"));
|
||||||
|
row.getCell(11, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDouble("steuer.zoll"));
|
||||||
|
row.getCell(12, MissingCellPolicy.CREATE_NULL_AS_BLANK)
|
||||||
|
.setCellValue(invoice.getItemValueDate("steuer.zoll.due"));
|
||||||
|
|
||||||
|
rowPos++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Leerzeile
|
||||||
|
// categoryRow = sheet.createRow(rowPos);
|
||||||
|
rowPos++;
|
||||||
|
|
||||||
|
// write back the file
|
||||||
|
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
||||||
|
doc.write(byteArrayOutputStream);
|
||||||
|
|
||||||
|
byte[] newContent = byteArrayOutputStream.toByteArray();
|
||||||
|
FileData fileDataNew = new FileData(fileData.getName(), newContent, fileData.getContentType(),
|
||||||
|
null);
|
||||||
|
// update the fileData
|
||||||
|
document.addFileData(fileDataNew);
|
||||||
|
|
||||||
|
logger.finest("......new document added");
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
||||||
|
InvoiceService.ERROR_CONFIG,
|
||||||
|
"failed to update opliste: " + e.getMessage());
|
||||||
|
} finally {
|
||||||
|
if (doc != null) {
|
||||||
|
try {
|
||||||
|
doc.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.severe("Failed to close workbook: " + e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fileData.setName(targetName);
|
|
||||||
// append document
|
|
||||||
logger.info("...append new steuerbescheide Template: " + targetName);
|
|
||||||
document.addFileData(fileData);
|
|
||||||
|
|
||||||
}
|
/**
|
||||||
|
* This method loads a text-block for a specified ref and appends the named
|
||||||
|
* fileData object of this document.
|
||||||
|
*
|
||||||
|
* @param document
|
||||||
|
* @throws PluginException
|
||||||
|
*/
|
||||||
|
private void appendExcelTemplate(ItemCollection document, String textblockRef, String template,
|
||||||
|
String targetName)
|
||||||
|
throws PluginException {
|
||||||
|
|
||||||
|
if ((template == null || template.isEmpty()) || (textblockRef == null || textblockRef.isEmpty())) {
|
||||||
|
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
||||||
|
InvoiceService.ERROR_CONFIG,
|
||||||
|
"invalid steuerbescheide configuration in model event - textblock/template reference not defined!");
|
||||||
|
}
|
||||||
|
|
||||||
|
// load the text block
|
||||||
|
FileData fileData = opListExportService.loadTextBlockFileData(textblockRef, template);
|
||||||
|
|
||||||
|
// do we found the document?
|
||||||
|
if (fileData == null) {
|
||||||
|
throw new PluginException(AGLAnalyticExcelAdapter.class.getSimpleName(),
|
||||||
|
InvoiceService.ERROR_CONFIG,
|
||||||
|
"invalid steuerbescheide configuration in model event - template=" + template
|
||||||
|
+ " not found!");
|
||||||
|
}
|
||||||
|
fileData.setName(targetName);
|
||||||
|
// append document
|
||||||
|
logger.info("...append new steuerbescheide Template: " + targetName);
|
||||||
|
document.addFileData(fileData);
|
||||||
|
|
||||||
/**
|
|
||||||
* Diese Methode läd alle offenen Steuerbescheide
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private List<ItemCollection> loadSteuerbescheide() {
|
|
||||||
List<ItemCollection> result = new ArrayList<>();
|
|
||||||
try {
|
|
||||||
result = documentService.find(
|
|
||||||
"$modelversion:steuerbescheid-* AND type:workitem", 9999, 0,
|
|
||||||
"invoice.number", false);
|
|
||||||
} catch (QueryException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
}
|
||||||
return result;
|
|
||||||
}
|
/**
|
||||||
|
* Diese Methode läd alle offenen Steuerbescheide
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private List<ItemCollection> loadSteuerbescheide() {
|
||||||
|
List<ItemCollection> result = new ArrayList<>();
|
||||||
|
try {
|
||||||
|
result = documentService.find(
|
||||||
|
"$modelversion:steuerbescheid-* AND type:workitem", 9999, 0,
|
||||||
|
"invoice.number", false);
|
||||||
|
} catch (QueryException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Binary file not shown.
Loading…
Reference in a new issue