fixed bug#12424

dev:Thiago
qua:Wallysson

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@86220 d1611594-4594-4d17-8e1d-87c2c4800839
master
frederico 2018-10-16 21:00:55 +00:00
parent 325823d280
commit c264db7442
1 changed files with 1 additions and 9 deletions

View File

@ -879,15 +879,7 @@ public class EditarCatalogoDeRutaController extends MyGenericForwardComposer
List<Ruta> lsRuta = new ArrayList<Ruta>();
if (null != txtNumRuta && txtNumRuta.getValue() != null && Pattern.matches("[0-9]+", txtNumRuta.getValue().replace(".", "").replace("-", "")) == false) {
Messagebox.show(
Labels.getLabel("editarCatalogoDeRutaController.lblNumRutaInvalido.value"),
Labels.getLabel("editarCatalogoDeRutaController.window.title"),
Messagebox.OK, Messagebox.EXCLAMATION);
return;
}else {
lsRuta = rutaService.buscarNumRuta(txtNumRuta.getValue().toString());
}
lsRuta = rutaService.buscarNumRuta(txtNumRuta.getValue().toString());
if (radIda.isChecked()) {
ruta.setIndSentidoIda(Boolean.TRUE);