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
|
@ -44,6 +44,9 @@ public class RenderEstado implements ListitemRenderer {
|
||||||
lc = new Listcell(estado.getCveestado());
|
lc = new Listcell(estado.getCveestado());
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(estado.getCodibge() != null ? estado.getCodibge().toString() : "");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
BigDecimal icms = estado.getIcms();
|
BigDecimal icms = estado.getIcms();
|
||||||
if (icms != null) {
|
if (icms != null) {
|
||||||
lc = new Listcell(icms.setScale(3).toString());
|
lc = new Listcell(icms.setScale(3).toString());
|
||||||
|
|
|
@ -5101,6 +5101,7 @@ busquedaEstadoController.txtNombre.label = Estado
|
||||||
busquedaEstadoController.lhPais.label = País
|
busquedaEstadoController.lhPais.label = País
|
||||||
busquedaEstadoController.ICMS.label = ICMS
|
busquedaEstadoController.ICMS.label = ICMS
|
||||||
busquedaEstadoController.UF.label = UF
|
busquedaEstadoController.UF.label = UF
|
||||||
|
busquedaEstadoController.CODIBGE.label = Cod. IBGE
|
||||||
|
|
||||||
# Pantalla Editar Estado
|
# Pantalla Editar Estado
|
||||||
editarEstadoController.window.title = Estado
|
editarEstadoController.window.title = Estado
|
||||||
|
|
|
@ -5339,6 +5339,7 @@ busquedaEstadoController.txtNombre.label = Estado
|
||||||
busquedaEstadoController.lhPais.label = País
|
busquedaEstadoController.lhPais.label = País
|
||||||
busquedaEstadoController.ICMS.label = ICMS Preço
|
busquedaEstadoController.ICMS.label = ICMS Preço
|
||||||
busquedaEstadoController.UF.label = UF
|
busquedaEstadoController.UF.label = UF
|
||||||
|
busquedaEstadoController.CODIBGE.label = Cód. IBGE
|
||||||
|
|
||||||
# Pantalla Editar Estado
|
# Pantalla Editar Estado
|
||||||
editarEstadoController.window.title = Estado
|
editarEstadoController.window.title = Estado
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<window id="winBusquedaEstado"
|
<window id="winBusquedaEstado"
|
||||||
title="${c:l('busquedaEstadoController.window.title')}"
|
title="${c:l('busquedaEstadoController.window.title')}"
|
||||||
apply="${busquedaEstadoController}" contentStyle="overflow:auto"
|
apply="${busquedaEstadoController}" contentStyle="overflow:auto"
|
||||||
height="415px" width="860px" border="normal">
|
height="415px" width="880px" border="normal">
|
||||||
|
|
||||||
<toolbar>
|
<toolbar>
|
||||||
<button id="btnRefresh" image="/gui/img/refresh.png"
|
<button id="btnRefresh" image="/gui/img/refresh.png"
|
||||||
|
@ -74,6 +74,9 @@
|
||||||
<listheader image="/gui/img/builder.gif" width="7%"
|
<listheader image="/gui/img/builder.gif" width="7%"
|
||||||
label="${c:l('busquedaEstadoController.UF.label')}"
|
label="${c:l('busquedaEstadoController.UF.label')}"
|
||||||
sort="auto(cveestado)" />
|
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%"
|
<listheader image="/gui/img/builder.gif" width="13%"
|
||||||
label="${c:l('busquedaEstadoController.ICMS.label')}"
|
label="${c:l('busquedaEstadoController.ICMS.label')}"
|
||||||
sort="auto(icms)" />
|
sort="auto(icms)" />
|
||||||
|
|
Loading…
Reference in New Issue