general-library-union 3.2.47 → 3.2.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/general-library-union.mjs +5 -0
- package/esm2022/public-api.mjs +183 -0
- package/esm2022/src/app/core/componentes/breadcrumb/breadcrumb.component.mjs +40 -0
- package/esm2022/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.mjs +28 -0
- package/esm2022/src/app/core/componentes/filtro-general/filtro-general.component.mjs +203 -0
- package/esm2022/src/app/core/componentes/footer/footer.component.mjs +16 -0
- package/esm2022/src/app/core/componentes/formulariodinamico/formulariodinamico.component.mjs +276 -0
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/Cambio.mjs +11 -0
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.mjs +124 -0
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.mjs +73 -0
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.mjs +59 -0
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.mjs +21 -0
- package/esm2022/src/app/core/componentes/inicio-component/inicio-component.component.mjs +72 -0
- package/esm2022/src/app/core/componentes/menu/menu.component.mjs +37 -0
- package/esm2022/src/app/core/componentes/tabla-general/tabla-general.component.mjs +93 -0
- package/esm2022/src/app/core/core.module.mjs +23 -0
- package/esm2022/src/app/core/errores/authentication.error.mjs +7 -0
- package/esm2022/src/app/core/modelos/error-response.model.mjs +2 -0
- package/esm2022/src/app/core/modelos/table-column.model.mjs +2 -0
- package/esm2022/src/app/core/modelos/user.model.mjs +7 -0
- package/esm2022/src/app/core/plantilla-general/plantilla-general.template.mjs +230 -0
- package/esm2022/src/app/core/servicios/auth.service.mjs +185 -0
- package/esm2022/src/app/core/servicios/cargar-control-funcionalidad.service.mjs +54 -0
- package/esm2022/src/app/core/servicios/click-posicion.service.mjs +20 -0
- package/esm2022/src/app/core/servicios/data-exporter-table.utils.mjs +64 -0
- package/esm2022/src/app/core/servicios/error-interceptor.service.mjs +214 -0
- package/esm2022/src/app/core/servicios/guardias/auth.guard.mjs +66 -0
- package/esm2022/src/app/core/servicios/guardias/publico.guard.mjs +35 -0
- package/esm2022/src/app/core/servicios/interceptores/loading-interceptor.mjs +37 -0
- package/esm2022/src/app/core/servicios/interceptores/token-interceptor.service.mjs +180 -0
- package/esm2022/src/app/core/servicios/loading.service.mjs +43 -0
- package/esm2022/src/app/core/servicios/menu.service.mjs +146 -0
- package/esm2022/src/app/core/servicios/spinner-service.mjs +22 -0
- package/esm2022/src/app/core/servicios/storage.service.mjs +68 -0
- package/esm2022/src/app/core/servicios/template.service.mjs +99 -0
- package/esm2022/src/app/core/servicios/toast.service.mjs +120 -0
- package/esm2022/src/app/core/servicios/utils.service.mjs +349 -0
- package/esm2022/src/app/core/sharedlib.module.mjs +16 -0
- package/esm2022/src/app/core/utilidades/color.util.mjs +177 -0
- package/esm2022/src/app/layout/api/menuchangeevent.mjs +2 -0
- package/esm2022/src/app/layout/app.breadcrumb.component.mjs +71 -0
- package/esm2022/src/app/layout/app.footer.component.mjs +18 -0
- package/esm2022/src/app/layout/app.layout.component.mjs +188 -0
- package/esm2022/src/app/layout/app.layout.module.mjs +15 -0
- package/esm2022/src/app/layout/app.menu.component.mjs +51 -0
- package/esm2022/src/app/layout/app.menu.service.mjs +24 -0
- package/esm2022/src/app/layout/app.menuitem.component.mjs +296 -0
- package/esm2022/src/app/layout/app.menuprofile.component.mjs +78 -0
- package/esm2022/src/app/layout/app.rightmenu.component.mjs +24 -0
- package/esm2022/src/app/layout/app.sidebar.component.mjs +92 -0
- package/esm2022/src/app/layout/app.topbar.component.mjs +346 -0
- package/esm2022/src/app/layout/service/app.layout.service.mjs +134 -0
- package/esm2022/src/app/publico/pages/login/login.page.mjs +132 -0
- package/esm2022/src/app/publico/pages/not-found/not-found.page.mjs +51 -0
- package/esm2022/src/app/publico/pages/seleccion-rol/seleccion-rol.component.mjs +167 -0
- package/esm2022/src/app/publico/pages/timeout/timeout.page.mjs +20 -0
- package/esm2022/src/app/seguridad/constantes/ConstantesGenerales.mjs +30 -0
- package/esm2022/src/app/seguridad/constantes/ReporteEntradaConstantes.mjs +19 -0
- package/esm2022/src/app/seguridad/modelos/AplicacionModel.mjs +8 -0
- package/esm2022/src/app/seguridad/modelos/ArchivoPortalModel.mjs +14 -0
- package/esm2022/src/app/seguridad/modelos/AtributoPuntoModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/AtributoSSOportalModel.mjs +17 -0
- package/esm2022/src/app/seguridad/modelos/AuditoriaArchivoModel.mjs +11 -0
- package/esm2022/src/app/seguridad/modelos/CargueLineaModel.mjs +13 -0
- package/esm2022/src/app/seguridad/modelos/ColoresRGB.mjs +18 -0
- package/esm2022/src/app/seguridad/modelos/ColumnaFuenteModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/ColumnaWraperModel.mjs +6 -0
- package/esm2022/src/app/seguridad/modelos/ComplementoModel.mjs +7 -0
- package/esm2022/src/app/seguridad/modelos/ComponentePaginaModel.mjs +21 -0
- package/esm2022/src/app/seguridad/modelos/ConexionModel.mjs +14 -0
- package/esm2022/src/app/seguridad/modelos/ContenidoHtmlPortalModel.mjs +21 -0
- package/esm2022/src/app/seguridad/modelos/ControlFuncionModel.mjs +8 -0
- package/esm2022/src/app/seguridad/modelos/CorreoModel.mjs +35 -0
- package/esm2022/src/app/seguridad/modelos/CorreoOrgEmpModModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/CorreoWSModel.mjs +37 -0
- package/esm2022/src/app/seguridad/modelos/CruceRecursoPuntoModel.mjs +14 -0
- package/esm2022/src/app/seguridad/modelos/DatoInicioModel.mjs +6 -0
- package/esm2022/src/app/seguridad/modelos/EjecucionReporteDataModel.mjs +14 -0
- package/esm2022/src/app/seguridad/modelos/EmpresaModel.mjs +25 -0
- package/esm2022/src/app/seguridad/modelos/EmpresaSeguridadModel.mjs +19 -0
- package/esm2022/src/app/seguridad/modelos/EntradaComplementoModel.mjs +7 -0
- package/esm2022/src/app/seguridad/modelos/EtiquetaModel.mjs +5 -0
- package/esm2022/src/app/seguridad/modelos/Etiquetas.mjs +12 -0
- package/esm2022/src/app/seguridad/modelos/ForeingWraperModel.mjs +6 -0
- package/esm2022/src/app/seguridad/modelos/FuenteCampoAtributoModel.mjs +16 -0
- package/esm2022/src/app/seguridad/modelos/FuenteCampoModel.mjs +17 -0
- package/esm2022/src/app/seguridad/modelos/FuenteDato.mjs +19 -0
- package/esm2022/src/app/seguridad/modelos/FuenteEntradaModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/FuenteGeneralModel.mjs +37 -0
- package/esm2022/src/app/seguridad/modelos/FuenteLineaServicioModel.mjs +16 -0
- package/esm2022/src/app/seguridad/modelos/FuenteProcesoGeneralModel.mjs +11 -0
- package/esm2022/src/app/seguridad/modelos/FuenteServicioModel.mjs +51 -0
- package/esm2022/src/app/seguridad/modelos/FuncionalidadModel.mjs +10 -0
- package/esm2022/src/app/seguridad/modelos/GeneralModel.mjs +15 -0
- package/esm2022/src/app/seguridad/modelos/GrupoAccesoModel.mjs +7 -0
- package/esm2022/src/app/seguridad/modelos/GrupoControlFuncionModel.mjs +10 -0
- package/esm2022/src/app/seguridad/modelos/GrupoFuenteModel.mjs +13 -0
- package/esm2022/src/app/seguridad/modelos/GrupoPermisoModel.mjs +14 -0
- package/esm2022/src/app/seguridad/modelos/JoinFromModel.mjs +5 -0
- package/esm2022/src/app/seguridad/modelos/ListaServicioModel.mjs +17 -0
- package/esm2022/src/app/seguridad/modelos/LlaveForaneaModel.mjs +7 -0
- package/esm2022/src/app/seguridad/modelos/LoginModel.mjs +15 -0
- package/esm2022/src/app/seguridad/modelos/MensajeSistemaModel.mjs +8 -0
- package/esm2022/src/app/seguridad/modelos/MenuPortalModel.mjs +5 -0
- package/esm2022/src/app/seguridad/modelos/ModulosModel.mjs +18 -0
- package/esm2022/src/app/seguridad/modelos/ObjetoReporteModel.mjs +6 -0
- package/esm2022/src/app/seguridad/modelos/PaginaPortalModel.mjs +20 -0
- package/esm2022/src/app/seguridad/modelos/ParametroComponenteModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/ParametrosGeneralModel.mjs +15 -0
- package/esm2022/src/app/seguridad/modelos/PermisoFuncionModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/PermisocontenidoModel.mjs +20 -0
- package/esm2022/src/app/seguridad/modelos/PeticionModel.mjs +16 -0
- package/esm2022/src/app/seguridad/modelos/PreguntaSeguridadModel.mjs +7 -0
- package/esm2022/src/app/seguridad/modelos/PropiedadModel.mjs +10 -0
- package/esm2022/src/app/seguridad/modelos/PublicacionWebModel.mjs +27 -0
- package/esm2022/src/app/seguridad/modelos/PuntoProcesoModel.mjs +7 -0
- package/esm2022/src/app/seguridad/modelos/RecursoPunto.mjs +13 -0
- package/esm2022/src/app/seguridad/modelos/RecursoPuntoModel.mjs +13 -0
- package/esm2022/src/app/seguridad/modelos/ReporteBanda.mjs +8 -0
- package/esm2022/src/app/seguridad/modelos/ReporteColumna.mjs +33 -0
- package/esm2022/src/app/seguridad/modelos/ReporteColumnario.mjs +69 -0
- package/esm2022/src/app/seguridad/modelos/ReporteColumnarioMarcador.mjs +24 -0
- package/esm2022/src/app/seguridad/modelos/ReporteEntradaModel.mjs +20 -0
- package/esm2022/src/app/seguridad/modelos/ReporteFuenteModel.mjs +124 -0
- package/esm2022/src/app/seguridad/modelos/ReporteMarcador.mjs +40 -0
- package/esm2022/src/app/seguridad/modelos/ReporteSoporte.mjs +10 -0
- package/esm2022/src/app/seguridad/modelos/ReporteTabla.mjs +13 -0
- package/esm2022/src/app/seguridad/modelos/RespuestaModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/RolModel.mjs +39 -0
- package/esm2022/src/app/seguridad/modelos/ServidorCorreoModel.mjs +28 -0
- package/esm2022/src/app/seguridad/modelos/SistemaMensajeModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/SitioPortalModel.mjs +25 -0
- package/esm2022/src/app/seguridad/modelos/TablaFromModel.mjs +5 -0
- package/esm2022/src/app/seguridad/modelos/TareasModel.mjs +54 -0
- package/esm2022/src/app/seguridad/modelos/TextoModel.mjs +9 -0
- package/esm2022/src/app/seguridad/modelos/TipoEtiqueta.mjs +8 -0
- package/esm2022/src/app/seguridad/modelos/UnionModel.mjs +12 -0
- package/esm2022/src/app/seguridad/modelos/UsuarioModel.mjs +53 -0
- package/esm2022/src/app/seguridad/modelos/UsuariogrupoModel.mjs +24 -0
- package/esm2022/src/app/seguridad/modelos/aplicacion-propiedad-model.mjs +15 -0
- package/esm2022/src/app/seguridad/modelos/contenidoCorreoModel.mjs +10 -0
- package/esm2022/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.mjs +154 -0
- package/esm2022/src/app/shared/servicios/cargar-archivos.service.mjs +54 -0
- package/esm2022/src/app/shared/servicios/cargar-mapas.service.mjs +46 -0
- package/esm2022/src/app/shared/servicios/encriptado-basico.service.mjs +53 -0
- package/esm2022/src/app/shared/servicios/general.service.mjs +104 -0
- package/esm2022/src/app/shared/servicios/parametros-navegacion.service.mjs +21 -0
- package/esm2022/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.mjs +378 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.mjs +187 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.mjs +85 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.mjs +347 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.mjs +206 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.mjs +327 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.mjs +1590 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.mjs +105 -0
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.mjs +114 -0
- package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.mjs +597 -0
- package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.mjs +177 -0
- package/esm2022/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.mjs +769 -0
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.mjs +331 -0
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.mjs +95 -0
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.mjs +675 -0
- package/esm2022/src/app/webcommon/pipes/dashboard.pipe.mjs +86 -0
- package/esm2022/src/app/webcommon/pipes/fuente.pipe.mjs +201 -0
- package/esm2022/src/app/webcommon/pipes/general.pipe.mjs +918 -0
- package/esm2022/src/app/webcommon/pipes/reporte-columnario.pipe.mjs +115 -0
- package/esm2022/src/app/webcommon/pipes/reporte-fuente.pipe.mjs +301 -0
- package/esm2022/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.mjs +267 -0
- package/esm2022/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.mjs +128 -0
- package/esm2022/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.mjs +73 -0
- package/esm2022/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.mjs +293 -0
- package/esm2022/src/app/webcommon/popups/popup-recurso/popup-recurso.component.mjs +269 -0
- package/esm2022/src/app/webcommon/popups/popup-reporte/popup-reporte.component.mjs +563 -0
- package/esm2022/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.mjs +64 -0
- package/esm2022/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.mjs +162 -0
- package/esm2022/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.mjs +89 -0
- package/esm2022/src/app/webcommon/services/carguelinea.service.mjs +69 -0
- package/esm2022/src/app/webcommon/services/dashboard.service.mjs +253 -0
- package/esm2022/src/app/webcommon/services/ejecucionreporte.service.mjs +114 -0
- package/esm2022/src/app/webcommon/services/fechaUtils.service.mjs +97 -0
- package/esm2022/src/app/webcommon/services/fuentegeneral.service.mjs +68 -0
- package/esm2022/src/app/webcommon/services/homologacion.service.mjs +50 -0
- package/esm2022/src/app/webcommon/services/plantillas.service.mjs +129 -0
- package/esm2022/src/app/webcommon/services/reportes.service.mjs +95 -0
- package/esm2022/src/app/webcommon/webcommon.module.mjs +15 -0
- package/esm2022/src/environments/environment.mjs +24 -0
- package/fesm2022/general-library-union.mjs +16105 -0
- package/fesm2022/general-library-union.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/package.json +62 -73
- package/{public-api.ts → public-api.d.ts} +164 -206
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.d.ts +18 -0
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.d.ts +14 -0
- package/src/app/core/componentes/filtro-general/filtro-general.component.d.ts +36 -0
- package/src/app/core/componentes/footer/footer.component.d.ts +9 -0
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.d.ts +50 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/{Cambio.ts → Cambio.d.ts} +7 -13
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.d.ts +44 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.d.ts +45 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.d.ts +33 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.d.ts +9 -0
- package/src/app/core/componentes/inicio-component/inicio-component.component.d.ts +26 -0
- package/src/app/core/componentes/menu/menu.component.d.ts +16 -0
- package/src/app/core/componentes/tabla-general/tabla-general.component.d.ts +32 -0
- package/src/app/core/core.module.d.ts +8 -0
- package/src/app/core/errores/authentication.error.d.ts +3 -0
- package/src/app/core/modelos/error-response.model.d.ts +9 -0
- package/src/app/core/modelos/table-column.model.d.ts +12 -0
- package/src/app/core/modelos/user.model.d.ts +6 -0
- package/src/app/core/plantilla-general/plantilla-general.template.d.ts +89 -0
- package/src/app/core/servicios/auth.service.d.ts +52 -0
- package/src/app/core/servicios/cargar-control-funcionalidad.service.d.ts +19 -0
- package/src/app/core/servicios/click-posicion.service.d.ts +11 -0
- package/src/app/core/servicios/data-exporter-table.utils.d.ts +11 -0
- package/src/app/core/servicios/error-interceptor.service.d.ts +41 -0
- package/src/app/core/servicios/guardias/auth.guard.d.ts +17 -0
- package/src/app/core/servicios/guardias/publico.guard.d.ts +13 -0
- package/src/app/core/servicios/interceptores/loading-interceptor.d.ts +11 -0
- package/src/app/core/servicios/interceptores/token-interceptor.service.d.ts +26 -0
- package/src/app/core/servicios/loading.service.d.ts +22 -0
- package/src/app/core/servicios/menu.service.d.ts +35 -0
- package/src/app/core/servicios/spinner-service.d.ts +9 -0
- package/src/app/core/servicios/storage.service.d.ts +37 -0
- package/src/app/core/servicios/template.service.d.ts +20 -0
- package/src/app/core/servicios/toast.service.d.ts +48 -0
- package/src/app/core/servicios/utils.service.d.ts +45 -0
- package/src/app/core/sharedlib.module.d.ts +6 -0
- package/src/app/core/utilidades/color.util.d.ts +70 -0
- package/src/app/layout/api/{menuchangeevent.ts → menuchangeevent.d.ts} +4 -4
- package/src/app/layout/app.breadcrumb.component.d.ts +28 -0
- package/src/app/layout/app.footer.component.d.ts +8 -0
- package/src/app/layout/app.layout.component.d.ts +39 -0
- package/src/app/layout/app.layout.module.d.ts +6 -0
- package/src/app/layout/app.menu.component.d.ts +19 -0
- package/src/app/layout/app.menu.service.d.ts +12 -0
- package/src/app/layout/app.menuitem.component.d.ts +41 -0
- package/src/app/layout/app.menuprofile.component.d.ts +18 -0
- package/src/app/layout/app.rightmenu.component.d.ts +10 -0
- package/src/app/layout/app.sidebar.component.d.ts +34 -0
- package/src/app/layout/app.topbar.component.d.ts +79 -0
- package/src/app/layout/service/app.layout.service.d.ts +57 -0
- package/src/app/publico/pages/login/login.page.d.ts +40 -0
- package/src/app/publico/pages/not-found/not-found.page.d.ts +17 -0
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.d.ts +41 -0
- package/src/app/publico/pages/timeout/timeout.page.d.ts +10 -0
- package/src/app/seguridad/constantes/ConstantesGenerales.d.ts +25 -0
- package/src/app/seguridad/constantes/ReporteEntradaConstantes.d.ts +7 -0
- package/src/app/seguridad/modelos/AplicacionModel.d.ts +7 -0
- package/src/app/seguridad/modelos/ArchivoPortalModel.d.ts +13 -0
- package/src/app/seguridad/modelos/AtributoPuntoModel.d.ts +8 -0
- package/src/app/seguridad/modelos/AtributoSSOportalModel.d.ts +16 -0
- package/src/app/seguridad/modelos/{AuditoriaArchivoModel.ts → AuditoriaArchivoModel.d.ts} +10 -13
- package/src/app/seguridad/modelos/CargueLineaModel.d.ts +12 -0
- package/src/app/seguridad/modelos/ColoresRGB.d.ts +17 -0
- package/src/app/seguridad/modelos/ColumnaFuenteModel.d.ts +8 -0
- package/src/app/seguridad/modelos/{ColumnaWraperModel.ts → ColumnaWraperModel.d.ts} +6 -7
- package/src/app/seguridad/modelos/ComplementoModel.d.ts +6 -0
- package/src/app/seguridad/modelos/ComponentePaginaModel.d.ts +20 -0
- package/src/app/seguridad/modelos/ConexionModel.d.ts +13 -0
- package/src/app/seguridad/modelos/{ContenidoHtmlPortalModel.ts → ContenidoHtmlPortalModel.d.ts} +20 -25
- package/src/app/seguridad/modelos/ControlFuncionModel.d.ts +7 -0
- package/src/app/seguridad/modelos/CorreoModel.d.ts +31 -0
- package/src/app/seguridad/modelos/{CorreoOrgEmpModModel.ts → CorreoOrgEmpModModel.d.ts} +8 -11
- package/src/app/seguridad/modelos/CorreoWSModel.d.ts +33 -0
- package/src/app/seguridad/modelos/CruceRecursoPuntoModel.d.ts +13 -0
- package/src/app/seguridad/modelos/{DatoInicioModel.ts → DatoInicioModel.d.ts} +6 -7
- package/src/app/seguridad/modelos/{EjecucionReporteDataModel.ts → EjecucionReporteDataModel.d.ts} +20 -21
- package/src/app/seguridad/modelos/EmpresaModel.d.ts +23 -0
- package/src/app/seguridad/modelos/EmpresaSeguridadModel.d.ts +18 -0
- package/src/app/seguridad/modelos/{EntradaComplementoModel.ts → EntradaComplementoModel.d.ts} +6 -9
- package/src/app/seguridad/modelos/EtiquetaModel.d.ts +4 -0
- package/src/app/seguridad/modelos/Etiquetas.d.ts +10 -0
- package/src/app/seguridad/modelos/{ForeingWraperModel.ts → ForeingWraperModel.d.ts} +6 -9
- package/src/app/seguridad/modelos/FuenteCampoAtributoModel.d.ts +15 -0
- package/src/app/seguridad/modelos/{FuenteCampoModel.ts → FuenteCampoModel.d.ts} +16 -20
- package/src/app/seguridad/modelos/FuenteDato.d.ts +18 -0
- package/src/app/seguridad/modelos/FuenteEntradaModel.d.ts +8 -0
- package/src/app/seguridad/modelos/{FuenteGeneralModel.ts → FuenteGeneralModel.d.ts} +36 -55
- package/src/app/seguridad/modelos/FuenteLineaServicioModel.d.ts +16 -0
- package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.d.ts +10 -0
- package/src/app/seguridad/modelos/{FuenteServicioModel.ts → FuenteServicioModel.d.ts} +47 -61
- package/src/app/seguridad/modelos/FuncionalidadModel.d.ts +8 -0
- package/src/app/seguridad/modelos/GeneralModel.d.ts +8 -0
- package/src/app/seguridad/modelos/{GrupoAccesoModel.ts → GrupoAccesoModel.d.ts} +6 -9
- package/src/app/seguridad/modelos/GrupoControlFuncionModel.d.ts +9 -0
- package/src/app/seguridad/modelos/GrupoFuenteModel.d.ts +13 -0
- package/src/app/seguridad/modelos/GrupoPermisoModel.d.ts +13 -0
- package/src/app/seguridad/modelos/{JoinFromModel.ts → JoinFromModel.d.ts} +4 -4
- package/src/app/seguridad/modelos/ListaServicioModel.d.ts +16 -0
- package/src/app/seguridad/modelos/LlaveForaneaModel.d.ts +6 -0
- package/src/app/seguridad/modelos/LoginModel.d.ts +17 -0
- package/src/app/seguridad/modelos/MensajeSistemaModel.d.ts +7 -0
- package/src/app/seguridad/modelos/{MenuPortalModel.ts → MenuPortalModel.d.ts} +4 -5
- package/src/app/seguridad/modelos/ModulosModel.d.ts +14 -0
- package/src/app/seguridad/modelos/{ObjetoReporteModel.ts → ObjetoReporteModel.d.ts} +5 -6
- package/src/app/seguridad/modelos/PaginaPortalModel.d.ts +19 -0
- package/src/app/seguridad/modelos/ParametroComponenteModel.d.ts +8 -0
- package/src/app/seguridad/modelos/ParametrosGeneralModel.d.ts +8 -0
- package/src/app/seguridad/modelos/PermisoFuncionModel.d.ts +8 -0
- package/src/app/seguridad/modelos/PermisocontenidoModel.d.ts +18 -0
- package/src/app/seguridad/modelos/{PeticionModel.ts → PeticionModel.d.ts} +15 -20
- package/src/app/seguridad/modelos/PreguntaSeguridadModel.d.ts +6 -0
- package/src/app/seguridad/modelos/PropiedadModel.d.ts +9 -0
- package/src/app/seguridad/modelos/PublicacionWebModel.d.ts +25 -0
- package/src/app/seguridad/modelos/PuntoProcesoModel.d.ts +6 -0
- package/src/app/seguridad/modelos/RecursoPunto.d.ts +12 -0
- package/src/app/seguridad/modelos/RecursoPuntoModel.d.ts +12 -0
- package/src/app/seguridad/modelos/ReporteBanda.d.ts +7 -0
- package/src/app/seguridad/modelos/ReporteColumna.d.ts +32 -0
- package/src/app/seguridad/modelos/ReporteColumnario.d.ts +68 -0
- package/src/app/seguridad/modelos/ReporteColumnarioMarcador.d.ts +23 -0
- package/src/app/seguridad/modelos/{ReporteEntradaModel.ts → ReporteEntradaModel.d.ts} +19 -21
- package/src/app/seguridad/modelos/{ReporteFuenteModel.ts → ReporteFuenteModel.d.ts} +87 -141
- package/src/app/seguridad/modelos/ReporteMarcador.d.ts +39 -0
- package/src/app/seguridad/modelos/ReporteSoporte.d.ts +9 -0
- package/src/app/seguridad/modelos/ReporteTabla.d.ts +12 -0
- package/src/app/seguridad/modelos/RespuestaModel.d.ts +8 -0
- package/src/app/seguridad/modelos/{RolModel.ts → RolModel.d.ts} +37 -41
- package/src/app/seguridad/modelos/ServidorCorreoModel.d.ts +25 -0
- package/src/app/seguridad/modelos/SistemaMensajeModel.d.ts +8 -0
- package/src/app/seguridad/modelos/SitioPortalModel.d.ts +24 -0
- package/src/app/seguridad/modelos/TablaFromModel.d.ts +4 -0
- package/src/app/seguridad/modelos/TareasModel.d.ts +49 -0
- package/src/app/seguridad/modelos/TextoModel.d.ts +8 -0
- package/src/app/seguridad/modelos/TipoEtiqueta.d.ts +7 -0
- package/src/app/seguridad/modelos/UnionModel.d.ts +11 -0
- package/src/app/seguridad/modelos/{UsuarioModel.ts → UsuarioModel.d.ts} +49 -60
- package/src/app/seguridad/modelos/UsuariogrupoModel.d.ts +22 -0
- package/src/app/seguridad/modelos/aplicacion-propiedad-model.d.ts +13 -0
- package/src/app/seguridad/modelos/contenidoCorreoModel.d.ts +9 -0
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.d.ts +47 -0
- package/src/app/shared/servicios/cargar-archivos.service.d.ts +15 -0
- package/src/app/shared/servicios/cargar-mapas.service.d.ts +18 -0
- package/src/app/shared/servicios/encriptado-basico.service.d.ts +10 -0
- package/src/app/shared/servicios/general.service.d.ts +24 -0
- package/src/app/shared/servicios/parametros-navegacion.service.d.ts +9 -0
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.d.ts +79 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.d.ts +79 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.d.ts +29 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.d.ts +69 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.d.ts +51 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.d.ts +77 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.d.ts +279 -0
- package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.d.ts +42 -0
- package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.d.ts +35 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts +146 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.d.ts +49 -0
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.d.ts +132 -0
- package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.d.ts +64 -0
- package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.d.ts +33 -0
- package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.d.ts +149 -0
- package/src/app/webcommon/pipes/dashboard.pipe.d.ts +48 -0
- package/src/app/webcommon/pipes/fuente.pipe.d.ts +136 -0
- package/src/app/webcommon/pipes/general.pipe.d.ts +647 -0
- package/src/app/webcommon/pipes/reporte-columnario.pipe.d.ts +59 -0
- package/src/app/webcommon/pipes/reporte-fuente.pipe.d.ts +193 -0
- package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.d.ts +59 -0
- package/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.d.ts +27 -0
- package/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.d.ts +21 -0
- package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.d.ts +64 -0
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.d.ts +63 -0
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.d.ts +105 -0
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.d.ts +21 -0
- package/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.d.ts +42 -0
- package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.d.ts +30 -0
- package/src/app/webcommon/services/carguelinea.service.d.ts +19 -0
- package/src/app/webcommon/services/dashboard.service.d.ts +27 -0
- package/src/app/webcommon/services/ejecucionreporte.service.d.ts +34 -0
- package/src/app/webcommon/services/fechaUtils.service.d.ts +30 -0
- package/src/app/webcommon/services/fuentegeneral.service.d.ts +24 -0
- package/src/app/webcommon/services/homologacion.service.d.ts +17 -0
- package/src/app/webcommon/services/plantillas.service.d.ts +26 -0
- package/src/app/webcommon/services/reportes.service.d.ts +35 -0
- package/src/app/webcommon/webcommon.module.d.ts +6 -0
- package/src/environments/environment.d.ts +7 -0
- package/.browserslistrc +0 -15
- package/.editorconfig +0 -16
- package/.vscode/extensions.json +0 -4
- package/.vscode/launch.json +0 -20
- package/.vscode/tasks.json +0 -42
- package/angular.json +0 -143
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -21
- package/src/app/app.component.html +0 -12
- package/src/app/app.component.scss +0 -0
- package/src/app/app.component.spec.ts +0 -29
- package/src/app/app.component.ts +0 -34
- package/src/app/app.config.ts +0 -43
- package/src/app/app.module.ts +0 -10
- package/src/app/app.routes.ts +0 -88
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.html +0 -6
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.ts +0 -39
- package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.html +0 -1
- package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.scss +0 -0
- package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.ts +0 -31
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.html +0 -9
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.scss +0 -28
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.ts +0 -32
- package/src/app/core/componentes/filtro-general/filtro-general.component.html +0 -36
- package/src/app/core/componentes/filtro-general/filtro-general.component.scss +0 -3
- package/src/app/core/componentes/filtro-general/filtro-general.component.ts +0 -207
- package/src/app/core/componentes/footer/footer.component.html +0 -13
- package/src/app/core/componentes/footer/footer.component.scss +0 -3
- package/src/app/core/componentes/footer/footer.component.ts +0 -20
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.html +0 -267
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.scss +0 -21
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.ts +0 -278
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.ts +0 -118
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.ts +0 -76
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.ts +0 -67
- package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.ts +0 -11
- package/src/app/core/componentes/inicio-component/inicio-component.component.html +0 -29
- package/src/app/core/componentes/inicio-component/inicio-component.component.scss +0 -63
- package/src/app/core/componentes/inicio-component/inicio-component.component.ts +0 -70
- package/src/app/core/componentes/menu/menu.component.html +0 -13
- package/src/app/core/componentes/menu/menu.component.scss +0 -36
- package/src/app/core/componentes/menu/menu.component.ts +0 -35
- package/src/app/core/componentes/tabla-general/tabla-general.component.html +0 -90
- package/src/app/core/componentes/tabla-general/tabla-general.component.scss +0 -0
- package/src/app/core/componentes/tabla-general/tabla-general.component.ts +0 -96
- package/src/app/core/core.module.ts +0 -22
- package/src/app/core/errores/authentication.error.ts +0 -6
- package/src/app/core/modelos/error-response.model.ts +0 -9
- package/src/app/core/modelos/table-column.model.ts +0 -10
- package/src/app/core/modelos/user.model.ts +0 -6
- package/src/app/core/plantilla-general/plantilla-general.template.html +0 -139
- package/src/app/core/plantilla-general/plantilla-general.template.scss +0 -37
- package/src/app/core/plantilla-general/plantilla-general.template.ts +0 -233
- package/src/app/core/servicios/auth.service.ts +0 -189
- package/src/app/core/servicios/cargar-control-funcionalidad.service.ts +0 -48
- package/src/app/core/servicios/click-posicion.service.ts +0 -16
- package/src/app/core/servicios/data-exporter-table.utils.ts +0 -78
- package/src/app/core/servicios/error-interceptor.service.ts +0 -208
- package/src/app/core/servicios/guardias/auth.guard.ts +0 -51
- package/src/app/core/servicios/guardias/publico.guard.ts +0 -26
- package/src/app/core/servicios/interceptores/loading-interceptor.ts +0 -37
- package/src/app/core/servicios/interceptores/token-interceptor.service.ts +0 -177
- package/src/app/core/servicios/loading.service.ts +0 -48
- package/src/app/core/servicios/menu.service.ts +0 -153
- package/src/app/core/servicios/spinner-service.ts +0 -18
- package/src/app/core/servicios/storage.service.ts +0 -68
- package/src/app/core/servicios/template.service.ts +0 -91
- package/src/app/core/servicios/toast.service.ts +0 -114
- package/src/app/core/servicios/utils.service.ts +0 -381
- package/src/app/core/sharedlib.module.ts +0 -11
- package/src/app/core/utilidades/color.util.ts +0 -197
- package/src/app/layout/app.breadcrumb.component.html +0 -20
- package/src/app/layout/app.breadcrumb.component.ts +0 -78
- package/src/app/layout/app.footer.component.html +0 -18
- package/src/app/layout/app.footer.component.ts +0 -15
- package/src/app/layout/app.layout.component.html +0 -20
- package/src/app/layout/app.layout.component.ts +0 -201
- package/src/app/layout/app.layout.module.ts +0 -9
- package/src/app/layout/app.menu.component.html +0 -6
- package/src/app/layout/app.menu.component.ts +0 -51
- package/src/app/layout/app.menu.service.ts +0 -23
- package/src/app/layout/app.menuitem.component.ts +0 -252
- package/src/app/layout/app.menuprofile.component.html +0 -35
- package/src/app/layout/app.menuprofile.component.ts +0 -60
- package/src/app/layout/app.rightmenu.component.html +0 -72
- package/src/app/layout/app.rightmenu.component.ts +0 -24
- package/src/app/layout/app.sidebar.component.html +0 -40
- package/src/app/layout/app.sidebar.component.ts +0 -81
- package/src/app/layout/app.topbar.component.html +0 -214
- package/src/app/layout/app.topbar.component.ts +0 -336
- package/src/app/layout/config/app.config.component.html +0 -125
- package/src/app/layout/config/app.config.component.ts +0 -206
- package/src/app/layout/config/app.config.module.ts +0 -11
- package/src/app/layout/service/app.layout.service.ts +0 -191
- package/src/app/publico/pages/login/login.page.html +0 -53
- package/src/app/publico/pages/login/login.page.scss +0 -210
- package/src/app/publico/pages/login/login.page.ts +0 -130
- package/src/app/publico/pages/not-found/not-found.page.html +0 -36
- package/src/app/publico/pages/not-found/not-found.page.scss +0 -2
- package/src/app/publico/pages/not-found/not-found.page.ts +0 -46
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.html +0 -58
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.scss +0 -49
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.ts +0 -176
- package/src/app/publico/pages/timeout/timeout.page.html +0 -24
- package/src/app/publico/pages/timeout/timeout.page.scss +0 -2
- package/src/app/publico/pages/timeout/timeout.page.ts +0 -18
- package/src/app/seguridad/constantes/ConstantesGenerales.ts +0 -30
- package/src/app/seguridad/constantes/ReporteEntradaConstantes.ts +0 -18
- package/src/app/seguridad/constantes/ReporteFuenteConstantes.ts +0 -13
- package/src/app/seguridad/modelos/AplicacionModel.ts +0 -11
- package/src/app/seguridad/modelos/ArchivoPortalModel.ts +0 -16
- package/src/app/seguridad/modelos/AtributoPuntoModel.ts +0 -9
- package/src/app/seguridad/modelos/AtributoSSOportalModel.ts +0 -22
- package/src/app/seguridad/modelos/CargueLineaModel.ts +0 -17
- package/src/app/seguridad/modelos/ColoresRGB.ts +0 -17
- package/src/app/seguridad/modelos/ColumnaFuenteModel.ts +0 -9
- package/src/app/seguridad/modelos/ComplementoModel.ts +0 -10
- package/src/app/seguridad/modelos/ComponentePaginaModel.ts +0 -22
- package/src/app/seguridad/modelos/ConexionModel.ts +0 -15
- package/src/app/seguridad/modelos/ControlFuncionModel.ts +0 -10
- package/src/app/seguridad/modelos/CorreoModel.ts +0 -45
- package/src/app/seguridad/modelos/CorreoWSModel.ts +0 -49
- package/src/app/seguridad/modelos/CruceRecursoPuntoModel.ts +0 -14
- package/src/app/seguridad/modelos/EmpresaModel.ts +0 -25
- package/src/app/seguridad/modelos/EmpresaSeguridadModel.ts +0 -19
- package/src/app/seguridad/modelos/EtiquetaModel.ts +0 -4
- package/src/app/seguridad/modelos/Etiquetas.ts +0 -14
- package/src/app/seguridad/modelos/FuenteCampoAtributoModel.ts +0 -21
- package/src/app/seguridad/modelos/FuenteDato.ts +0 -19
- package/src/app/seguridad/modelos/FuenteEntradaModel.ts +0 -9
- package/src/app/seguridad/modelos/FuenteLineaServicioModel.ts +0 -19
- package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.ts +0 -14
- package/src/app/seguridad/modelos/FuncionalidadModel.ts +0 -12
- package/src/app/seguridad/modelos/GeneralModel.ts +0 -16
- package/src/app/seguridad/modelos/GrupoControlFuncionModel.ts +0 -12
- package/src/app/seguridad/modelos/GrupoFuenteModel.ts +0 -17
- package/src/app/seguridad/modelos/GrupoPermisoModel.ts +0 -16
- package/src/app/seguridad/modelos/ListaServicioModel.ts +0 -18
- package/src/app/seguridad/modelos/LlaveForaneaModel.ts +0 -6
- package/src/app/seguridad/modelos/LoginModel.ts +0 -19
- package/src/app/seguridad/modelos/MensajeSistemaModel.ts +0 -10
- package/src/app/seguridad/modelos/ModulosModel.ts +0 -17
- package/src/app/seguridad/modelos/PaginaPortalModel.ts +0 -23
- package/src/app/seguridad/modelos/ParametroComponenteModel.ts +0 -9
- package/src/app/seguridad/modelos/ParametrosGeneralModel.ts +0 -16
- package/src/app/seguridad/modelos/PermisoFuncionModel.ts +0 -11
- package/src/app/seguridad/modelos/PermisocontenidoModel.ts +0 -20
- package/src/app/seguridad/modelos/PreguntaSeguridadModel.ts +0 -9
- package/src/app/seguridad/modelos/PropiedadModel.ts +0 -12
- package/src/app/seguridad/modelos/PublicacionWebModel.ts +0 -29
- package/src/app/seguridad/modelos/PuntoProcesoModel.ts +0 -7
- package/src/app/seguridad/modelos/RecursoPunto.ts +0 -13
- package/src/app/seguridad/modelos/RecursoPuntoModel.ts +0 -13
- package/src/app/seguridad/modelos/ReporteBanda.ts +0 -9
- package/src/app/seguridad/modelos/ReporteColumna.ts +0 -33
- package/src/app/seguridad/modelos/ReporteColumnario.ts +0 -82
- package/src/app/seguridad/modelos/ReporteColumnarioMarcador.ts +0 -31
- package/src/app/seguridad/modelos/ReporteMarcador.ts +0 -40
- package/src/app/seguridad/modelos/ReporteSoporte.ts +0 -10
- package/src/app/seguridad/modelos/ReporteTabla.ts +0 -14
- package/src/app/seguridad/modelos/RespuestaModel.ts +0 -9
- package/src/app/seguridad/modelos/ServidorCorreoModel.ts +0 -31
- package/src/app/seguridad/modelos/SistemaMensajeModel.ts +0 -11
- package/src/app/seguridad/modelos/SitioPortalModel.ts +0 -29
- package/src/app/seguridad/modelos/TablaFromModel.ts +0 -5
- package/src/app/seguridad/modelos/TareasModel.ts +0 -54
- package/src/app/seguridad/modelos/TextoModel.ts +0 -11
- package/src/app/seguridad/modelos/TipoEtiqueta.ts +0 -8
- package/src/app/seguridad/modelos/UnionModel.ts +0 -14
- package/src/app/seguridad/modelos/UsuariogrupoModel.ts +0 -27
- package/src/app/seguridad/modelos/aplicacion-propiedad-model.ts +0 -16
- package/src/app/seguridad/modelos/contenidoCorreoModel.ts +0 -13
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.html +0 -47
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.scss +0 -8
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.ts +0 -144
- package/src/app/shared/servicios/cargar-archivos.service.ts +0 -51
- package/src/app/shared/servicios/cargar-mapas.service.ts +0 -43
- package/src/app/shared/servicios/encriptado-basico.service.ts +0 -54
- package/src/app/shared/servicios/encriptador-simetrico.service.ts +0 -29
- package/src/app/shared/servicios/general.service.ts +0 -124
- package/src/app/shared/servicios/parametros-navegacion.service.ts +0 -20
- package/src/app/shared/servicios/plantillas.service.ts +0 -22
- package/src/app/shared/servicios/tarea.service.ts +0 -71
- package/src/app/shared/utilidades/translate-loader.util.ts +0 -44
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.html +0 -175
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.scss +0 -78
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.ts +0 -438
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.html +0 -87
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.scss +0 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.ts +0 -189
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.html +0 -117
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.scss +0 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.ts +0 -87
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.html +0 -158
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.scss +0 -6
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.ts +0 -345
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.html +0 -131
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.scss +0 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.ts +0 -198
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.html +0 -206
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.scss +0 -3
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.ts +0 -328
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.html +0 -2121
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.scss +0 -241
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.ts +0 -1698
- package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.html +0 -33
- package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.scss +0 -0
- package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.ts +0 -96
- package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.html +0 -54
- package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.scss +0 -0
- package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.ts +0 -111
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.html +0 -394
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.scss +0 -10
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.ts +0 -610
- package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.html +0 -130
- package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.scss +0 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.ts +0 -172
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.html +0 -404
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.scss +0 -5
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.ts +0 -763
- package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.html +0 -145
- package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.scss +0 -0
- package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.ts +0 -302
- package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.html +0 -19
- package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.scss +0 -0
- package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.ts +0 -88
- package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.html +0 -714
- package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.scss +0 -0
- package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.ts +0 -688
- package/src/app/webcommon/pipes/dashboard.pipe.ts +0 -79
- package/src/app/webcommon/pipes/fuente.pipe.ts +0 -207
- package/src/app/webcommon/pipes/general.pipe.ts +0 -1046
- package/src/app/webcommon/pipes/reporte-columnario.pipe.ts +0 -101
- package/src/app/webcommon/pipes/reporte-fuente.pipe.ts +0 -306
- package/src/app/webcommon/pipes/sara-general.pipe.ts +0 -289
- package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.html +0 -90
- package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.scss +0 -0
- package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.ts +0 -262
- package/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.html +0 -50
- package/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.scss +0 -0
- package/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.ts +0 -135
- package/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.html +0 -44
- package/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.scss +0 -0
- package/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.ts +0 -66
- package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.html +0 -41
- package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.scss +0 -0
- package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.ts +0 -283
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.html +0 -179
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.scss +0 -3
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.ts +0 -266
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.html +0 -273
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.scss +0 -13
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.ts +0 -564
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.html +0 -10
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.scss +0 -5
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.ts +0 -58
- package/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.html +0 -71
- package/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.scss +0 -0
- package/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.ts +0 -154
- package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.html +0 -11
- package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.scss +0 -0
- package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.ts +0 -82
- package/src/app/webcommon/services/carguelinea.service.ts +0 -74
- package/src/app/webcommon/services/dashboard.service.ts +0 -258
- package/src/app/webcommon/services/ejecucionreporte.service.ts +0 -160
- package/src/app/webcommon/services/fechaUtils.service.ts +0 -127
- package/src/app/webcommon/services/fuentegeneral.service.ts +0 -74
- package/src/app/webcommon/services/homologacion.service.ts +0 -49
- package/src/app/webcommon/services/plantillas.service.ts +0 -165
- package/src/app/webcommon/services/reportes.service.ts +0 -133
- package/src/app/webcommon/webcommon.module.ts +0 -11
- package/src/environments/environment.prod.ts +0 -3
- package/src/environments/environment.ts +0 -25
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -14
- package/src/main.ts +0 -12
- package/src/polyfills.ts +0 -53
- package/src/test.ts +0 -14
- package/tsconfig.app.json +0 -15
- package/tsconfig.json +0 -35
- package/tsconfig.spec.json +0 -18
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, MenuItem } from 'primeng/api';
|
|
3
|
+
import { ImportarFuenteConComponent } from '../importar-fuente-con/importar-fuente-con.component';
|
|
4
|
+
import { FuenteProcesoGeneralModel } from '../../../../seguridad/modelos/FuenteProcesoGeneralModel';
|
|
5
|
+
import { CargueLineaModel } from '../../../../seguridad/modelos/CargueLineaModel';
|
|
6
|
+
import { ToastService } from '../../../../core/servicios/toast.service';
|
|
7
|
+
import { UtilsService } from '../../../../core/servicios/utils.service';
|
|
8
|
+
import { GeneralService } from '../../../../shared/servicios/general.service';
|
|
9
|
+
import { GeneralPipe } from '../../../pipes/general.pipe';
|
|
10
|
+
import { MenuService } from '../../../../core/servicios/menu.service';
|
|
11
|
+
import { CargueLineaService } from '../../../services/carguelinea.service';
|
|
12
|
+
import { StorageService } from '../../../../core/servicios/storage.service';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class ImportarFuenteGeneralComponent implements OnInit {
|
|
15
|
+
private generalService;
|
|
16
|
+
private confirmationService;
|
|
17
|
+
private notificacionesService;
|
|
18
|
+
private generalPipe;
|
|
19
|
+
private menuService;
|
|
20
|
+
private storage;
|
|
21
|
+
utilsService: UtilsService;
|
|
22
|
+
private cargueLinea;
|
|
23
|
+
tipoPresentacion: string;
|
|
24
|
+
vistaVisualizar: string;
|
|
25
|
+
listaFuenteProceso: FuenteProcesoGeneralModel[];
|
|
26
|
+
ver: boolean;
|
|
27
|
+
fuenteProcesoDTO: FuenteProcesoGeneralModel;
|
|
28
|
+
listaLineas: CargueLineaModel[];
|
|
29
|
+
items: MenuItem[];
|
|
30
|
+
mostrarMenu: boolean;
|
|
31
|
+
titulo: string;
|
|
32
|
+
detalle: ImportarFuenteConComponent;
|
|
33
|
+
paginator: {
|
|
34
|
+
rows: number;
|
|
35
|
+
totalRecords: number;
|
|
36
|
+
rowsLL: number;
|
|
37
|
+
totalRecordsLL: number;
|
|
38
|
+
};
|
|
39
|
+
constructor(generalService: GeneralService, confirmationService: ConfirmationService, notificacionesService: ToastService, generalPipe: GeneralPipe, menuService: MenuService, storage: StorageService, utilsService: UtilsService, cargueLinea: CargueLineaService);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
isVer(): boolean;
|
|
42
|
+
verAnterior(event: any): void;
|
|
43
|
+
eliminar(): void;
|
|
44
|
+
regresar(): void;
|
|
45
|
+
regresarFuente(event: any): void;
|
|
46
|
+
autoServicioPortal(): boolean;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImportarFuenteGeneralComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImportarFuenteGeneralComponent, "app-importar-fuente-general", never, {}, {}, never, never, true, never>;
|
|
49
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { PopupEditorFormulaComponent } from './../../popups/popup-editor-formula/popup-editor-formula.component';
|
|
2
|
+
import { GeneralPipe } from './../../pipes/general.pipe';
|
|
3
|
+
import { ToastService } from './../../../core/servicios/toast.service';
|
|
4
|
+
import { OnInit } from '@angular/core';
|
|
5
|
+
import { ColumnaFuenteModel } from '../../../seguridad/modelos/ColumnaFuenteModel';
|
|
6
|
+
import { FuenteDatoModel } from '../../../seguridad/modelos/FuenteDato';
|
|
7
|
+
import { ReporteColumnaModel } from '../../../seguridad/modelos/ReporteColumna';
|
|
8
|
+
import { TablaFromModel } from '../../../seguridad/modelos/TablaFromModel';
|
|
9
|
+
import { JoinFromModel } from '../../../seguridad/modelos/JoinFromModel';
|
|
10
|
+
import { ReportesService } from '../../services/reportes.service';
|
|
11
|
+
import { GeneralService } from '../../../shared/servicios/general.service';
|
|
12
|
+
import { ColumnaWraperModel } from '../../../seguridad/modelos/ColumnaWraperModel';
|
|
13
|
+
import { UtilsService } from '../../../core/servicios/utils.service';
|
|
14
|
+
import { ConfirmationService, MenuItem, MessageService } from 'primeng/api';
|
|
15
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
16
|
+
import { MenuService } from '../../../core/servicios/menu.service';
|
|
17
|
+
import { PopupTablasFuenteComponent } from '../../popups/popup-tablas-fuente/popup-tablas-fuente.component';
|
|
18
|
+
import * as i0 from "@angular/core";
|
|
19
|
+
export declare class FuenteReporteComponent implements OnInit {
|
|
20
|
+
private menuService;
|
|
21
|
+
private notificationBusService;
|
|
22
|
+
private reportesSvc;
|
|
23
|
+
private generalSvc;
|
|
24
|
+
utilsService: UtilsService;
|
|
25
|
+
private confirmationService;
|
|
26
|
+
private translateService;
|
|
27
|
+
messageService: MessageService;
|
|
28
|
+
private generalPipe;
|
|
29
|
+
fuente: FuenteDatoModel;
|
|
30
|
+
vistaVisualizar: string;
|
|
31
|
+
tablasFrom: TablaFromModel[];
|
|
32
|
+
joinsFrom: JoinFromModel[];
|
|
33
|
+
columnas: ReporteColumnaModel[];
|
|
34
|
+
listaColumnas: any[];
|
|
35
|
+
listaJoin: any[];
|
|
36
|
+
col1: string;
|
|
37
|
+
col2: string;
|
|
38
|
+
campos: ColumnaFuenteModel[];
|
|
39
|
+
camposSeleccionar: ColumnaWraperModel[];
|
|
40
|
+
mostrarSeleccionar: boolean;
|
|
41
|
+
campoFormula: ColumnaFuenteModel;
|
|
42
|
+
actual: number;
|
|
43
|
+
tabPrincipal: number;
|
|
44
|
+
basico: boolean;
|
|
45
|
+
seleccionGeneral: boolean;
|
|
46
|
+
foraneas: any[];
|
|
47
|
+
descripcion: string;
|
|
48
|
+
query: string;
|
|
49
|
+
paginador: FuenteDatoModel[];
|
|
50
|
+
filtro: FuenteDatoModel;
|
|
51
|
+
paginator: {
|
|
52
|
+
rows: number;
|
|
53
|
+
totalRecords: number;
|
|
54
|
+
};
|
|
55
|
+
columns: any[];
|
|
56
|
+
filters: any[];
|
|
57
|
+
loading: boolean;
|
|
58
|
+
menu: MenuItem[];
|
|
59
|
+
items: MenuItem[];
|
|
60
|
+
mapaMensajes: Map<number, string>;
|
|
61
|
+
popupTablasFuenteUI: PopupTablasFuenteComponent;
|
|
62
|
+
popupEditorFormula: PopupEditorFormulaComponent;
|
|
63
|
+
tiposDato: Map<string, string>;
|
|
64
|
+
clickGuardar: boolean;
|
|
65
|
+
verNuevoJoin: boolean;
|
|
66
|
+
activeIndex: number;
|
|
67
|
+
cargarPaso: boolean;
|
|
68
|
+
loadingGenerar: boolean;
|
|
69
|
+
errorQuery: boolean;
|
|
70
|
+
tipoDatos: Map<string, string>;
|
|
71
|
+
constructor(menuService: MenuService, notificationBusService: ToastService, reportesSvc: ReportesService, generalSvc: GeneralService, utilsService: UtilsService, confirmationService: ConfirmationService, translateService: TranslateService, messageService: MessageService, generalPipe: GeneralPipe);
|
|
72
|
+
ngOnInit(): void;
|
|
73
|
+
load(event: any): Promise<void>;
|
|
74
|
+
limpiarCampos(): void;
|
|
75
|
+
siguiente(): Promise<void>;
|
|
76
|
+
private cargarListasColumnas;
|
|
77
|
+
terminarPasos(): Promise<void>;
|
|
78
|
+
adicionarForanea(evento: any): Promise<void>;
|
|
79
|
+
eliminar(): Promise<void>;
|
|
80
|
+
setRespuesta(respuesta: boolean): Promise<void>;
|
|
81
|
+
anterior(): void;
|
|
82
|
+
validarQuery(): Promise<void>;
|
|
83
|
+
adicionarJoin(): void;
|
|
84
|
+
nuevoJoin(): void;
|
|
85
|
+
cancelarNuevoJoin(): void;
|
|
86
|
+
eliminarJoin(ae: any): void;
|
|
87
|
+
eliminarTabla(ae: any): void;
|
|
88
|
+
buscarTabla(): void;
|
|
89
|
+
setTablaSeleccionada(tablaSeleccionada: any[]): void;
|
|
90
|
+
private cargarTablaEnLista;
|
|
91
|
+
cambioJoin(ce: any): void;
|
|
92
|
+
editarCampo(evento: any): void;
|
|
93
|
+
editarWhere(): void;
|
|
94
|
+
setFormula(formula: any): void;
|
|
95
|
+
adicionarColumnas(): void;
|
|
96
|
+
agregarSeleccionados(): void;
|
|
97
|
+
ocultarSeleccionar(): void;
|
|
98
|
+
verDetalle(evento: any): Promise<void>;
|
|
99
|
+
nuevo(): void;
|
|
100
|
+
cargasOpciones(): void;
|
|
101
|
+
regresar(): void;
|
|
102
|
+
private validar;
|
|
103
|
+
/**
|
|
104
|
+
* Registra/actualiza la informacion general de la fuente de datos
|
|
105
|
+
*/
|
|
106
|
+
guardar(): Promise<void>;
|
|
107
|
+
/**
|
|
108
|
+
* Registra/actualiza las columnas generados para la fuente de datos como registros de tipo 'ColumnaFuente'
|
|
109
|
+
*/
|
|
110
|
+
guardarCampos(): Promise<void>;
|
|
111
|
+
/**
|
|
112
|
+
* Verifica que los valores asociados a los campos para la creacion de las columnas de la fuente sean válidos
|
|
113
|
+
* @return false en caso de que los valores asignados a los campos sean nulos o no sean palabras válidas de acuerdo
|
|
114
|
+
* con las condiciones dadas por ValidadorUtil.validarPalabra()),
|
|
115
|
+
* en caso contrario retorna true
|
|
116
|
+
*/
|
|
117
|
+
private validarCampos;
|
|
118
|
+
/**
|
|
119
|
+
* Construye las columnas de la fuente de datos, con base en los campos obtenidos
|
|
120
|
+
* de la consulta SQL asociada
|
|
121
|
+
*/
|
|
122
|
+
construirColumnas(): Promise<void>;
|
|
123
|
+
private validarWizard;
|
|
124
|
+
private generarSqlFrom;
|
|
125
|
+
private generarSqlJoin;
|
|
126
|
+
initStep(): void;
|
|
127
|
+
actualizarSeleccion(booleanogeneral: boolean): void;
|
|
128
|
+
todosSeleccionados(): boolean;
|
|
129
|
+
isQueryValido(): boolean;
|
|
130
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuenteReporteComponent, never>;
|
|
131
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FuenteReporteComponent, "app-fuente-reporte", never, {}, {}, never, never, true, never>;
|
|
132
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ConfirmationService } from 'primeng/api';
|
|
3
|
+
import { GeneralService } from '../../../../shared/servicios/general.service';
|
|
4
|
+
import { ToastService } from '../../../../core/servicios/toast.service';
|
|
5
|
+
import { FuenteGeneralModel } from '../../../../seguridad/modelos/FuenteGeneralModel';
|
|
6
|
+
import { FuenteGeneralService } from '../../../services/fuentegeneral.service';
|
|
7
|
+
import { cargarmapasGlobal } from '../../../../shared/servicios/cargar-mapas.service';
|
|
8
|
+
import { FuenteServicioModel } from '../../../../seguridad/modelos/FuenteServicioModel';
|
|
9
|
+
import { GeneralPipe } from '../../../pipes/general.pipe';
|
|
10
|
+
import { FuentePipe } from '../../../pipes/fuente.pipe';
|
|
11
|
+
import { UtilsService } from '../../../../core/servicios/utils.service';
|
|
12
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class FuenteGeneralServicioComponent implements OnInit {
|
|
15
|
+
private fuenteService;
|
|
16
|
+
fuentePipe: FuentePipe;
|
|
17
|
+
generalPipe: GeneralPipe;
|
|
18
|
+
private generalService;
|
|
19
|
+
private cargarMapas;
|
|
20
|
+
private notificacionesBusService;
|
|
21
|
+
private confirmationService;
|
|
22
|
+
private formBuilder;
|
|
23
|
+
utilsService: UtilsService;
|
|
24
|
+
cargandoFormulario: boolean;
|
|
25
|
+
listaServicios: any[];
|
|
26
|
+
formulario: FormGroup;
|
|
27
|
+
listaFiltro: any[];
|
|
28
|
+
fuenteGeneral: FuenteGeneralModel;
|
|
29
|
+
fuenteServicioDTO: FuenteServicioModel;
|
|
30
|
+
unica: boolean;
|
|
31
|
+
servicios: any;
|
|
32
|
+
camposFuente: [];
|
|
33
|
+
isNew: boolean;
|
|
34
|
+
fuente: any;
|
|
35
|
+
regresar: EventEmitter<any>;
|
|
36
|
+
mapaservicio: any;
|
|
37
|
+
campos: any[];
|
|
38
|
+
homologaciones: any[];
|
|
39
|
+
mostrarFiltro: boolean;
|
|
40
|
+
serviciosValidar: FuenteServicioModel[];
|
|
41
|
+
mapaFiltros: any;
|
|
42
|
+
paginator: {
|
|
43
|
+
rows: number;
|
|
44
|
+
totalRecords: number;
|
|
45
|
+
};
|
|
46
|
+
cargar: boolean;
|
|
47
|
+
validadorService: boolean;
|
|
48
|
+
constructor(fuenteService: FuenteGeneralService, fuentePipe: FuentePipe, generalPipe: GeneralPipe, generalService: GeneralService, cargarMapas: cargarmapasGlobal, notificacionesBusService: ToastService, confirmationService: ConfirmationService, formBuilder: FormBuilder, utilsService: UtilsService);
|
|
49
|
+
ngOnInit(): void;
|
|
50
|
+
ver(): Promise<void>;
|
|
51
|
+
cargarFormulario(): Promise<void>;
|
|
52
|
+
cargarMapaServicios(): Promise<void>;
|
|
53
|
+
ocultar(): void;
|
|
54
|
+
cargarCampos(): Promise<void>;
|
|
55
|
+
guardar(): Promise<any>;
|
|
56
|
+
eliminar(event: any): void;
|
|
57
|
+
setEliminar(): Promise<void>;
|
|
58
|
+
validar(): Promise<boolean>;
|
|
59
|
+
validarCampos(): Promise<boolean>;
|
|
60
|
+
guardarCampos(): Promise<void>;
|
|
61
|
+
transform(value: any, ...args: any): any;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuenteGeneralServicioComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FuenteGeneralServicioComponent, "app-fuente-general-servicio", never, { "fuenteGeneral": { "alias": "fuenteGeneral"; "required": false; }; "fuenteServicioDTO": { "alias": "fuenteServicioDTO"; "required": false; }; "unica": { "alias": "unica"; "required": false; }; "servicios": { "alias": "servicios"; "required": false; }; "camposFuente": { "alias": "camposFuente"; "required": false; }; "isNew": { "alias": "isNew"; "required": false; }; "fuente": { "alias": "fuente"; "required": false; }; }, { "regresar": "regresar"; }, never, never, true, never>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { GeneralService } from '../../../../shared/servicios/general.service';
|
|
4
|
+
import { UtilsService } from '../../../../core/servicios/utils.service';
|
|
5
|
+
import { FuenteGeneralModel } from '../../../../seguridad/modelos/FuenteGeneralModel';
|
|
6
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
7
|
+
import { MenuService } from '../../../../core/servicios/menu.service';
|
|
8
|
+
import { AuthService } from '../../../../core/servicios/auth.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class ListadoFuenteGeneralPage implements OnInit {
|
|
11
|
+
private generalServices;
|
|
12
|
+
private authService;
|
|
13
|
+
private translateService;
|
|
14
|
+
private router;
|
|
15
|
+
utilsService: UtilsService;
|
|
16
|
+
private activatedRoute;
|
|
17
|
+
private menuService;
|
|
18
|
+
columns: any[];
|
|
19
|
+
filters: any[];
|
|
20
|
+
loading: boolean;
|
|
21
|
+
listaResultado: FuenteGeneralModel[];
|
|
22
|
+
paginator: {
|
|
23
|
+
rows: number;
|
|
24
|
+
totalRecords: number;
|
|
25
|
+
};
|
|
26
|
+
constructor(generalServices: GeneralService, authService: AuthService, translateService: TranslateService, router: Router, utilsService: UtilsService, activatedRoute: ActivatedRoute, menuService: MenuService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
cargarlistado(event: any): void;
|
|
29
|
+
seleccion(evento: any): void;
|
|
30
|
+
nuevo(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListadoFuenteGeneralPage, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListadoFuenteGeneralPage, "ng-component", never, {}, {}, never, never, true, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { GeneralPipe } from '../../../pipes/general.pipe';
|
|
4
|
+
import { FuenteEntradaModel } from '../../../../seguridad/modelos/FuenteEntradaModel';
|
|
5
|
+
import { RecursoPuntoModel } from '../../../../seguridad/modelos/RecursoPuntoModel';
|
|
6
|
+
import { ToastService } from '../../../../core/servicios/toast.service';
|
|
7
|
+
import { UtilsService } from '../../../../core/servicios/utils.service';
|
|
8
|
+
import { GeneralService } from '../../../../shared/servicios/general.service';
|
|
9
|
+
import { FuenteCampoModel } from '../../../../seguridad/modelos/FuenteCampoModel';
|
|
10
|
+
import { FuenteServicioModel } from '../../../../seguridad/modelos/FuenteServicioModel';
|
|
11
|
+
import { FuenteGeneralModel } from '../../../../seguridad/modelos/FuenteGeneralModel';
|
|
12
|
+
import { FuentePipe } from '../../../pipes/fuente.pipe';
|
|
13
|
+
import { FuenteGeneralService } from '../../../services/fuentegeneral.service';
|
|
14
|
+
import { ConfirmationService } from 'primeng/api';
|
|
15
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
16
|
+
import { PopupRecursoComponent } from '../../../popups/popup-recurso/popup-recurso.component';
|
|
17
|
+
import { AsyncValidatorFn, FormBuilder, FormGroup } from '@angular/forms';
|
|
18
|
+
import { MenuService } from '../../../../core/servicios/menu.service';
|
|
19
|
+
import { AuthService } from '../../../../core/servicios/auth.service';
|
|
20
|
+
import * as i0 from "@angular/core";
|
|
21
|
+
export declare class MantenimientoFuenteGeneralPage implements OnInit {
|
|
22
|
+
private activeRoute;
|
|
23
|
+
private authService;
|
|
24
|
+
private generalService;
|
|
25
|
+
fuentePipe: FuentePipe;
|
|
26
|
+
generalPipe: GeneralPipe;
|
|
27
|
+
private notificacionesBusService;
|
|
28
|
+
private confirmationService;
|
|
29
|
+
private router;
|
|
30
|
+
utilsService: UtilsService;
|
|
31
|
+
private translateService;
|
|
32
|
+
private fuenteService;
|
|
33
|
+
private formBuilder;
|
|
34
|
+
private menuService;
|
|
35
|
+
popup: PopupRecursoComponent;
|
|
36
|
+
eventoLlaveTabla: any;
|
|
37
|
+
isNew: boolean;
|
|
38
|
+
entrada: FuenteEntradaModel;
|
|
39
|
+
entradas: FuenteEntradaModel[];
|
|
40
|
+
campos: FuenteCampoModel[];
|
|
41
|
+
campo: FuenteCampoModel;
|
|
42
|
+
servicios: FuenteServicioModel[];
|
|
43
|
+
servicio: FuenteServicioModel;
|
|
44
|
+
recursos: RecursoPuntoModel[];
|
|
45
|
+
recurso: RecursoPuntoModel;
|
|
46
|
+
fuenteServicio: FuenteServicioModel;
|
|
47
|
+
fuenteEntradaDTO: FuenteEntradaModel;
|
|
48
|
+
fuenteDTO: FuenteGeneralModel;
|
|
49
|
+
listadoNotificacion: FuenteServicioModel[];
|
|
50
|
+
mapaservicio: any;
|
|
51
|
+
listaServicios: any;
|
|
52
|
+
verPuntoProceso: boolean;
|
|
53
|
+
loadFormulario: boolean;
|
|
54
|
+
serviciosMotor: boolean;
|
|
55
|
+
unicoRegistro: boolean;
|
|
56
|
+
agrupamiento: boolean;
|
|
57
|
+
rompimiento: boolean;
|
|
58
|
+
mostrarHoja: boolean;
|
|
59
|
+
sinSeparador: boolean;
|
|
60
|
+
conSeparador: boolean;
|
|
61
|
+
nuevaNotificacion: boolean;
|
|
62
|
+
servicioWeb: boolean;
|
|
63
|
+
nuevoRCampo: boolean;
|
|
64
|
+
mantenimientoServicio: boolean;
|
|
65
|
+
nuevoServicioP: boolean;
|
|
66
|
+
abrirAcordion: boolean;
|
|
67
|
+
vistaVisualizar: String;
|
|
68
|
+
paginatorEntrada: {
|
|
69
|
+
rows: number;
|
|
70
|
+
totalRecords: number;
|
|
71
|
+
};
|
|
72
|
+
paginatorCampo: {
|
|
73
|
+
rows: number;
|
|
74
|
+
totalRecords: number;
|
|
75
|
+
};
|
|
76
|
+
paginatorServicios: {
|
|
77
|
+
rows: number;
|
|
78
|
+
totalRecords: number;
|
|
79
|
+
};
|
|
80
|
+
paginatorRecursos: {
|
|
81
|
+
rows: number;
|
|
82
|
+
totalRecords: number;
|
|
83
|
+
};
|
|
84
|
+
paginatorNotificaciones: {
|
|
85
|
+
rows: number;
|
|
86
|
+
totalRecords: number;
|
|
87
|
+
};
|
|
88
|
+
filtersEntrada: any[];
|
|
89
|
+
filtersCampo: any[];
|
|
90
|
+
filtroServicio: any[];
|
|
91
|
+
formulario: FormGroup;
|
|
92
|
+
formularioNoti: FormGroup;
|
|
93
|
+
v: any;
|
|
94
|
+
constructor(activeRoute: ActivatedRoute, authService: AuthService, generalService: GeneralService, fuentePipe: FuentePipe, generalPipe: GeneralPipe, notificacionesBusService: ToastService, confirmationService: ConfirmationService, router: Router, utilsService: UtilsService, translateService: TranslateService, fuenteService: FuenteGeneralService, formBuilder: FormBuilder, menuService: MenuService);
|
|
95
|
+
ngOnInit(): void;
|
|
96
|
+
cargarFiltros(): void;
|
|
97
|
+
cargar(): Promise<void>;
|
|
98
|
+
cargarFormulario(): Promise<void>;
|
|
99
|
+
validar(): Promise<void>;
|
|
100
|
+
guardar(): Promise<any>;
|
|
101
|
+
eliminar(event: any): Promise<void>;
|
|
102
|
+
setEliminar(): Promise<void>;
|
|
103
|
+
cargarEntradas(event?: any): Promise<void>;
|
|
104
|
+
nuevaEntrada(): void;
|
|
105
|
+
agregarEntrada(dato: FuenteEntradaModel): Promise<void>;
|
|
106
|
+
editarEntrada(entradaEdit: FuenteEntradaModel): Promise<void>;
|
|
107
|
+
eliminarEntrada(event: any, entradaDelete: FuenteEntradaModel): void;
|
|
108
|
+
setEliminarEntrada(entradaDelete: FuenteEntradaModel): Promise<void>;
|
|
109
|
+
cancelarEntrada(): void;
|
|
110
|
+
cargarCampos(event?: any): Promise<void>;
|
|
111
|
+
nuevoCampo(): void;
|
|
112
|
+
seleccionCampo(event: any): void;
|
|
113
|
+
regresarCampo(): Promise<void>;
|
|
114
|
+
cargarServicios(event?: any): Promise<void>;
|
|
115
|
+
cargarMapaServicios(): Promise<void>;
|
|
116
|
+
seleccionarServicio(event: any): Promise<void>;
|
|
117
|
+
regresarServicio(): void;
|
|
118
|
+
nuevoServicio(): void;
|
|
119
|
+
transform(value: any, ...args: any): any;
|
|
120
|
+
cargarRecurso(event?: any): Promise<void>;
|
|
121
|
+
seleccionarRecurso(event: any): Promise<void>;
|
|
122
|
+
nuevoRecurso(): Promise<void>;
|
|
123
|
+
cerrarRecurso(): Promise<void>;
|
|
124
|
+
cargarListadoNotificaciones(event?: any): Promise<void>;
|
|
125
|
+
nuevoRegistroNotificacion(): Promise<void>;
|
|
126
|
+
cancelarNotificacion(): void;
|
|
127
|
+
formularioNotificacion(): Promise<void>;
|
|
128
|
+
validarCorreo(): void;
|
|
129
|
+
agregarNotificacion(noti: any, nuevo: any): Promise<void>;
|
|
130
|
+
eliminarNotificacion(event: any, noti: FuenteServicioModel): void;
|
|
131
|
+
setEliminarNotificacion(noti: FuenteServicioModel): Promise<void>;
|
|
132
|
+
cargaBooleanos(): Promise<void>;
|
|
133
|
+
isServicioWeb(): boolean;
|
|
134
|
+
isAgrupamiento(): boolean;
|
|
135
|
+
isRompimiento(): boolean;
|
|
136
|
+
isUnicoRegistro(): boolean;
|
|
137
|
+
isMostrarHoja(): boolean;
|
|
138
|
+
isSinSeparador(): boolean;
|
|
139
|
+
isConSeparador(): boolean;
|
|
140
|
+
isNuevaNotificacion(): boolean;
|
|
141
|
+
isServiciosMotor(): boolean;
|
|
142
|
+
obtenerArchivoPlanilla(event: any): void;
|
|
143
|
+
obtenerArchivoPlanillaServicio(event: any): void;
|
|
144
|
+
noNulo(key: any): AsyncValidatorFn;
|
|
145
|
+
setearCampoNuevo(event: any): void;
|
|
146
|
+
mayorQue(key: any, keyCompara: any): AsyncValidatorFn;
|
|
147
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MantenimientoFuenteGeneralPage, never>;
|
|
148
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MantenimientoFuenteGeneralPage, "ng-component", never, {}, {}, never, never, true, never>;
|
|
149
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DashboardPipe implements PipeTransform {
|
|
4
|
+
GRAFICO: string;
|
|
5
|
+
COMPONENTE: string;
|
|
6
|
+
TABLA: string;
|
|
7
|
+
IFRAME: string;
|
|
8
|
+
DESCGRAFICO: string;
|
|
9
|
+
DESCCOMPONENTE: string;
|
|
10
|
+
DESCTABLA: string;
|
|
11
|
+
DESCIFRAME: string;
|
|
12
|
+
MAPATIPO: {
|
|
13
|
+
nombre: string;
|
|
14
|
+
codigo: string;
|
|
15
|
+
}[];
|
|
16
|
+
DIAGRAMA_BARRAS: string;
|
|
17
|
+
DIAGRAMA_BARRAS_HOR: string;
|
|
18
|
+
DIAGRAMA_TORTA: string;
|
|
19
|
+
DIAGRAMA_AREA: string;
|
|
20
|
+
DIAGRAMA_RADAR: string;
|
|
21
|
+
DIAGRAMA_POLAR: string;
|
|
22
|
+
DIAGRAMA_DONA: string;
|
|
23
|
+
DIAGRAMA_BARRAS_STRING: string;
|
|
24
|
+
DIAGRAMA_BARRAS_HOR_STRING: string;
|
|
25
|
+
DIAGRAMA_TORTA_STRING: string;
|
|
26
|
+
DIAGRAMA_AREA_STRING: string;
|
|
27
|
+
DIAGRAMA_RADAR_STRING: string;
|
|
28
|
+
DIAGRAMA_POLAR_STRING: string;
|
|
29
|
+
DIAGRAMA_DONA_STRING: string;
|
|
30
|
+
TIPO_GRAFICO: {
|
|
31
|
+
codigo: string;
|
|
32
|
+
nombre: string;
|
|
33
|
+
}[];
|
|
34
|
+
BAR: string;
|
|
35
|
+
PIE: string;
|
|
36
|
+
LINE: string;
|
|
37
|
+
POLARAREA: string;
|
|
38
|
+
DOUGHNUT: string;
|
|
39
|
+
RADAR: string;
|
|
40
|
+
TIPO_GRAFICO_CHART: {
|
|
41
|
+
codigo: string;
|
|
42
|
+
codigoChart: string;
|
|
43
|
+
}[];
|
|
44
|
+
transform(value: any, ...args: any): any;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardPipe, never>;
|
|
46
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DashboardPipe, "dashboardPipe", true>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DashboardPipe>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FuentePipe implements PipeTransform {
|
|
4
|
+
FUENTE_ARCHIVO: string;
|
|
5
|
+
FUENTE_WS: string;
|
|
6
|
+
FUENTE_ARCHIVO_DESC: string;
|
|
7
|
+
FUENTE_WS_DESC: string;
|
|
8
|
+
ORIGEN_DATOS: {
|
|
9
|
+
codigo: string;
|
|
10
|
+
nombre: string;
|
|
11
|
+
}[];
|
|
12
|
+
ELEMPLEO_GETRESUME_HOJA: string;
|
|
13
|
+
ELEMPLEO_GETRESUME_HOJA_DESC: string;
|
|
14
|
+
ELEMPLEO_GETRESUME_EDU_FORMAL: string;
|
|
15
|
+
ELEMPLEO_GETRESUME_EDU_FORMAL_DESC: string;
|
|
16
|
+
ELEMPLEO_GETRESUME_EXP: string;
|
|
17
|
+
ELEMPLEO_GETRESUME_EXP_DESC: string;
|
|
18
|
+
ELEMPLEO_GETRESUME_EDU: string;
|
|
19
|
+
ELEMPLEO_GETRESUME_EDU_DESC: string;
|
|
20
|
+
ELEMPLEO_GETRESUME_DATO_ADICI: string;
|
|
21
|
+
ELEMPLEO_GETRESUME_DATO_ADICI_DESC: string;
|
|
22
|
+
ELEMPLEO_GETRESUME_LANG: string;
|
|
23
|
+
ELEMPLEO_GETRESUME_LANG_DESC: string;
|
|
24
|
+
SANITAS_EBS: string;
|
|
25
|
+
SANITAS_EBS_DESC: string;
|
|
26
|
+
SERVICIOS_WEB: {
|
|
27
|
+
codigo: string;
|
|
28
|
+
nombre: string;
|
|
29
|
+
}[];
|
|
30
|
+
PROCESO_CARGUE: string;
|
|
31
|
+
PROCESO_BPM: string;
|
|
32
|
+
PROCESO_ETAPASELECCION: string;
|
|
33
|
+
ROMPIMIENTO: string;
|
|
34
|
+
AGRUPAMIENTO: string;
|
|
35
|
+
UNICO_REGISTRO: string;
|
|
36
|
+
ROMPIMIENTO_DESC: string;
|
|
37
|
+
AGRUPAMIENTO_DESC: string;
|
|
38
|
+
UNICO_REGISTRO_DESC: string;
|
|
39
|
+
LISTA_TIPO_FUENTE: {
|
|
40
|
+
codigo: string;
|
|
41
|
+
nombre: string;
|
|
42
|
+
}[];
|
|
43
|
+
COMA: string;
|
|
44
|
+
PUNTO_COMA: string;
|
|
45
|
+
TAB: string;
|
|
46
|
+
PIPELINE: string;
|
|
47
|
+
SIN_SEPARADOR: string;
|
|
48
|
+
COMA_DESC: string;
|
|
49
|
+
PUNTO_COMA_DESC: string;
|
|
50
|
+
TAB_DESC: string;
|
|
51
|
+
PIPELINE_DESC: string;
|
|
52
|
+
SIN_SEPARADOR_DESC: string;
|
|
53
|
+
LISTA_SEPARADORES: {
|
|
54
|
+
codigo: string;
|
|
55
|
+
nombre: string;
|
|
56
|
+
}[];
|
|
57
|
+
GRUPO: string;
|
|
58
|
+
LINEA: string;
|
|
59
|
+
SERVICIO: string;
|
|
60
|
+
CONTENIDO_EXCEL: string;
|
|
61
|
+
LOGIN_PAR: string;
|
|
62
|
+
FIJO: string;
|
|
63
|
+
LOGIN_PAR_DESC: string;
|
|
64
|
+
FIJO_DESC: string;
|
|
65
|
+
LISTA_TIPORECURSO: {
|
|
66
|
+
codigo: string;
|
|
67
|
+
nombre: string;
|
|
68
|
+
}[];
|
|
69
|
+
GRUPO_EJECUCION: string;
|
|
70
|
+
SERVICIO_EJECUCION: string;
|
|
71
|
+
GRUPO_EJECUCION_DESC: string;
|
|
72
|
+
SERVICIO_EJECUCION_DESC: string;
|
|
73
|
+
LISTA_EJECUCION: {
|
|
74
|
+
codigo: string;
|
|
75
|
+
nombre: string;
|
|
76
|
+
}[];
|
|
77
|
+
BASEDATOS: string;
|
|
78
|
+
NOBASEDATOS: string;
|
|
79
|
+
BASEDATOSEGUNDO: string;
|
|
80
|
+
BASEDATOS_DESC: string;
|
|
81
|
+
NOBASEDATOS_DESC: string;
|
|
82
|
+
BASEDATOSEGUNDO_DESC: string;
|
|
83
|
+
LISTA_MOTOR: {
|
|
84
|
+
codigo: string;
|
|
85
|
+
nombre: string;
|
|
86
|
+
}[];
|
|
87
|
+
FECHA: string;
|
|
88
|
+
LOGICO: string;
|
|
89
|
+
TEXTO: string;
|
|
90
|
+
NUMERO: string;
|
|
91
|
+
DECIMAL: string;
|
|
92
|
+
LLAVE: string;
|
|
93
|
+
FECHA_DESC: string;
|
|
94
|
+
TEXTO_DESC: string;
|
|
95
|
+
NUMERO_DESC: string;
|
|
96
|
+
DECIMAL_DESC: string;
|
|
97
|
+
LOGICO_DESC: string;
|
|
98
|
+
LLAVE_DESC: string;
|
|
99
|
+
LISTA_TIPO_DATO: {
|
|
100
|
+
codigo: string;
|
|
101
|
+
nombre: string;
|
|
102
|
+
}[];
|
|
103
|
+
LISTA_TIPO_DATO_MP: {
|
|
104
|
+
codigo: string;
|
|
105
|
+
nombre: string;
|
|
106
|
+
}[];
|
|
107
|
+
FORMATOHORAFRACCION: string;
|
|
108
|
+
FORMATOHORAFRACCIONDES: string;
|
|
109
|
+
FORMATOHORADECIMAL: string;
|
|
110
|
+
FORMATOHORADECIMALDES: string;
|
|
111
|
+
NOAPLICA: string;
|
|
112
|
+
LISTA_FORMATOS: {
|
|
113
|
+
codigo: string;
|
|
114
|
+
nombre: string;
|
|
115
|
+
}[];
|
|
116
|
+
ITEM: string;
|
|
117
|
+
FINALPROCESO: string;
|
|
118
|
+
ITEMDESC: string;
|
|
119
|
+
FINALPROCESODESC: string;
|
|
120
|
+
LISTA_MOMENTOS: {
|
|
121
|
+
codigo: string;
|
|
122
|
+
nombre: string;
|
|
123
|
+
}[];
|
|
124
|
+
MENSAJE_OBLIGATORIO: string;
|
|
125
|
+
MENSAJE_CAMPOS_OBLIGATORIOS: string;
|
|
126
|
+
MENSAJE_NO_EXISTEN_SEVICIOS: string;
|
|
127
|
+
MENSAJE_NO_REPETIR_DESCRIPCION_CAMPOS: string;
|
|
128
|
+
MENSAJE_TIPO_DATO_CAMPO_NO_COINCIDE: string;
|
|
129
|
+
MENSAJE_NO_EXISTEN_HOMOLOGACIONES: string;
|
|
130
|
+
MENSAJE_EXISTEN_ERRORES_FORMULA: string;
|
|
131
|
+
MENSAJE_SERVICIO_FORMULA_FILTRO_NO_VALIDA: string;
|
|
132
|
+
transform(value: any, ...args: any): any;
|
|
133
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuentePipe, never>;
|
|
134
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FuentePipe, "fuentePipe", true>;
|
|
135
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FuentePipe>;
|
|
136
|
+
}
|