[fixes bug #5205]
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@34868 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
e734e119e2
commit
57ad5b42d4
|
@ -107,7 +107,6 @@ public class EditarTarifaController extends MyGenericForwardComposer {
|
|||
private Textbox txtDescripcionTramo;
|
||||
private List<Marca> lsMarcas;
|
||||
private List<ClaseServicio> lsClaseServico;
|
||||
private List<Tramo> lsTramos;
|
||||
private List<Moneda> lsMonedas;
|
||||
private List<VigenciaTarifa> lsVigenciaTarifa;
|
||||
private List<Categoria> lsCategoria;
|
||||
|
@ -205,14 +204,6 @@ public class EditarTarifaController extends MyGenericForwardComposer {
|
|||
this.lsMonedas = lsMonedas;
|
||||
}
|
||||
|
||||
public List<Tramo> getLsTramos() {
|
||||
return lsTramos;
|
||||
}
|
||||
|
||||
public void setLsTramos(List<Tramo> lsTramos) {
|
||||
this.lsTramos = lsTramos;
|
||||
}
|
||||
|
||||
public Tarifa getTarifa() {
|
||||
return tarifa;
|
||||
}
|
||||
|
@ -288,10 +279,6 @@ public class EditarTarifaController extends MyGenericForwardComposer {
|
|||
lsMonedas.add(null);
|
||||
lsMonedas.addAll(monedaService.obtenerTodos());
|
||||
|
||||
lsTramos = new ArrayList<Tramo>();
|
||||
lsTramos.add(null);
|
||||
lsTramos.addAll(tramoService.obtenerTodos());
|
||||
|
||||
lsVigenciaTarifa = new ArrayList<VigenciaTarifa>();
|
||||
lsVigenciaTarifa.add(null);
|
||||
lsVigenciaTarifa.addAll(vigenciaTarifaService.obtenerTodos());
|
||||
|
|
|
@ -89,7 +89,6 @@ public class EditarTarifaOficialController extends MyGenericForwardComposer {
|
|||
private Textbox txtDescripcionTramo;
|
||||
private List<Marca> lsMarcas;
|
||||
private List<ClaseServicio> lsClaseServico;
|
||||
private List<Tramo> lsTramos;
|
||||
private List<Moneda> lsMonedas;
|
||||
private List<Categoria> lsCategoria;
|
||||
private List<TipoPuntoVenta> lsTipoPontoVenta;
|
||||
|
@ -176,14 +175,6 @@ public class EditarTarifaOficialController extends MyGenericForwardComposer {
|
|||
this.lsMonedas = lsMonedas;
|
||||
}
|
||||
|
||||
public List<Tramo> getLsTramos() {
|
||||
return lsTramos;
|
||||
}
|
||||
|
||||
public void setLsTramos(List<Tramo> lsTramos) {
|
||||
this.lsTramos = lsTramos;
|
||||
}
|
||||
|
||||
public TarifaOficial getTarifaOficial() {
|
||||
return tarifaOficial;
|
||||
}
|
||||
|
@ -242,11 +233,7 @@ public class EditarTarifaOficialController extends MyGenericForwardComposer {
|
|||
lsMonedas = new ArrayList<Moneda>();
|
||||
lsMonedas.add(null);
|
||||
lsMonedas.addAll(monedaService.obtenerTodos());
|
||||
|
||||
lsTramos = new ArrayList<Tramo>();
|
||||
lsTramos.add(null);
|
||||
lsTramos.addAll(tramoService.obtenerTodos());
|
||||
|
||||
|
||||
lsCategoria = new ArrayList<Categoria>();
|
||||
lsCategoria.add(null);
|
||||
lsCategoria.addAll(categoriaService.obtenerTodos());
|
||||
|
|
|
@ -70,13 +70,6 @@
|
|||
<textbox id="txtPrecioRedAbierto" value="@{winEditarTarifaOficial$composer.tarifaOficial.precioredabierto,converter=com.rjconsultores.ventaboletos.web.utilerias.StringDecimalToDecimalConverter}"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" precision="7" scale="2"/>
|
||||
</row>
|
||||
<row visible="false">
|
||||
<label value="${c:l('busquedaTarifaController.lhTramo.label')}"/>
|
||||
<combobox id="cmbTramo" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar" disabled="true"
|
||||
mold="rounded" buttonVisible="true" width="90%"
|
||||
model="@{winEditarTarifaOficial$composer.lsTramos}"
|
||||
selectedItem="@{winEditarTarifaOficial$composer.tarifaOficial.tramo}"/>
|
||||
</row>
|
||||
<row>
|
||||
<label value="${c:l('busquedaTarifaController.lhTramo.label')}"/>
|
||||
<textbox id="txtDescripcionTramo" width="90%" disabled="true"/>
|
||||
|
|
|
@ -94,13 +94,6 @@
|
|||
model="@{winEditarTarifa$composer.lsVigenciaTarifa}"
|
||||
selectedItem="@{winEditarTarifa$composer.tarifa.vigenciaTarifa}"/>
|
||||
</row>
|
||||
<row visible="false">
|
||||
<label value="${c:l('busquedaTarifaController.lhTramo.label')}"/>
|
||||
<combobox id="cmbTramo" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar" disabled="true"
|
||||
mold="rounded" buttonVisible="true" width="90%"
|
||||
model="@{winEditarTarifa$composer.lsTramos}"
|
||||
selectedItem="@{winEditarTarifa$composer.tarifa.tramo}"/>
|
||||
</row>
|
||||
<row>
|
||||
<label value="${c:l('busquedaTarifaController.lhTramo.label')}"/>
|
||||
<textbox id="txtDescripcionTramo" width="90%" disabled="true"/>
|
||||
|
|
Loading…
Reference in New Issue