fixes bug # 07800
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@58812 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
fc8a980cfd
commit
154fc6323b
|
@ -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()) {
|
||||||
|
|
Loading…
Reference in New Issue