fixed bug #7585: Modificação na tela Alteração de Preço do meu Cálculo Preço e Adm. Preço
mel.: alterar o cabeçalho da coluna linha para prefixo linha mel.: acrescentar no grid o campo de número da linha git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@57464 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
d4f71d5eb8
commit
301fbc8006
|
@ -111,11 +111,18 @@ public class RenderTarifa implements ListitemRenderer {
|
||||||
lc = new Listcell("");
|
lc = new Listcell("");
|
||||||
}
|
}
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
if (t.getRuta() != null){
|
if (t.getRuta() != null) {
|
||||||
lc = new Listcell(t.getRuta().getPrefixo());
|
lc = new Listcell(t.getRuta().getPrefixo());
|
||||||
} else {
|
} else {
|
||||||
lc = new Listcell("");
|
lc = new Listcell("");
|
||||||
|
}
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
if (t.getRuta() != null) {
|
||||||
|
lc = new Listcell(t.getRuta().getNumRuta());
|
||||||
|
} else {
|
||||||
|
lc = new Listcell("");
|
||||||
}
|
}
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
|
|
@ -2173,7 +2173,7 @@ busquedaTarifaController.lhTipoPuntoVenta.label = Canal de venta
|
||||||
busquedaTarifaController.lhCategoria.label = Tipo de pasaje
|
busquedaTarifaController.lhCategoria.label = Tipo de pasaje
|
||||||
busquedaTarifaController.lhTramo.label = Tramo
|
busquedaTarifaController.lhTramo.label = Tramo
|
||||||
busquedaTarifaController.lhOrgao.label = Instituición
|
busquedaTarifaController.lhOrgao.label = Instituición
|
||||||
busquedaTarifaController.lhLinha.label = Linea
|
busquedaTarifaController.lhLinha.label = Prefixo Linea
|
||||||
busquedaTarifaController.lhNumLinha.label = Número Linea
|
busquedaTarifaController.lhNumLinha.label = Número Linea
|
||||||
busquedaTarifaController.lhPedagio.label = Peaje
|
busquedaTarifaController.lhPedagio.label = Peaje
|
||||||
busquedaTarifaController.lhTaxa.label = Tasa de abordaje
|
busquedaTarifaController.lhTaxa.label = Tasa de abordaje
|
||||||
|
|
|
@ -2228,7 +2228,7 @@ busquedaTarifaController.lhTipoPuntoVenta.label = Canal de Venda
|
||||||
busquedaTarifaController.lhCategoria.label = Tipo de Passagem
|
busquedaTarifaController.lhCategoria.label = Tipo de Passagem
|
||||||
busquedaTarifaController.lhTramo.label = Trecho
|
busquedaTarifaController.lhTramo.label = Trecho
|
||||||
busquedaTarifaController.lhOrgao.label = Órgão
|
busquedaTarifaController.lhOrgao.label = Órgão
|
||||||
busquedaTarifaController.lhLinha.label = Linha
|
busquedaTarifaController.lhLinha.label = Prefixo Linha
|
||||||
busquedaTarifaController.lhNumLinha.label = Número Linha
|
busquedaTarifaController.lhNumLinha.label = Número Linha
|
||||||
busquedaTarifaController.lhPedagio.label = Pedágio
|
busquedaTarifaController.lhPedagio.label = Pedágio
|
||||||
busquedaTarifaController.lhTaxa.label = Taxa de Embarque
|
busquedaTarifaController.lhTaxa.label = Taxa de Embarque
|
||||||
|
|
|
@ -122,6 +122,8 @@
|
||||||
label="${c:l('busquedaTarifaController.lhOrgao.label')}" sort="auto(orgaoConcedente.descOrgao)"/>
|
label="${c:l('busquedaTarifaController.lhOrgao.label')}" sort="auto(orgaoConcedente.descOrgao)"/>
|
||||||
<listheader id="lhRuta" width="6%" image="/gui/img/builder.gif"
|
<listheader id="lhRuta" width="6%" image="/gui/img/builder.gif"
|
||||||
label="${c:l('busquedaTarifaController.lhLinha.label')}" sort="auto(ruta.prefixo)"/>
|
label="${c:l('busquedaTarifaController.lhLinha.label')}" sort="auto(ruta.prefixo)"/>
|
||||||
|
<listheader id="lhNumRuta" width="6%" image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('busquedaTarifaController.lhNumLinha.label')}" sort="auto(ruta.numRuta)"/>
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
</window>
|
</window>
|
||||||
|
|
Loading…
Reference in New Issue