fixes bug#18664
dev:wilian qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@100690 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
710feb8312
commit
496c8bdd9f
|
@ -43,6 +43,9 @@ public class RenderEstado implements ListitemRenderer {
|
|||
|
||||
lc = new Listcell(estado.getCveestado());
|
||||
lc.setParent(lstm);
|
||||
|
||||
lc = new Listcell(estado.getCodibge() != null ? estado.getCodibge().toString() : "");
|
||||
lc.setParent(lstm);
|
||||
|
||||
BigDecimal icms = estado.getIcms();
|
||||
if (icms != null) {
|
||||
|
|
|
@ -5101,6 +5101,7 @@ busquedaEstadoController.txtNombre.label = Estado
|
|||
busquedaEstadoController.lhPais.label = País
|
||||
busquedaEstadoController.ICMS.label = ICMS
|
||||
busquedaEstadoController.UF.label = UF
|
||||
busquedaEstadoController.CODIBGE.label = Cod. IBGE
|
||||
|
||||
# Pantalla Editar Estado
|
||||
editarEstadoController.window.title = Estado
|
||||
|
|
|
@ -5339,6 +5339,7 @@ busquedaEstadoController.txtNombre.label = Estado
|
|||
busquedaEstadoController.lhPais.label = País
|
||||
busquedaEstadoController.ICMS.label = ICMS Preço
|
||||
busquedaEstadoController.UF.label = UF
|
||||
busquedaEstadoController.CODIBGE.label = Cód. IBGE
|
||||
|
||||
# Pantalla Editar Estado
|
||||
editarEstadoController.window.title = Estado
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<window id="winBusquedaEstado"
|
||||
title="${c:l('busquedaEstadoController.window.title')}"
|
||||
apply="${busquedaEstadoController}" contentStyle="overflow:auto"
|
||||
height="415px" width="860px" border="normal">
|
||||
height="415px" width="880px" border="normal">
|
||||
|
||||
<toolbar>
|
||||
<button id="btnRefresh" image="/gui/img/refresh.png"
|
||||
|
@ -74,6 +74,9 @@
|
|||
<listheader image="/gui/img/builder.gif" width="7%"
|
||||
label="${c:l('busquedaEstadoController.UF.label')}"
|
||||
sort="auto(cveestado)" />
|
||||
<listheader image="/gui/img/builder.gif" width="13%"
|
||||
label="${c:l('busquedaEstadoController.CODIBGE.label')}"
|
||||
sort="auto(codibge)" />
|
||||
<listheader image="/gui/img/builder.gif" width="13%"
|
||||
label="${c:l('busquedaEstadoController.ICMS.label')}"
|
||||
sort="auto(icms)" />
|
||||
|
|
Loading…
Reference in New Issue