fixes bug #6491
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@47235 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
824797a0fe
commit
ba05c75cc9
|
@ -16,9 +16,9 @@ public class RenderCasetaPeaje implements ListitemRenderer {
|
|||
lc.setParent(lstm);
|
||||
lc = new Listcell(cp.getDesccaseta() != null ? cp.getDesccaseta() : "");
|
||||
lc.setParent(lstm);
|
||||
lc = new Listcell(cp.getImporteIda() != null ? cp.getImporteIda().toString() : "");
|
||||
lc = new Listcell(cp.getImporteIda() != null ? cp.getImporteIda().toString().replace(".", ",") : "");
|
||||
lc.setParent(lstm);
|
||||
lc = new Listcell(cp.getImporteVuelta() != null ? cp.getImporteVuelta().toString() : "");
|
||||
lc = new Listcell(cp.getImporteVuelta() != null ? cp.getImporteVuelta().toString().replace(".", ",") : "");
|
||||
lc.setParent(lstm);
|
||||
}
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ public class RenderOrgaoConcedente implements ListitemRenderer {
|
|||
lc.setParent(lstm);
|
||||
|
||||
if(orgaoConcedente != null && orgaoConcedente.getIndicePeaje() != null) {
|
||||
lc = new Listcell(orgaoConcedente.getIndicePeaje().toString());
|
||||
lc = new Listcell(orgaoConcedente.getIndicePeaje().toString().replace(".", ","));
|
||||
} else {
|
||||
lc = new Listcell("0,0");
|
||||
}
|
||||
|
|
|
@ -63,9 +63,9 @@
|
|||
</row>
|
||||
<row>
|
||||
<label value="${c:l('busquedaOrgaoConcedenteController.indicePeaje.label')}" />
|
||||
<textbox id="txtIndicePeaje" mold="rounded" constraint="no empty, no negative "
|
||||
<textbox id="txtIndicePeaje" maxlength="8" mold="rounded" constraint="no empty, no negative, /[0-9]+(\,[0-9][0-9]?)?/ "
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"
|
||||
value="0.0" />
|
||||
value="0,0" />
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
|
|
Loading…
Reference in New Issue