Ver a proveniência

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

master
lee-hong há 6 anos
cometido por GitHub
ascendente
cometimento
cba3fd3b26
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 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);
}
}
}

Carregando…
Cancelar
Guardar