Conclusão mantis 6968

fixes bug 6968

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@51661 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago.penido 2015-12-29 16:24:32 +00:00
parent f84ad13b32
commit 996232008e
1 changed files with 5 additions and 4 deletions

View File

@ -31,6 +31,7 @@ import com.rjconsultores.ventaboletos.service.ClaseServicioService;
import com.rjconsultores.ventaboletos.service.EmpresaService;
import com.rjconsultores.ventaboletos.service.GrupoRutaService;
import com.rjconsultores.ventaboletos.service.OrgaoConcedenteService;
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
import com.rjconsultores.ventaboletos.web.utilerias.MyGenericForwardComposer;
import com.rjconsultores.ventaboletos.web.utilerias.MyListbox;
import com.rjconsultores.ventaboletos.web.utilerias.paginacion.HibernateSearchObject;
@ -106,11 +107,11 @@ public class BusquedaCatalogoDeRutaController extends MyGenericForwardComposer {
@Override
public void doAfterCompose(Component comp) throws Exception {
lsClaseServicio = claseServicioServicce.obtenerTodos();
lsEmpresa = UsuarioLogado.getUsuarioLogado().getEmpresa();
lsClaseServicio = claseServicioServicce.buscarPorEmpresasDoUsuario(lsEmpresa);
lsOrgaoConcedente = orgaoConcedenteService.obtenerTodos();
lsGrupoRuta = grupoRutaService.obtenerTodos();
lsEmpresa = empresaService.obtenerTodos();
lsGrupoRuta = grupoRutaService.obtenerTodos();
super.doAfterCompose(comp);
rutaList.setItemRenderer(new RenderCatalogoDeRutas());