daniel.zauli 2016-08-05 20:04:54 +00:00
parent 154fc6323b
commit 27073ddfa2
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public class RenderConfiguracionPacote implements ListitemRenderer {
Listcell lc = new Listcell((pacote.getPacoteId() != null ? pacote.getPacoteId().toString() : "")); Listcell lc = new Listcell((pacote.getPacoteId() != null ? pacote.getPacoteId().toString() : ""));
lc.setParent(lstm); lc.setParent(lstm);
lc = new Listcell(pacote.getNompacote()); lc = new Listcell(pacote.getNompacote() != null ? pacote.getNompacote() : "");
lc.setParent(lstm); lc.setParent(lstm);
lc = new Listcell(pacote.getRuta() != null ? pacote.getRuta().getDescruta() : "" ); lc = new Listcell(pacote.getRuta() != null ? pacote.getRuta().getDescruta() : "" );