fixed excel copy funktion

This commit is contained in:
Ralph Soika 2022-02-10 15:52:56 +01:00
parent fa8d6b9990
commit 7f63cc8e79

View file

@ -139,7 +139,9 @@ public class ZahlungsavisExportAdapter extends POIFindReplaceAdapter {
XSSFRow referenceRow = sheet.getRow(cr.getRow());
int referenceRowPos = 16;
int rowPos = 16;
int lastRow = 19;// sheet.getLastRowNum();
//int lastRow = sheet.getLastRowNum();
int lastRow = 999;
logger.finest("Last rownum="+lastRow);
sheet.shiftRows(rowPos, lastRow, invoiceIDs.size(), true, true);
for (String invoiceID : invoiceIDs) {