/** @return the catalogoPais */ public List<SelectItem> getCatalogoPais() { try { List<BaseVO> lista = soporteServicio.consultarPaises(0); catalogoPais = UtilWeb.convertirSelectItem(lista); } catch (Exception e) { logger.error(e.getMessage(), e); } return catalogoPais; }
/** @return the catalogoRubro */ public List<SelectItem> getCatalogoRubro() { int idmaestro = UtilWeb.obtenerEnteroPropertieMaestro("maestroRubo", "aplicacionDatos"); try { List<BaseVO> lista = soporteServicio.listarCatalogoMaestro(idmaestro); catalogoRubro = UtilWeb.convertirSelectItem(lista); } catch (Exception e) { logger.error(e.getMessage(), e); } return catalogoRubro; }
/** @return the catalogoDepartamento */ public List<SelectItem> getCatalogoDepartamento() { try { List<BaseVO> lista = soporteServicio.listarCatalogoDepartamento(); catalogoDepartamento = UtilWeb.convertirSelectItem(lista); } catch (SQLException e) { logger.error(e.getMessage(), e); } catch (ConnectionException e) { logger.error(e.getMessage(), e); } return catalogoDepartamento; }
/** @return the catalogoArea */ public List<SelectItem> getCatalogoArea() { try { int idmaestro = UtilWeb.obtenerEnteroPropertieMaestro("maestroAreas", "aplicacionDatos"); List<BaseVO> lista = soporteServicio.listarCatalogoMaestro(idmaestro); catalogoArea = UtilWeb.convertirSelectItem(lista); } catch (SQLException e) { catalogoArea = new ArrayList<SelectItem>(); logger.error(e.getMessage(), e); } catch (Exception e) { catalogoArea = new ArrayList<SelectItem>(); logger.error(e.getMessage(), e); } return catalogoArea; }