fixes bug # 07800

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@58812 d1611594-4594-4d17-8e1d-87c2c4800839
master
daniel.zauli 2016-08-05 20:02:12 +00:00
parent fc8a980cfd
commit 154fc6323b
1 changed files with 2 additions and 2 deletions

View File

@ -13,13 +13,13 @@ public class RenderConfiguracionPacote implements ListitemRenderer {
Pacote pacote = (Pacote) o; 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.setParent(lstm);
lc = new Listcell(pacote.getNompacote()); lc = new Listcell(pacote.getNompacote());
lc.setParent(lstm); lc.setParent(lstm);
lc = new Listcell(pacote.getRuta().getDescruta()); lc = new Listcell(pacote.getRuta() != null ? pacote.getRuta().getDescruta() : "" );
lc.setParent(lstm); lc.setParent(lstm);
if(pacote.getActivo()) { if(pacote.getActivo()) {