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,7 +52,10 @@ public class RenderTarifa implements ListitemRenderer {
if (ApplicationProperties.getInstance().exibeTpp()) {
lc = new Listcell(t.getImporteTPP() == null ? "" : df.format(t.getImporteTPP()));
lc.setParent(lstm);
}
} else {
lc = new Listcell("");
lc.setParent(lstm);
}
lc = new Listcell(t.getImporteoutros() == null ? "" : df.format(t.getImporteoutros()));
lc.setParent(lstm);