thiago.penido 2016-01-28 12:04:57 +00:00
parent 0265ad2d40
commit ee97110016
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package com.rjconsultores.ventaboletos.web.gui.controladores.tarifas; package com.rjconsultores.ventaboletos.web.gui.controladores.tarifas;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections;
import java.util.List; import java.util.List;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
@ -73,6 +74,7 @@ public class BusquedaAlteracaoPrecoPedagioController extends MyGenericForwardCo
lsEmpresa = empresaService.obtenerTodos(); lsEmpresa = empresaService.obtenerTodos();
lsPracaPedagio = casetaPeajeService.obtenerTodos(); lsPracaPedagio = casetaPeajeService.obtenerTodos();
Collections.sort(lsPracaPedagio);
lsOrgaoConcedente = new ArrayList<OrgaoConcedente>(); lsOrgaoConcedente = new ArrayList<OrgaoConcedente>();
for (Integer orgaoConcedenteId : Constantes.ORGAOS_CONCEDENTES_CALCULO_ANTT) { for (Integer orgaoConcedenteId : Constantes.ORGAOS_CONCEDENTES_CALCULO_ANTT) {
lsOrgaoConcedente.add(orgaoConcedenteService.obtenerID(orgaoConcedenteId)); lsOrgaoConcedente.add(orgaoConcedenteService.obtenerID(orgaoConcedenteId));