fixed excel copy funktion
This commit is contained in:
parent
fa8d6b9990
commit
7f63cc8e79
1 changed files with 3 additions and 1 deletions
|
|
@ -139,7 +139,9 @@ public class ZahlungsavisExportAdapter extends POIFindReplaceAdapter {
|
||||||
XSSFRow referenceRow = sheet.getRow(cr.getRow());
|
XSSFRow referenceRow = sheet.getRow(cr.getRow());
|
||||||
int referenceRowPos = 16;
|
int referenceRowPos = 16;
|
||||||
int rowPos = 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);
|
sheet.shiftRows(rowPos, lastRow, invoiceIDs.size(), true, true);
|
||||||
|
|
||||||
for (String invoiceID : invoiceIDs) {
|
for (String invoiceID : invoiceIDs) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue