diff --git a/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderConfiguracionPacote.java b/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderConfiguracionPacote.java index 433e1d8c2..108ec2349 100644 --- a/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderConfiguracionPacote.java +++ b/src/java/com/rjconsultores/ventaboletos/web/utilerias/render/RenderConfiguracionPacote.java @@ -13,13 +13,13 @@ public class RenderConfiguracionPacote implements ListitemRenderer { Pacote pacote = (Pacote) o; - Listcell lc = new Listcell(pacote.getPacoteId().toString()); + Listcell lc = new Listcell((pacote.getPacoteId() != null ? pacote.getPacoteId().toString() : "")); lc.setParent(lstm); lc = new Listcell(pacote.getNompacote()); lc.setParent(lstm); - lc = new Listcell(pacote.getRuta().getDescruta()); + lc = new Listcell(pacote.getRuta() != null ? pacote.getRuta().getDescruta() : "" ); lc.setParent(lstm); if(pacote.getActivo()) {