fixes bug #6496
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@46730 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
548aa866bd
commit
c733e7d24d
|
@ -23,16 +23,31 @@ public class RenderPrecioVentaja implements ListitemRenderer {
|
||||||
|
|
||||||
Listcell lc = new Listcell(precioVentaja.getPrecioVentajaId() == null ? "" : precioVentaja.getPrecioVentajaId().toString());
|
Listcell lc = new Listcell(precioVentaja.getPrecioVentajaId() == null ? "" : precioVentaja.getPrecioVentajaId().toString());
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
lc = new Listcell(precioVentaja.getCorridaId().toString());
|
|
||||||
lc.setParent(lstm);
|
|
||||||
|
|
||||||
lc = new Listcell(precioVentaja.getRutaPrecioId().toString());
|
if(precioVentaja.getCorridaId() != null){
|
||||||
lc.setParent(lstm);
|
lc = new Listcell(precioVentaja.getCorridaId().toString());
|
||||||
|
lc.setParent(lstm);
|
||||||
lc = new Listcell(precioVentaja.getOrigenPrecioId().toString());
|
}else{
|
||||||
lc.setParent(lstm);
|
lc = new Listcell("");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(precioVentaja.getRutaPrecioId() != null){
|
||||||
|
lc = new Listcell(precioVentaja.getRutaPrecioId().toString());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
}else{
|
||||||
|
lc = new Listcell("");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(precioVentaja.getOrigenPrecioId() != null){
|
||||||
|
lc = new Listcell(precioVentaja.getOrigenPrecioId().toString());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
}else{
|
||||||
|
lc = new Listcell("");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
}
|
||||||
|
|
||||||
lc = new Listcell(precioVentaja.getDestinoPrecioId().toString());
|
lc = new Listcell(precioVentaja.getDestinoPrecioId().toString());
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue