markierung reklamiert anzeigen

This commit is contained in:
Ralph Soika 2023-06-28 12:51:55 +02:00
parent 3525e6fb7d
commit 5d913b10e0
3 changed files with 9 additions and 7 deletions

View file

@ -213,7 +213,11 @@ public class OPListExportAdapter extends POIFindReplaceAdapter {
XSSFRow row = sheet.createRow(rowPos); XSSFRow row = sheet.createRow(rowPos);
row.copyRowFrom(referenceRowInvoice, new CellCopyPolicy()); row.copyRowFrom(referenceRowInvoice, new CellCopyPolicy());
// insert values // insert values
row.getCell(2).setCellValue(invoice.getItemValueString("invoice.number")); if (invoice.getItemValueBoolean("invoice.protest")) {
row.getCell(2).setCellValue(invoice.getItemValueString("invoice.number") + " (R)");
} else {
row.getCell(2).setCellValue(invoice.getItemValueString("invoice.number"));
}
row.getCell(3).setCellValue(invoice.getItemValueString("invoice.text")); row.getCell(3).setCellValue(invoice.getItemValueString("invoice.text"));
row.getCell(4).setCellValue(invoice.getItemValueDate("invoice.date")); row.getCell(4).setCellValue(invoice.getItemValueDate("invoice.date"));
row.getCell(5).setCellValue(invoice.getItemValueDate("invoice.duedate")); row.getCell(5).setCellValue(invoice.getItemValueDate("invoice.duedate"));

View file

@ -52,7 +52,9 @@
<td><h:link outcome="/pages/workitems/workitem"> <td><h:link outcome="/pages/workitems/workitem">
#{invoice.item['invoice.number']} #{invoice.item['invoice.number']}
<f:param name="id" value="#{invoice.item['$uniqueid']}" /> <f:param name="id" value="#{invoice.item['$uniqueid']}" />
</h:link></td> </h:link>
<h:outputText escape="false" value="#{invoice.item['_img']}" />
</td>
<td><h:outputText value="#{invoice.item['invoice.date']}"> <td><h:outputText value="#{invoice.item['invoice.date']}">

View file

@ -9,11 +9,7 @@
<h:panelGroup layout="block" styleClass="imixs-form-section" <h:panelGroup layout="block" styleClass="imixs-form-section"
id="paymentlist"> id="paymentlist">
<table class="imixsdatatable "> <table class="imixsdatatable ">