From ee97110016ec0497bf09791fafd64d68dd9127bc Mon Sep 17 00:00:00 2001 From: "thiago.penido" Date: Thu, 28 Jan 2016 12:04:57 +0000 Subject: [PATCH] fixes bug 6971 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@52349 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../tarifas/BusquedaAlteracaoPrecoPedagioController.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/BusquedaAlteracaoPrecoPedagioController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/BusquedaAlteracaoPrecoPedagioController.java index a6aef50a0..f1d655517 100644 --- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/BusquedaAlteracaoPrecoPedagioController.java +++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/tarifas/BusquedaAlteracaoPrecoPedagioController.java @@ -1,6 +1,7 @@ package com.rjconsultores.ventaboletos.web.gui.controladores.tarifas; import java.util.ArrayList; +import java.util.Collections; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; @@ -73,6 +74,7 @@ public class BusquedaAlteracaoPrecoPedagioController extends MyGenericForwardCo lsEmpresa = empresaService.obtenerTodos(); lsPracaPedagio = casetaPeajeService.obtenerTodos(); + Collections.sort(lsPracaPedagio); lsOrgaoConcedente = new ArrayList(); for (Integer orgaoConcedenteId : Constantes.ORGAOS_CONCEDENTES_CALCULO_ANTT) { lsOrgaoConcedente.add(orgaoConcedenteService.obtenerID(orgaoConcedenteId));