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-87c2c4800839
master
tharcisio 2016-06-29 21:50:08 +00:00
parent d4f71d5eb8
commit 301fbc8006
4 changed files with 15 additions and 6 deletions

View File

@ -112,13 +112,20 @@ public class RenderTarifa implements ListitemRenderer {
}
lc.setParent(lstm);
if (t.getRuta() != null){
if (t.getRuta() != null) {
lc = new Listcell(t.getRuta().getPrefixo());
} else {
lc = new Listcell("");
}
lc.setParent(lstm);
if (t.getRuta() != null) {
lc = new Listcell(t.getRuta().getNumRuta());
} else {
lc = new Listcell("");
}
lc.setParent(lstm);
lstm.setAttribute("data", t);
}
}

View File

@ -2173,7 +2173,7 @@ busquedaTarifaController.lhTipoPuntoVenta.label = Canal de venta
busquedaTarifaController.lhCategoria.label = Tipo de pasaje
busquedaTarifaController.lhTramo.label = Tramo
busquedaTarifaController.lhOrgao.label = Instituición
busquedaTarifaController.lhLinha.label = Linea
busquedaTarifaController.lhLinha.label = Prefixo Linea
busquedaTarifaController.lhNumLinha.label = Número Linea
busquedaTarifaController.lhPedagio.label = Peaje
busquedaTarifaController.lhTaxa.label = Tasa de abordaje

View File

@ -2228,7 +2228,7 @@ busquedaTarifaController.lhTipoPuntoVenta.label = Canal de Venda
busquedaTarifaController.lhCategoria.label = Tipo de Passagem
busquedaTarifaController.lhTramo.label = Trecho
busquedaTarifaController.lhOrgao.label = Órgão
busquedaTarifaController.lhLinha.label = Linha
busquedaTarifaController.lhLinha.label = Prefixo Linha
busquedaTarifaController.lhNumLinha.label = Número Linha
busquedaTarifaController.lhPedagio.label = Pedágio
busquedaTarifaController.lhTaxa.label = Taxa de Embarque

View File

@ -122,6 +122,8 @@
label="${c:l('busquedaTarifaController.lhOrgao.label')}" sort="auto(orgaoConcedente.descOrgao)"/>
<listheader id="lhRuta" width="6%" image="/gui/img/builder.gif"
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>
</listbox>
</window>