Bläddra i källkod

修复采用数据映射单元格在分页时拆分后新的单元格不能显示映射后值的BUG

master
jacky6024 7 år sedan
förälder
incheckning
7433f2d0d5
  1. 2
      ureport2-core/src/main/java/com/bstek/ureport/build/paging/BasePagination.java

2
ureport2-core/src/main/java/com/bstek/ureport/build/paging/BasePagination.java

@ -75,6 +75,7 @@ public abstract class BasePagination {
continue;
}else{
Cell newCell=cell.newCell();
newCell.setFormatData(cell.getFormatData());
newCell.setForPaging(true);
int leftSpan=rowSize-pageRowNumber;
if(leftSpan>0){
@ -191,6 +192,7 @@ public abstract class BasePagination {
}
Cell newCell=cell.newCell();
newCell.setRow(newRow);
newCell.setFormatData(cell.getFormatData());
newCell.setData(cell.getData());
newCell.setCustomCellStyle(cell.getCustomCellStyle());
newCell.setFormatData(cell.getFormatData());

Laddar…
Avbryt
Spara