general-library-union 3.2.90 → 3.2.92
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 +214 -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 +70 -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 +360 -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 +349 -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 +55 -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 +102 -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 +16134 -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 +46 -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 +80 -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 +50 -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 +31 -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 -218
- 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 -68
- 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 -393
- 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 -195
- package/src/app/layout/app.topbar.component.ts +0 -341
- 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 -46
- 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 -133
- 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,647 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GeneralPipe implements PipeTransform {
|
|
4
|
+
ESPACIO_BLANCO: string;
|
|
5
|
+
ESPACIO_NULO: string;
|
|
6
|
+
NO_APLICA: string;
|
|
7
|
+
NO_APLICA_DESC: string;
|
|
8
|
+
SI: string;
|
|
9
|
+
NO: string;
|
|
10
|
+
SI_DESC: string;
|
|
11
|
+
NO_DESC: string;
|
|
12
|
+
vertical: string;
|
|
13
|
+
desVertical: string;
|
|
14
|
+
horizontal: string;
|
|
15
|
+
desHorizontal: string;
|
|
16
|
+
ORIENTACION: {
|
|
17
|
+
codigo: string;
|
|
18
|
+
nombre: string;
|
|
19
|
+
}[];
|
|
20
|
+
LISTA_SINO: {
|
|
21
|
+
codigo: string;
|
|
22
|
+
nombre: string;
|
|
23
|
+
}[];
|
|
24
|
+
ESTADO_PROCESO: string;
|
|
25
|
+
ESTADO_PUNTO: string;
|
|
26
|
+
ESTADO_SELECCION_DESC: string;
|
|
27
|
+
ESTADO_ACTIVO_DES: string;
|
|
28
|
+
ESTADO_INACTIVO_DESC: string;
|
|
29
|
+
ESTADO_PROCESO_DESC: string;
|
|
30
|
+
A_TILDE_MIN: string;
|
|
31
|
+
E_TILDE_MIN: string;
|
|
32
|
+
I_TILDE_MIN: string;
|
|
33
|
+
O_TIDLE_MIN: string;
|
|
34
|
+
U_TILDE_MIN: string;
|
|
35
|
+
A_TILDE_MAY: string;
|
|
36
|
+
E_TILDE_MAY: string;
|
|
37
|
+
I_TILDE_MAY: string;
|
|
38
|
+
O_TILDE_MAY: string;
|
|
39
|
+
U_TILDE_MAY: string;
|
|
40
|
+
N_TILDE_MAY: string;
|
|
41
|
+
N_TILDE_MIN: string;
|
|
42
|
+
U: string;
|
|
43
|
+
LISTA_ESTADO_SN: {
|
|
44
|
+
codigo: string;
|
|
45
|
+
nombre: string;
|
|
46
|
+
}[];
|
|
47
|
+
TIPOS_ANEXO_LIMITADO: {
|
|
48
|
+
codigo: string;
|
|
49
|
+
nombre: string;
|
|
50
|
+
}[];
|
|
51
|
+
LISTA_SELECIONAR_MAP: {
|
|
52
|
+
codigo: string;
|
|
53
|
+
nombre: string;
|
|
54
|
+
}[];
|
|
55
|
+
MAS: string;
|
|
56
|
+
MENOS: string;
|
|
57
|
+
BARRA_PISO: string;
|
|
58
|
+
MONTO: string;
|
|
59
|
+
FECHA_1: string;
|
|
60
|
+
FECHA_2: string;
|
|
61
|
+
FECHA_3: string;
|
|
62
|
+
ciclo: string;
|
|
63
|
+
COMPROBANTE: string;
|
|
64
|
+
restringe: string;
|
|
65
|
+
actividad: string;
|
|
66
|
+
ABONOPENSI: string;
|
|
67
|
+
estados: {
|
|
68
|
+
S: string;
|
|
69
|
+
P: string;
|
|
70
|
+
N: string;
|
|
71
|
+
};
|
|
72
|
+
listaEstados: {
|
|
73
|
+
S: string;
|
|
74
|
+
Punto: string;
|
|
75
|
+
N: string;
|
|
76
|
+
};
|
|
77
|
+
LISTA_ESTADO: {
|
|
78
|
+
codigo: string;
|
|
79
|
+
nombre: string;
|
|
80
|
+
}[];
|
|
81
|
+
PADRE: string;
|
|
82
|
+
HIJO: string;
|
|
83
|
+
CONCEPTO_VIGENTE: string;
|
|
84
|
+
CONCEPTO_NOVIGENTE: string;
|
|
85
|
+
LISTADO_ESTADO_CONCEPTO: {
|
|
86
|
+
codigo: string;
|
|
87
|
+
nombre: string;
|
|
88
|
+
}[];
|
|
89
|
+
FORMULA_GENERAL: string;
|
|
90
|
+
FORMULA: string;
|
|
91
|
+
FORMULA_BENEFICIARIO: string;
|
|
92
|
+
FORMULA_VALOR_FIJO: string;
|
|
93
|
+
VALOR_FIJO: string;
|
|
94
|
+
FORMULA_GENERAL_DESC: string;
|
|
95
|
+
FORMULA_DESC: string;
|
|
96
|
+
FORMULA_BENEFICIARIO_DESC: string;
|
|
97
|
+
FORMULA_VALOR_FIJO_DESC: string;
|
|
98
|
+
VALOR_FIJO_DESC: string;
|
|
99
|
+
LISTADO_FORMULA: {
|
|
100
|
+
codigo: string;
|
|
101
|
+
nombre: string;
|
|
102
|
+
}[];
|
|
103
|
+
CONCEPTO_DEVENGO: string;
|
|
104
|
+
CONCEPTO_DEDUCCION: string;
|
|
105
|
+
CONCEPTO_DEVENGO_DESC: string;
|
|
106
|
+
CONCEPTO_DEDUCCION_DESC: string;
|
|
107
|
+
LISTADO_NATURALEZA_CONCEPTO: {
|
|
108
|
+
codigo: string;
|
|
109
|
+
nombre: string;
|
|
110
|
+
}[];
|
|
111
|
+
REDONDEO_CERO_DECIMALES: string;
|
|
112
|
+
REDONDEO_UN_DECIMAL: string;
|
|
113
|
+
REDONDEO_DOS_DECIMALES: string;
|
|
114
|
+
REDONDEO_CERO_DECIMALES_DESC: string;
|
|
115
|
+
REDONDEO_UN_DECIMAL_DESC: string;
|
|
116
|
+
REDONDEO_DOS_DECIMALES_DESC: string;
|
|
117
|
+
LISTA_REDONDEO_CONCEPTO: {
|
|
118
|
+
codigo: string;
|
|
119
|
+
nombre: string;
|
|
120
|
+
}[];
|
|
121
|
+
CAMBIO_ASIGNACION_CONCEPTO: string;
|
|
122
|
+
CAMBIO_ASIGNACIONTEMPORAL_CONCEPTO: string;
|
|
123
|
+
CAMBIO_ROL_CONCEPTO: string;
|
|
124
|
+
CAMBIO_TEMPORAL_CONCEPTO: string;
|
|
125
|
+
CAMBIO_ASIGNACION_CONCEPTO_DES: string;
|
|
126
|
+
CAMBIO_ASIGNACIONTEMPORAL_CONCEPTO_DES: string;
|
|
127
|
+
CAMBIO_ROL_CONCEPTO_DES: string;
|
|
128
|
+
CAMBIO_TEMPORAL_CONCEPTO_DES: string;
|
|
129
|
+
LISTA_CAMBIO_CONCEPTO: {
|
|
130
|
+
codigo: string;
|
|
131
|
+
nombre: string;
|
|
132
|
+
}[];
|
|
133
|
+
AJUSTE_PARCIAL_CONCEPTO: string;
|
|
134
|
+
AJUSTE_TOTAL_CONCEPTO: string;
|
|
135
|
+
AJUSTE_PARCIAL_CONCEPTO_DESC: string;
|
|
136
|
+
AJUSTE_TOTAL_CONCEPTO_DESC: string;
|
|
137
|
+
LISTA_TIPOAJUSTE_CONCEPTO: {
|
|
138
|
+
codigo: string;
|
|
139
|
+
nombre: string;
|
|
140
|
+
}[];
|
|
141
|
+
FLEXIBLE_BENEFICIO_CONCEPTO: string;
|
|
142
|
+
FLEXIBLE_BENEFICIOADI_CONCEPTO: string;
|
|
143
|
+
FLEXIBLE_CRUCE_CONCEPTO: string;
|
|
144
|
+
FLEXIBLE_BENEFICIO_CONCEPTO_DESC: string;
|
|
145
|
+
FLEXIBLE_BENEFICIOADI_CONCEPTO_DESC: string;
|
|
146
|
+
FLEXIBLE_CRUCE_CONCEPTO_DESC: string;
|
|
147
|
+
LISTA_FLEXIBLE_CONCEPTO: {
|
|
148
|
+
codigo: string;
|
|
149
|
+
nombre: string;
|
|
150
|
+
}[];
|
|
151
|
+
FINALIN: string;
|
|
152
|
+
PARCIAL: string;
|
|
153
|
+
FINAL_DESC: string;
|
|
154
|
+
PARCIAL_DESC: string;
|
|
155
|
+
LISTA_INFORME: {
|
|
156
|
+
codigo: string;
|
|
157
|
+
nombre: string;
|
|
158
|
+
}[];
|
|
159
|
+
CONTRATOPRINCIPAL: string;
|
|
160
|
+
BASECOTIZACION: string;
|
|
161
|
+
UNIFICACIONSEGURIDAD: string;
|
|
162
|
+
INTERESCUOTAPARTE: string;
|
|
163
|
+
FORMULADISTRIBUIR: string;
|
|
164
|
+
JORNADADOCENTE: string;
|
|
165
|
+
AJUSTENOMINA: string;
|
|
166
|
+
DESCUENTOFIJO: string;
|
|
167
|
+
PENSIONDISTRIBUYE: string;
|
|
168
|
+
PUESTOTRABAJO: string;
|
|
169
|
+
SEGURIDADSOCIAL: string;
|
|
170
|
+
VIATICO: string;
|
|
171
|
+
NOMINA: string;
|
|
172
|
+
CONCEPTOTIEMPOS: string;
|
|
173
|
+
GENERACIONINTERFAZ: string;
|
|
174
|
+
REGISTROAUSENCIA: string;
|
|
175
|
+
INTERRUPCIONAUSENCIA: string;
|
|
176
|
+
NOVEDAD: string;
|
|
177
|
+
CONTROLLIQPERIODICA: string;
|
|
178
|
+
BENEFICIO: string;
|
|
179
|
+
SERVICIOENTIDAD: string;
|
|
180
|
+
SOLICITUDCREDITO: string;
|
|
181
|
+
CUOTACREDITO: string;
|
|
182
|
+
TABLAAMORTIZACION: string;
|
|
183
|
+
EVALUACION: string;
|
|
184
|
+
ACTOADMINISTRATIVO: string;
|
|
185
|
+
FACTORPUNTAJE: string;
|
|
186
|
+
PLANSUCESION: string;
|
|
187
|
+
AJUSTEHISTORICO: string;
|
|
188
|
+
AJUSTEVARIABLE: string;
|
|
189
|
+
NOMINALELECTRONICA: string;
|
|
190
|
+
NOMINALELECTRONICACON: string;
|
|
191
|
+
NOMINALELECTRONICAINI: string;
|
|
192
|
+
NOMINALELECTRONICANET: string;
|
|
193
|
+
BASECOTIZACION_DESC: string;
|
|
194
|
+
CONTRATOPRINCIPAL_DESC: string;
|
|
195
|
+
UNIFICACIONSEGURIDAD_DESC: string;
|
|
196
|
+
INTERESCUOTAPARTE_DESC: string;
|
|
197
|
+
FORMULADISTRIBUIR_DESC: string;
|
|
198
|
+
JORNADADOCENTE_DESC: string;
|
|
199
|
+
AJUSTENOMINA_DESC: string;
|
|
200
|
+
DESCUENTOFIJO_DESC: string;
|
|
201
|
+
PENSIONDISTRIBUYE_DESC: string;
|
|
202
|
+
PUESTOTRABAJO_DESC: string;
|
|
203
|
+
SEGURIDADSOCIAL_DESC: string;
|
|
204
|
+
VIATICO_DESC: string;
|
|
205
|
+
NOMINA_DESC: string;
|
|
206
|
+
GENERACIONINTERFAZ_DESC: string;
|
|
207
|
+
REGISTROAUSENCIA_DESC: string;
|
|
208
|
+
INTERRUPCIONAUSENCIA_DESC: string;
|
|
209
|
+
NOVEDAD_DESC: string;
|
|
210
|
+
CONTROLLIQPERIODICA_DESC: string;
|
|
211
|
+
BENEFICIO_DESC: string;
|
|
212
|
+
SERVICIOENTIDAD_DESC: string;
|
|
213
|
+
SOLICITUDCREDITO_DESC: string;
|
|
214
|
+
CUOTACREDITO_DESC: string;
|
|
215
|
+
TABLAAMORTIZACION_DESC: string;
|
|
216
|
+
EVALUACION_DESC: string;
|
|
217
|
+
ACTOADMINISTRATIVO_DESC: string;
|
|
218
|
+
FACTORPUNTAJE_DESC: string;
|
|
219
|
+
PLANSUCESION_DESC: string;
|
|
220
|
+
CONCEPTOTIEMPOS_DESC: string;
|
|
221
|
+
AJUSTEHISTORICO_DESC: string;
|
|
222
|
+
AJUSTEVARIABLE_DESC: string;
|
|
223
|
+
NOMINALELECTRONICA_DESC: string;
|
|
224
|
+
NOMINALELECTRONICACON_DESC: string;
|
|
225
|
+
NOMINALELECTRONICAINI_DESC: string;
|
|
226
|
+
NOMINALELECTRONICANET_DESC: string;
|
|
227
|
+
LISTA_TIPOFORMULA: {
|
|
228
|
+
codigo: string;
|
|
229
|
+
nombre: string;
|
|
230
|
+
}[];
|
|
231
|
+
FECHA: string;
|
|
232
|
+
HORA: string;
|
|
233
|
+
NUMERODES: string;
|
|
234
|
+
FECHADES: string;
|
|
235
|
+
HORADES: string;
|
|
236
|
+
LISTATIPO: {
|
|
237
|
+
codigo: string;
|
|
238
|
+
nombre: string;
|
|
239
|
+
}[];
|
|
240
|
+
INICIOANO: string;
|
|
241
|
+
FINANO: string;
|
|
242
|
+
INICIOMES: string;
|
|
243
|
+
FINMES: string;
|
|
244
|
+
LIBRE: string;
|
|
245
|
+
DESINICIOANO: string;
|
|
246
|
+
DESFINANO: string;
|
|
247
|
+
DESINICIOMES: string;
|
|
248
|
+
DESFINMES: string;
|
|
249
|
+
DESLIBRE: string;
|
|
250
|
+
TIPOVIGENCIA: {
|
|
251
|
+
codigo: string;
|
|
252
|
+
nombre: string;
|
|
253
|
+
}[];
|
|
254
|
+
MARCADOR: string;
|
|
255
|
+
MARCADORREGISTRO: string;
|
|
256
|
+
MARCADORTABLA: string;
|
|
257
|
+
MARCADORIMAGEN: string;
|
|
258
|
+
IMAGEN: string;
|
|
259
|
+
MARCADORQR: string;
|
|
260
|
+
DESMARCADOR: string;
|
|
261
|
+
DESMARCADORREGISTRO: string;
|
|
262
|
+
DESMARCADORTABLA: string;
|
|
263
|
+
DESIMAGEN: string;
|
|
264
|
+
DESMARCADORIMAGEN: string;
|
|
265
|
+
DESMARCADORQR: string;
|
|
266
|
+
MARCADORES: {
|
|
267
|
+
codigo: string;
|
|
268
|
+
nombre: string;
|
|
269
|
+
}[];
|
|
270
|
+
CARGO: string;
|
|
271
|
+
CARGO_MULTI: string;
|
|
272
|
+
CCATEGORIA: string;
|
|
273
|
+
CIUDAD: string;
|
|
274
|
+
CLASIFICACION: string;
|
|
275
|
+
EDAD: string;
|
|
276
|
+
EMPRESA: string;
|
|
277
|
+
ESTADO_CIVIL: string;
|
|
278
|
+
ESTADOLABORAL: string;
|
|
279
|
+
GENERO: string;
|
|
280
|
+
GRUPO: string;
|
|
281
|
+
NIVEL_DEL_CARGO: string;
|
|
282
|
+
RANGO_DE_SUELDO: string;
|
|
283
|
+
ROLCLASIFICACION: string;
|
|
284
|
+
TIEMPO_DE_ANTIGUEDAD_CARGO: string;
|
|
285
|
+
TIEMPO_DE_ANTIGUEDAD: string;
|
|
286
|
+
TIPO_DE_PERIODO: string;
|
|
287
|
+
TIPO_DE_VINCULACION: string;
|
|
288
|
+
UNIDAD: string;
|
|
289
|
+
UNIDAD_MULTI: string;
|
|
290
|
+
UNIDAD_RELACION: string;
|
|
291
|
+
DESCARGO: string;
|
|
292
|
+
DESCARGO_MULTI: string;
|
|
293
|
+
DESCATEGORIA: string;
|
|
294
|
+
DESCIUDAD: string;
|
|
295
|
+
DESCLASIFICACION: string;
|
|
296
|
+
DESEDAD: string;
|
|
297
|
+
DESEMPRESA: string;
|
|
298
|
+
DESESTADO_CIVIL: string;
|
|
299
|
+
DESESTADOLABORAL: string;
|
|
300
|
+
DESGENERO: string;
|
|
301
|
+
DESGRUPO: string;
|
|
302
|
+
DESNIVEL_DEL_CARGO: string;
|
|
303
|
+
DESRANGO_DE_SUELDO: string;
|
|
304
|
+
DESROLCLASIFICACION: string;
|
|
305
|
+
DESTIEMPO_DE_ANTIGUEDAD_CARGO: string;
|
|
306
|
+
DESTIEMPO_DE_ANTIGUEDAD: string;
|
|
307
|
+
DESTIPO_DE_PERIODO: string;
|
|
308
|
+
DESTIPO_DE_VINCULACION: string;
|
|
309
|
+
DESUNIDAD: string;
|
|
310
|
+
DESUNIDAD_MULTI: string;
|
|
311
|
+
DESUNIDAD_RELACION: string;
|
|
312
|
+
TIPOCAMPO: {
|
|
313
|
+
codigo: string;
|
|
314
|
+
nombre: string;
|
|
315
|
+
}[];
|
|
316
|
+
PERMITE_EJECUTAR: string;
|
|
317
|
+
PERMITE_MODIFICAR: string;
|
|
318
|
+
PERMITE_EJECUTAR_DESC: string;
|
|
319
|
+
PERMITE_MODIFICAR_DESC: string;
|
|
320
|
+
TIPOEJECUCIONREPORTE: {
|
|
321
|
+
codigo: string;
|
|
322
|
+
nombre: string;
|
|
323
|
+
}[];
|
|
324
|
+
NO_ACTUALIZA: string;
|
|
325
|
+
PERMITE_ACTUALIZAR: string;
|
|
326
|
+
NO_ACTUALIZA_DESC: string;
|
|
327
|
+
PERMITE_ACTUALIZAR_DESC: string;
|
|
328
|
+
DISENOREPORTE: {
|
|
329
|
+
codigo: string;
|
|
330
|
+
nombre: string;
|
|
331
|
+
}[];
|
|
332
|
+
PERMISO_POR_LLAVE_TABLA: string;
|
|
333
|
+
PERMISO_PERIODO: string;
|
|
334
|
+
PERMISO_SITIO: string;
|
|
335
|
+
PERMISO_DISENO_REPORTE: string;
|
|
336
|
+
PERMISO_AUSENTISMOS: string;
|
|
337
|
+
PERMISO_NOVEDAD: string;
|
|
338
|
+
PERMISO_EJECUCION_REPORTE: string;
|
|
339
|
+
PERMISO_FUENTE_REPORTE: string;
|
|
340
|
+
PERMISO_IMPORTAR_FUENTE: string;
|
|
341
|
+
PERMISO_FACTOR_PUNTAJE: string;
|
|
342
|
+
PERMISO_USUARIO_FORMATO: string;
|
|
343
|
+
PERMISO_PERIODO_DESC: string;
|
|
344
|
+
PERMISO_SITIO_DESC: string;
|
|
345
|
+
PERMISO_DISENO_REPORTE_DESC: string;
|
|
346
|
+
PERMISO_AUSENTISMOS_DESC: string;
|
|
347
|
+
PERMISO_NOVEDAD_DESC: string;
|
|
348
|
+
PERMISO_EJECUCION_REPORTE_DESC: string;
|
|
349
|
+
PERMISO_FUENTE_REPORTE_DESC: string;
|
|
350
|
+
PERMISO_IMPORTAR_FUENTE_DESC: string;
|
|
351
|
+
PERMISO_FACTOR_PUNTAJE_DESC: string;
|
|
352
|
+
PERMISO_USUARIO_FORMATO_DESC: string;
|
|
353
|
+
LISTAPERMISOSLOGIN: {
|
|
354
|
+
codigo: string;
|
|
355
|
+
nombre: string;
|
|
356
|
+
}[];
|
|
357
|
+
PERMISO_TIPO_SOLICITUD: string;
|
|
358
|
+
PERMISO_REPORTE_GENERADO: string;
|
|
359
|
+
PERMISO_ZONA_ECONOMICA: string;
|
|
360
|
+
PERMISO_UNIDAD: string;
|
|
361
|
+
PERMISO_SECCION_HOJA_VIDA: string;
|
|
362
|
+
PERMISO_ETAPA: string;
|
|
363
|
+
PERMISO_TIPO_PLANTA: string;
|
|
364
|
+
PERMISO_DESCRIPCION_CARGO: string;
|
|
365
|
+
PERMISO_GESTION_HERRAMIENTAS: string;
|
|
366
|
+
PERMISO_TIPO_SERVICIO: string;
|
|
367
|
+
PERMISO_TIPO_SOLICITUD_DESC: string;
|
|
368
|
+
PERMISO_REPORTE_GENERADO_DESC: string;
|
|
369
|
+
PERMISO_ZONA_ECONOMICA_DESC: string;
|
|
370
|
+
PERMISO_UNIDAD_DESC: string;
|
|
371
|
+
PERMISO_SECCION_HOJA_VIDA_DESC: string;
|
|
372
|
+
PERMISO_ETAPA_DESC: string;
|
|
373
|
+
PERMISO_TIPO_PLANTA_DESC: string;
|
|
374
|
+
PERMISO_DESCRIPCION_CARGO_DESC: string;
|
|
375
|
+
PERMISO_GESTION_HERRAMIENTAS_DESC: string;
|
|
376
|
+
PERMISO_TIPO_SERVICIO_DESC: string;
|
|
377
|
+
LISTAPERMISOSROL: {
|
|
378
|
+
codigo: string;
|
|
379
|
+
nombre: string;
|
|
380
|
+
}[];
|
|
381
|
+
MASCULINO: string;
|
|
382
|
+
FEMENINO: string;
|
|
383
|
+
TRANSGENERO: string;
|
|
384
|
+
MASCULINO_DESC: string;
|
|
385
|
+
FEMENINO_DESC: string;
|
|
386
|
+
TRANSGENERO_DESC: string;
|
|
387
|
+
SGENERO: {
|
|
388
|
+
codigo: string;
|
|
389
|
+
nombre: string;
|
|
390
|
+
}[];
|
|
391
|
+
SERIE: string;
|
|
392
|
+
CATEGORIA: string;
|
|
393
|
+
VALOR: string;
|
|
394
|
+
SERIE_STRING: string;
|
|
395
|
+
CATEGORIA_STRING: string;
|
|
396
|
+
VALOR_STRING: string;
|
|
397
|
+
Rgrafica: {
|
|
398
|
+
codigo: string;
|
|
399
|
+
nombre: string;
|
|
400
|
+
}[];
|
|
401
|
+
igual: string;
|
|
402
|
+
mayorQue: string;
|
|
403
|
+
mayorIgual: string;
|
|
404
|
+
menor: string;
|
|
405
|
+
menorIgual: string;
|
|
406
|
+
diferente: string;
|
|
407
|
+
inclusion: string;
|
|
408
|
+
como: string;
|
|
409
|
+
desIgual: string;
|
|
410
|
+
desMayorQue: string;
|
|
411
|
+
desMayorIgual: string;
|
|
412
|
+
desMenor: string;
|
|
413
|
+
desMenorIgual: string;
|
|
414
|
+
desDiferente: string;
|
|
415
|
+
desInclusion: string;
|
|
416
|
+
desComo: string;
|
|
417
|
+
Roperador: {
|
|
418
|
+
codigo: string;
|
|
419
|
+
nombre: string;
|
|
420
|
+
}[];
|
|
421
|
+
COPIAR_DIFERENCIA: string;
|
|
422
|
+
COPIAR_TODO: string;
|
|
423
|
+
COPIAR_DIFERENCIA_DESC: string;
|
|
424
|
+
COPIAR_TODO_DESC: string;
|
|
425
|
+
LISTA_TIPO_COPIAS: {
|
|
426
|
+
codigo: string;
|
|
427
|
+
nombre: string;
|
|
428
|
+
}[];
|
|
429
|
+
DATO: string;
|
|
430
|
+
CAMPO: string;
|
|
431
|
+
CAMPO_STRING: string;
|
|
432
|
+
DATO_STRING: string;
|
|
433
|
+
ListaTipo: {
|
|
434
|
+
codigo: string;
|
|
435
|
+
nombre: string;
|
|
436
|
+
}[];
|
|
437
|
+
ARCHIVO_TXT: string;
|
|
438
|
+
ARCHIVO_CSV: string;
|
|
439
|
+
ARCHIVO_TXT_DESC: string;
|
|
440
|
+
ARCHIVO_CSV_DESC: string;
|
|
441
|
+
ListaTipoArchivo: {
|
|
442
|
+
codigo: string;
|
|
443
|
+
nombre: string;
|
|
444
|
+
}[];
|
|
445
|
+
COLSANITAS_DAVIVIENDA: string;
|
|
446
|
+
COLSANITAS_BANCO_BOGOTA: string;
|
|
447
|
+
UNION_SOLUCIONES: string;
|
|
448
|
+
PGP: string;
|
|
449
|
+
BPGP: string;
|
|
450
|
+
CV_DAVIVIENDA: string;
|
|
451
|
+
CV_CITIBANK: string;
|
|
452
|
+
COLSANITAS_DAVIVIENDA_DESC: string;
|
|
453
|
+
COLSANITAS_BANCO_BOGOTA_DESC: string;
|
|
454
|
+
UNION_SOLUCIONES_DESC: string;
|
|
455
|
+
PGP_DESC: string;
|
|
456
|
+
BPGP_DESC: string;
|
|
457
|
+
CV_DAVIVIENDA_DESC: string;
|
|
458
|
+
CV_CITIBANK_DESC: string;
|
|
459
|
+
LISTADO_ENCRIPTACION: {
|
|
460
|
+
codigo: string;
|
|
461
|
+
nombre: string;
|
|
462
|
+
}[];
|
|
463
|
+
SIS: string;
|
|
464
|
+
SOC: string;
|
|
465
|
+
SOT: string;
|
|
466
|
+
DOT: string;
|
|
467
|
+
DPR: string;
|
|
468
|
+
EBS: string;
|
|
469
|
+
EBA: string;
|
|
470
|
+
SAP: string;
|
|
471
|
+
CAR: string;
|
|
472
|
+
SII: string;
|
|
473
|
+
SIG: string;
|
|
474
|
+
OAT: string;
|
|
475
|
+
SUR: string;
|
|
476
|
+
UVIN: string;
|
|
477
|
+
SSIN: string;
|
|
478
|
+
SSAC: string;
|
|
479
|
+
FIJO: string;
|
|
480
|
+
LISTADO_TIPOCONTABLE: {
|
|
481
|
+
codigo: string;
|
|
482
|
+
nombre: string;
|
|
483
|
+
}[];
|
|
484
|
+
ENCABEZADO_N: string;
|
|
485
|
+
ENCABEZADO: string;
|
|
486
|
+
DETALLE: string;
|
|
487
|
+
FINAL: string;
|
|
488
|
+
FINAL2: string;
|
|
489
|
+
ENCABEZADODESC_N: string;
|
|
490
|
+
ENCABEZADODESC: string;
|
|
491
|
+
DETALLEDESC: string;
|
|
492
|
+
FINALDESC: string;
|
|
493
|
+
FINAL2DES: string;
|
|
494
|
+
LISTADO_LINEA: {
|
|
495
|
+
codigo: string;
|
|
496
|
+
nombre: string;
|
|
497
|
+
}[];
|
|
498
|
+
CONSTANTE: string;
|
|
499
|
+
VARIABLE: string;
|
|
500
|
+
CONSTANTEDESC: string;
|
|
501
|
+
VARIABLEDESC: string;
|
|
502
|
+
LISTADO_TIPOCAMPOS: {
|
|
503
|
+
codigo: string;
|
|
504
|
+
nombre: string;
|
|
505
|
+
}[];
|
|
506
|
+
CAMBIARNATURALEZA: string;
|
|
507
|
+
NOAFECTA: string;
|
|
508
|
+
LISTADO_NATURALEZA: {
|
|
509
|
+
codigo: string;
|
|
510
|
+
nombre: string;
|
|
511
|
+
}[];
|
|
512
|
+
PEDIR: string;
|
|
513
|
+
AMBOS: string;
|
|
514
|
+
TRANSFORMADO: string;
|
|
515
|
+
NOGENERAR: string;
|
|
516
|
+
SIGENERAR: string;
|
|
517
|
+
PEDIRDESCRIPCION: string;
|
|
518
|
+
TRANSFORMADODESCRIPCION: string;
|
|
519
|
+
AMBOSDESCRIPCION: string;
|
|
520
|
+
MAPAGENERARDETALLE: {
|
|
521
|
+
codigo: string;
|
|
522
|
+
nombre: string;
|
|
523
|
+
}[];
|
|
524
|
+
PORLINEA: string;
|
|
525
|
+
PORZONA: string;
|
|
526
|
+
NOAPLICA: string;
|
|
527
|
+
PORLINEADESC: string;
|
|
528
|
+
PORZONADESC: string;
|
|
529
|
+
MAPAGENERARCOMPROBANTEPOR: {
|
|
530
|
+
codigo: string;
|
|
531
|
+
nombre: string;
|
|
532
|
+
}[];
|
|
533
|
+
SUMA: string;
|
|
534
|
+
DES_SUMA: string;
|
|
535
|
+
PROMEDIO: string;
|
|
536
|
+
DES_PROMEDIO: string;
|
|
537
|
+
CONTAR: string;
|
|
538
|
+
DES_CONTAR: string;
|
|
539
|
+
CONTAR_DISTINTO: string;
|
|
540
|
+
DES_CONTAR_DISTINTO: string;
|
|
541
|
+
MAX: string;
|
|
542
|
+
DES_MAX: string;
|
|
543
|
+
MIN: string;
|
|
544
|
+
DES_MIN: string;
|
|
545
|
+
MAPAOPERACIONES: {
|
|
546
|
+
codigo: string;
|
|
547
|
+
nombre: string;
|
|
548
|
+
}[];
|
|
549
|
+
NUMERO1: string;
|
|
550
|
+
NUMERO2: string;
|
|
551
|
+
NUMERO3: string;
|
|
552
|
+
NUMERO4: string;
|
|
553
|
+
NUMERO5: string;
|
|
554
|
+
NUMERO6: string;
|
|
555
|
+
NUMERO7: string;
|
|
556
|
+
NUMERO8: string;
|
|
557
|
+
NUMERO1DES: string;
|
|
558
|
+
NUMERO2DES: string;
|
|
559
|
+
NUMERO3DES: string;
|
|
560
|
+
NUMERO4DES: string;
|
|
561
|
+
NUMERO5DES: string;
|
|
562
|
+
NUMERO6DES: string;
|
|
563
|
+
NUMERO7DES: string;
|
|
564
|
+
NUMERO8DES: string;
|
|
565
|
+
MAPAFORMATONUMERO: {
|
|
566
|
+
codigo: string;
|
|
567
|
+
nombre: string;
|
|
568
|
+
}[];
|
|
569
|
+
VIGENTE_V: string;
|
|
570
|
+
VIGENTE: string;
|
|
571
|
+
NOVIGENTE: string;
|
|
572
|
+
DESVIGENTE: string;
|
|
573
|
+
DESNOVIGENTE: string;
|
|
574
|
+
TIPOS_VIGENTE_V: {
|
|
575
|
+
codigo: string;
|
|
576
|
+
nombre: string;
|
|
577
|
+
}[];
|
|
578
|
+
MENSAJE_INGRESAR: string;
|
|
579
|
+
LETRA_A: string;
|
|
580
|
+
LETRA_O: string;
|
|
581
|
+
LETRA_F: string;
|
|
582
|
+
MENSAJE_ADICIONAR: string;
|
|
583
|
+
MENSAJE_GUARDAR: string;
|
|
584
|
+
MENSAJE_ACTUALIZAR: string;
|
|
585
|
+
MENSAJE_ACTUALIZAR_VARIOS: string;
|
|
586
|
+
MENSAJE_ACTUALIZAR_NO: string;
|
|
587
|
+
MENSAJE_ELIMINAR_VARIOS_CONFIRMAR: string;
|
|
588
|
+
MENSAJE_ELIMINAR_CONFIRMAR: string;
|
|
589
|
+
MENSAJE_ELIMINAR: string;
|
|
590
|
+
MENSAJE_ELIMINAR_VARIOS: string;
|
|
591
|
+
MENSAJE_ELIMINAR_NO: string;
|
|
592
|
+
MENSAJE_EMVIARCORREO_NO: string;
|
|
593
|
+
MENSAJE_ELIMINAR_NO_ASOCIADO: string;
|
|
594
|
+
MENSAJE_TERMINO_SATISFACTORIO: string;
|
|
595
|
+
MENSAJE_CANCELAR: string;
|
|
596
|
+
MENSAJE_GUARDAR_NO: string;
|
|
597
|
+
MENSAJE_YA_EXISTE: string;
|
|
598
|
+
MENSAJE_ORDEN_REPETIDO: string;
|
|
599
|
+
MENSAJE_NO_EXISTE: string;
|
|
600
|
+
MENSAJE_GENERAR_REPORTE: string;
|
|
601
|
+
MENSAJE_FIN_GENERAR_REPORTE: string;
|
|
602
|
+
MENSAJE_INCOMPLETA: string;
|
|
603
|
+
MENSAJE_DUPLICADA: string;
|
|
604
|
+
ESTADO_ACTIVO: string;
|
|
605
|
+
MENSAJE_ERROR_SERVICIO: string;
|
|
606
|
+
MENSAJE_CAMPOS_OBLIGATORIOS: string;
|
|
607
|
+
SUBCONTENIDOINICIO: string;
|
|
608
|
+
SUBCONTENIDOFIN: string;
|
|
609
|
+
MENSAJE_PUNTO_PROCESO_REPETIDO: string;
|
|
610
|
+
MENSAJE_PARAMETRO_REPETIDO: string;
|
|
611
|
+
CODIGO_SARA: string;
|
|
612
|
+
CODIGO_SEGURIDAD: string;
|
|
613
|
+
CODIGO_SAM: string;
|
|
614
|
+
CODIGO_SAMANTA: string;
|
|
615
|
+
CODIGO_APS: string;
|
|
616
|
+
LOGO_SARA: string;
|
|
617
|
+
LOGO_SEGURIDAD: string;
|
|
618
|
+
LOGO_SAM: string;
|
|
619
|
+
LOGO_SAMAMNTA: string;
|
|
620
|
+
LOGO_APS: string;
|
|
621
|
+
LOGO_DESCOMPRIMIDO_SARA: string;
|
|
622
|
+
LOGO_DESCOMPRIMIDO_SAM: string;
|
|
623
|
+
LOGO_DESCOMPRIMIDO_SAMANTA: string;
|
|
624
|
+
LOGO_DESCOMPRIMIDO_APS: string;
|
|
625
|
+
LOGO_DESCOMPRIMIDO_SEGURIDAD: string;
|
|
626
|
+
MAPALOGO: {
|
|
627
|
+
codigo: string;
|
|
628
|
+
nombre: string;
|
|
629
|
+
}[];
|
|
630
|
+
MAPALOGODESPLEGADO: {
|
|
631
|
+
codigo: string;
|
|
632
|
+
nombre: string;
|
|
633
|
+
}[];
|
|
634
|
+
LOGOICONOSARA: string;
|
|
635
|
+
LOGOICONOSAM: string;
|
|
636
|
+
LOGOICONOAPS: string;
|
|
637
|
+
LOGOICONOSEG: string;
|
|
638
|
+
LOGOICONOSAMANTA: string;
|
|
639
|
+
MAPALOGOSICONOS: {
|
|
640
|
+
codigo: string;
|
|
641
|
+
nombre: string;
|
|
642
|
+
}[];
|
|
643
|
+
transform(value: any, ...args: any): any;
|
|
644
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeneralPipe, never>;
|
|
645
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GeneralPipe, "generalPipe", true>;
|
|
646
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GeneralPipe>;
|
|
647
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ReporteColumnarioPipe implements PipeTransform {
|
|
4
|
+
TIPO_FILA: string;
|
|
5
|
+
TIPO_COLUMNA: string;
|
|
6
|
+
TIPO_CELDA: string;
|
|
7
|
+
TIPO_LABEL: string;
|
|
8
|
+
TIPO_ADICIONAL: string;
|
|
9
|
+
TIPO_FILA_NO_VISUALIZAR: string;
|
|
10
|
+
TIPO_FILA_DESC: string;
|
|
11
|
+
TIPO_COLUMNA_DESC: string;
|
|
12
|
+
TIPO_CELDA_DESC: string;
|
|
13
|
+
TIPO_LABEL_DESC: string;
|
|
14
|
+
TIPO_FILA_NO_VISUALIZAR_DESC: string;
|
|
15
|
+
MAPA_TIPO_COLUMNAS: {
|
|
16
|
+
codigo: string;
|
|
17
|
+
nombre: string;
|
|
18
|
+
}[];
|
|
19
|
+
OPERACION_SUMAR: string;
|
|
20
|
+
OPERACION_MAXIMO: string;
|
|
21
|
+
OPERACION_MINIMO: string;
|
|
22
|
+
OPERACION_PROMEDIO: string;
|
|
23
|
+
OPERACION_CONTAR: string;
|
|
24
|
+
OPERACION_NINGUNA: string;
|
|
25
|
+
OPERACION_SUMAR_DESC: string;
|
|
26
|
+
OPERACION_MAXIMO_DESC: string;
|
|
27
|
+
OPERACION_MINIMO_DESC: string;
|
|
28
|
+
OPERACION_PROMEDIO_DESC: string;
|
|
29
|
+
OPERACION_CONTAR_DESC: string;
|
|
30
|
+
OPERACION_NINGUNA_DESC: string;
|
|
31
|
+
MAPA_OPERACIONES_COLUMNARIO: {
|
|
32
|
+
codigo: string;
|
|
33
|
+
nombre: string;
|
|
34
|
+
}[];
|
|
35
|
+
MAPA_OPERACIONES_COLUMNARIO_EXCEL: {
|
|
36
|
+
codigo: string;
|
|
37
|
+
nombre: string;
|
|
38
|
+
}[];
|
|
39
|
+
ASCENDENTE: string;
|
|
40
|
+
DESCENDENTE: string;
|
|
41
|
+
ASCENDENTE_DESC: string;
|
|
42
|
+
DESCENDENTE_DESC: string;
|
|
43
|
+
MAPA_ORDENAMIENTO: {
|
|
44
|
+
codigo: string;
|
|
45
|
+
nombre: string;
|
|
46
|
+
}[];
|
|
47
|
+
TIPO_MARCADORTEXTO: string;
|
|
48
|
+
TIPO_MARCADORSQL: string;
|
|
49
|
+
TIPO_MARCADORTEXTO_DESC: string;
|
|
50
|
+
TIPO_MARCADORSQL_DESC: string;
|
|
51
|
+
MAPA_TIPO_MARCADOR: {
|
|
52
|
+
codigo: string;
|
|
53
|
+
nombre: string;
|
|
54
|
+
}[];
|
|
55
|
+
transform(value: any, ...args: any): any;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReporteColumnarioPipe, never>;
|
|
57
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReporteColumnarioPipe, "reporteColumnarioPipe", true>;
|
|
58
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReporteColumnarioPipe>;
|
|
59
|
+
}
|