瀏覽代碼

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

master
lee-hong 6 年前
提交者 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);
}
}
}

載入中…
取消
儲存