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
|
@ -24,14 +24,29 @@ public class RenderPrecioVentaja implements ListitemRenderer {
|
|||
Listcell lc = new Listcell(precioVentaja.getPrecioVentajaId() == null ? "" : precioVentaja.getPrecioVentajaId().toString());
|
||||
lc.setParent(lstm);
|
||||
|
||||
if(precioVentaja.getCorridaId() != null){
|
||||
lc = new Listcell(precioVentaja.getCorridaId().toString());
|
||||
lc.setParent(lstm);
|
||||
}else{
|
||||
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.setParent(lstm);
|
||||
|
|
Loading…
Reference in New Issue