ソースを参照

修复多列表格中行高度设置错误导致的pdf导出数据丢失问题

master
lee-hong 6年前
committed by GitHub
コミット
cba3fd3b26
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
  1. 5
      ureport2-core/src/main/java/com/bstek/ureport/model/Cell.java

5
ureport2-core/src/main/java/com/bstek/ureport/model/Cell.java

@ -650,7 +650,10 @@ public class Cell implements ReportCell {
int dif=totalLineHeight-totalRowHeight;
if(dif>0){
int rowHeight=row.getHeight();
row.setRealHeight(rowHeight+dif);
int newRowHeight = rowHeight+dif;
if(row.getRealHeight()< newRowHeight){
row.setRealHeight(newRowHeight);
}
}
}

読み込み中…
キャンセル
保存