alexandre.lima 2017-08-10 19:31:52 +00:00
parent 8cdf762585
commit b630366735
1 changed files with 4 additions and 1 deletions

View File

@ -52,6 +52,9 @@ public class RenderTarifa implements ListitemRenderer {
if (ApplicationProperties.getInstance().exibeTpp()) { if (ApplicationProperties.getInstance().exibeTpp()) {
lc = new Listcell(t.getImporteTPP() == null ? "" : df.format(t.getImporteTPP())); lc = new Listcell(t.getImporteTPP() == null ? "" : df.format(t.getImporteTPP()));
lc.setParent(lstm); lc.setParent(lstm);
} else {
lc = new Listcell("");
lc.setParent(lstm);
} }
lc = new Listcell(t.getImporteoutros() == null ? "" : df.format(t.getImporteoutros())); lc = new Listcell(t.getImporteoutros() == null ? "" : df.format(t.getImporteoutros()));