general-library-union 3.2.34 → 3.2.35
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/.browserslistrc +15 -0
- package/.editorconfig +16 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +20 -0
- package/.vscode/tasks.json +42 -0
- package/angular.json +143 -0
- package/karma.conf.js +44 -0
- package/ng-package.json +21 -0
- package/package.json +73 -62
- package/{public-api.d.ts → public-api.ts} +206 -163
- package/src/app/app.component.html +12 -0
- package/src/app/app.component.scss +0 -0
- package/src/app/app.component.spec.ts +29 -0
- package/src/app/app.component.ts +34 -0
- package/src/app/app.config.ts +43 -0
- package/src/app/app.module.ts +10 -0
- package/src/app/app.routes.ts +88 -0
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.html +6 -0
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.ts +39 -0
- package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.html +1 -0
- package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.scss +0 -0
- package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.ts +31 -0
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.html +9 -0
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.scss +28 -0
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.ts +32 -0
- package/src/app/core/componentes/filtro-general/filtro-general.component.html +36 -0
- package/src/app/core/componentes/filtro-general/filtro-general.component.scss +3 -0
- package/src/app/core/componentes/filtro-general/filtro-general.component.ts +207 -0
- package/src/app/core/componentes/footer/footer.component.html +13 -0
- package/src/app/core/componentes/footer/footer.component.scss +3 -0
- package/src/app/core/componentes/footer/footer.component.ts +20 -0
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.html +267 -0
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.scss +21 -0
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.ts +278 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/{Cambio.d.ts → Cambio.ts} +13 -7
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.ts +118 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.ts +76 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.ts +67 -0
- package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.ts +11 -0
- package/src/app/core/componentes/inicio-component/inicio-component.component.html +29 -0
- package/src/app/core/componentes/inicio-component/inicio-component.component.scss +63 -0
- package/src/app/core/componentes/inicio-component/inicio-component.component.ts +70 -0
- package/src/app/core/componentes/menu/menu.component.html +13 -0
- package/src/app/core/componentes/menu/menu.component.scss +36 -0
- package/src/app/core/componentes/menu/menu.component.ts +35 -0
- package/src/app/core/componentes/tabla-general/tabla-general.component.html +90 -0
- package/src/app/core/componentes/tabla-general/tabla-general.component.scss +0 -0
- package/src/app/core/componentes/tabla-general/tabla-general.component.ts +96 -0
- package/src/app/core/core.module.ts +22 -0
- package/src/app/core/errores/authentication.error.ts +6 -0
- package/src/app/core/modelos/error-response.model.ts +9 -0
- package/src/app/core/modelos/table-column.model.ts +10 -0
- package/src/app/core/modelos/user.model.ts +6 -0
- package/src/app/core/plantilla-general/plantilla-general.template.html +139 -0
- package/src/app/core/plantilla-general/plantilla-general.template.scss +37 -0
- package/src/app/core/plantilla-general/plantilla-general.template.ts +233 -0
- package/src/app/core/servicios/auth.service.ts +189 -0
- package/src/app/core/servicios/cargar-control-funcionalidad.service.ts +48 -0
- package/src/app/core/servicios/click-posicion.service.ts +16 -0
- package/src/app/core/servicios/data-exporter-table.utils.ts +78 -0
- package/src/app/core/servicios/error-interceptor.service.ts +208 -0
- package/src/app/core/servicios/guardias/auth.guard.ts +51 -0
- package/src/app/core/servicios/guardias/publico.guard.ts +26 -0
- package/src/app/core/servicios/interceptores/loading-interceptor.ts +37 -0
- package/src/app/core/servicios/interceptores/token-interceptor.service.ts +177 -0
- package/src/app/core/servicios/loading.service.ts +48 -0
- package/src/app/core/servicios/menu.service.ts +153 -0
- package/src/app/core/servicios/spinner-service.ts +18 -0
- package/src/app/core/servicios/storage.service.ts +68 -0
- package/src/app/core/servicios/template.service.ts +91 -0
- package/src/app/core/servicios/toast.service.ts +114 -0
- package/src/app/core/servicios/utils.service.ts +381 -0
- package/src/app/core/sharedlib.module.ts +11 -0
- package/src/app/core/utilidades/color.util.ts +197 -0
- package/src/app/layout/api/{menuchangeevent.d.ts → menuchangeevent.ts} +4 -4
- package/src/app/layout/app.breadcrumb.component.html +20 -0
- package/src/app/layout/app.breadcrumb.component.ts +78 -0
- package/src/app/layout/app.footer.component.html +18 -0
- package/src/app/layout/app.footer.component.ts +15 -0
- package/src/app/layout/app.layout.component.html +20 -0
- package/src/app/layout/app.layout.component.ts +201 -0
- package/src/app/layout/app.layout.module.ts +9 -0
- package/src/app/layout/app.menu.component.html +6 -0
- package/src/app/layout/app.menu.component.ts +51 -0
- package/src/app/layout/app.menu.service.ts +23 -0
- package/src/app/layout/app.menuitem.component.ts +252 -0
- package/src/app/layout/app.menuprofile.component.html +35 -0
- package/src/app/layout/app.menuprofile.component.ts +60 -0
- package/src/app/layout/app.rightmenu.component.html +72 -0
- package/src/app/layout/app.rightmenu.component.ts +24 -0
- package/src/app/layout/app.sidebar.component.html +40 -0
- package/src/app/layout/app.sidebar.component.ts +81 -0
- package/src/app/layout/app.topbar.component.html +214 -0
- package/src/app/layout/app.topbar.component.ts +336 -0
- package/src/app/layout/config/app.config.component.html +125 -0
- package/src/app/layout/config/app.config.component.ts +206 -0
- package/src/app/layout/config/app.config.module.ts +11 -0
- package/src/app/layout/service/app.layout.service.ts +191 -0
- package/src/app/publico/pages/login/login.page.html +53 -0
- package/src/app/publico/pages/login/login.page.scss +210 -0
- package/src/app/publico/pages/login/login.page.ts +130 -0
- package/src/app/publico/pages/not-found/not-found.page.html +36 -0
- package/src/app/publico/pages/not-found/not-found.page.scss +2 -0
- package/src/app/publico/pages/not-found/not-found.page.ts +46 -0
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.html +58 -0
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.scss +49 -0
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.ts +176 -0
- package/src/app/publico/pages/timeout/timeout.page.html +24 -0
- package/src/app/publico/pages/timeout/timeout.page.scss +2 -0
- package/src/app/publico/pages/timeout/timeout.page.ts +18 -0
- package/src/app/seguridad/constantes/ConstantesGenerales.ts +30 -0
- package/src/app/seguridad/constantes/ReporteEntradaConstantes.ts +18 -0
- package/src/app/seguridad/constantes/ReporteFuenteConstantes.ts +13 -0
- package/src/app/seguridad/modelos/AplicacionModel.ts +11 -0
- package/src/app/seguridad/modelos/ArchivoPortalModel.ts +16 -0
- package/src/app/seguridad/modelos/AtributoPuntoModel.ts +9 -0
- package/src/app/seguridad/modelos/AtributoSSOportalModel.ts +22 -0
- package/src/app/seguridad/modelos/{AuditoriaArchivoModel.d.ts → AuditoriaArchivoModel.ts} +13 -10
- package/src/app/seguridad/modelos/CargueLineaModel.ts +17 -0
- package/src/app/seguridad/modelos/ColoresRGB.ts +17 -0
- package/src/app/seguridad/modelos/ColumnaFuenteModel.ts +9 -0
- package/src/app/seguridad/modelos/{ColumnaWraperModel.d.ts → ColumnaWraperModel.ts} +7 -6
- package/src/app/seguridad/modelos/ComplementoModel.ts +10 -0
- package/src/app/seguridad/modelos/ComponentePaginaModel.ts +22 -0
- package/src/app/seguridad/modelos/ConexionModel.ts +15 -0
- package/src/app/seguridad/modelos/{ContenidoHtmlPortalModel.d.ts → ContenidoHtmlPortalModel.ts} +25 -20
- package/src/app/seguridad/modelos/ControlFuncionModel.ts +10 -0
- package/src/app/seguridad/modelos/CorreoModel.ts +45 -0
- package/src/app/seguridad/modelos/{CorreoOrgEmpModModel.d.ts → CorreoOrgEmpModModel.ts} +11 -8
- package/src/app/seguridad/modelos/CorreoWSModel.ts +49 -0
- package/src/app/seguridad/modelos/CruceRecursoPuntoModel.ts +14 -0
- package/src/app/seguridad/modelos/{DatoInicioModel.d.ts → DatoInicioModel.ts} +7 -6
- package/src/app/seguridad/modelos/{EjecucionReporteDataModel.d.ts → EjecucionReporteDataModel.ts} +21 -20
- package/src/app/seguridad/modelos/EmpresaModel.ts +25 -0
- package/src/app/seguridad/modelos/EmpresaSeguridadModel.ts +19 -0
- package/src/app/seguridad/modelos/{EntradaComplementoModel.d.ts → EntradaComplementoModel.ts} +9 -6
- package/src/app/seguridad/modelos/EtiquetaModel.ts +4 -0
- package/src/app/seguridad/modelos/Etiquetas.ts +14 -0
- package/src/app/seguridad/modelos/{ForeingWraperModel.d.ts → ForeingWraperModel.ts} +9 -6
- package/src/app/seguridad/modelos/FuenteCampoAtributoModel.ts +21 -0
- package/src/app/seguridad/modelos/{FuenteCampoModel.d.ts → FuenteCampoModel.ts} +20 -16
- package/src/app/seguridad/modelos/FuenteDato.ts +19 -0
- package/src/app/seguridad/modelos/FuenteEntradaModel.ts +9 -0
- package/src/app/seguridad/modelos/{FuenteGeneralModel.d.ts → FuenteGeneralModel.ts} +55 -36
- package/src/app/seguridad/modelos/FuenteLineaServicioModel.ts +19 -0
- package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.ts +14 -0
- package/src/app/seguridad/modelos/{FuenteServicioModel.d.ts → FuenteServicioModel.ts} +61 -47
- package/src/app/seguridad/modelos/FuncionalidadModel.ts +12 -0
- package/src/app/seguridad/modelos/GeneralModel.ts +16 -0
- package/src/app/seguridad/modelos/{GrupoAccesoModel.d.ts → GrupoAccesoModel.ts} +9 -6
- package/src/app/seguridad/modelos/GrupoControlFuncionModel.ts +12 -0
- package/src/app/seguridad/modelos/GrupoFuenteModel.ts +17 -0
- package/src/app/seguridad/modelos/GrupoPermisoModel.ts +16 -0
- package/src/app/seguridad/modelos/{JoinFromModel.d.ts → JoinFromModel.ts} +4 -4
- package/src/app/seguridad/modelos/ListaServicioModel.ts +18 -0
- package/src/app/seguridad/modelos/LlaveForaneaModel.ts +6 -0
- package/src/app/seguridad/modelos/LoginModel.ts +19 -0
- package/src/app/seguridad/modelos/MensajeSistemaModel.ts +10 -0
- package/src/app/seguridad/modelos/{MenuPortalModel.d.ts → MenuPortalModel.ts} +5 -4
- package/src/app/seguridad/modelos/ModulosModel.ts +17 -0
- package/src/app/seguridad/modelos/{ObjetoReporteModel.d.ts → ObjetoReporteModel.ts} +6 -5
- package/src/app/seguridad/modelos/PaginaPortalModel.ts +23 -0
- package/src/app/seguridad/modelos/ParametroComponenteModel.ts +9 -0
- package/src/app/seguridad/modelos/ParametrosGeneralModel.ts +16 -0
- package/src/app/seguridad/modelos/PermisoFuncionModel.ts +11 -0
- package/src/app/seguridad/modelos/PermisocontenidoModel.ts +20 -0
- package/src/app/seguridad/modelos/{PeticionModel.d.ts → PeticionModel.ts} +20 -15
- package/src/app/seguridad/modelos/PreguntaSeguridadModel.ts +9 -0
- package/src/app/seguridad/modelos/PropiedadModel.ts +12 -0
- package/src/app/seguridad/modelos/PublicacionWebModel.ts +29 -0
- package/src/app/seguridad/modelos/PuntoProcesoModel.ts +7 -0
- package/src/app/seguridad/modelos/RecursoPunto.ts +13 -0
- package/src/app/seguridad/modelos/RecursoPuntoModel.ts +13 -0
- package/src/app/seguridad/modelos/ReporteBanda.ts +9 -0
- package/src/app/seguridad/modelos/ReporteColumna.ts +33 -0
- package/src/app/seguridad/modelos/ReporteColumnario.ts +82 -0
- package/src/app/seguridad/modelos/ReporteColumnarioMarcador.ts +31 -0
- package/src/app/seguridad/modelos/{ReporteEntradaModel.d.ts → ReporteEntradaModel.ts} +21 -19
- package/src/app/seguridad/modelos/{ReporteFuenteModel.d.ts → ReporteFuenteModel.ts} +141 -87
- package/src/app/seguridad/modelos/ReporteMarcador.ts +40 -0
- package/src/app/seguridad/modelos/ReporteSoporte.ts +10 -0
- package/src/app/seguridad/modelos/ReporteTabla.ts +14 -0
- package/src/app/seguridad/modelos/RespuestaModel.ts +9 -0
- package/src/app/seguridad/modelos/{RolModel.d.ts → RolModel.ts} +41 -37
- package/src/app/seguridad/modelos/ServidorCorreoModel.ts +31 -0
- package/src/app/seguridad/modelos/SistemaMensajeModel.ts +11 -0
- package/src/app/seguridad/modelos/SitioPortalModel.ts +29 -0
- package/src/app/seguridad/modelos/TablaFromModel.ts +5 -0
- package/src/app/seguridad/modelos/TareasModel.ts +54 -0
- package/src/app/seguridad/modelos/TextoModel.ts +11 -0
- package/src/app/seguridad/modelos/TipoEtiqueta.ts +8 -0
- package/src/app/seguridad/modelos/UnionModel.ts +14 -0
- package/src/app/seguridad/modelos/{UsuarioModel.d.ts → UsuarioModel.ts} +60 -49
- package/src/app/seguridad/modelos/UsuariogrupoModel.ts +27 -0
- package/src/app/seguridad/modelos/aplicacion-propiedad-model.ts +16 -0
- package/src/app/seguridad/modelos/contenidoCorreoModel.ts +13 -0
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.html +47 -0
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.scss +8 -0
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.ts +144 -0
- package/src/app/shared/servicios/cargar-archivos.service.ts +51 -0
- package/src/app/shared/servicios/cargar-mapas.service.ts +43 -0
- package/src/app/shared/servicios/encriptado-basico.service.ts +54 -0
- package/src/app/shared/servicios/encriptador-simetrico.service.ts +29 -0
- package/src/app/shared/servicios/general.service.ts +124 -0
- package/src/app/shared/servicios/parametros-navegacion.service.ts +20 -0
- package/src/app/shared/servicios/plantillas.service.ts +22 -0
- package/src/app/shared/servicios/tarea.service.ts +71 -0
- package/src/app/shared/utilidades/translate-loader.util.ts +44 -0
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.html +175 -0
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.scss +78 -0
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.ts +438 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.html +87 -0
- 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 +189 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.html +117 -0
- 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 +87 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.html +158 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.scss +6 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.ts +345 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.html +131 -0
- 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 +198 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.html +206 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.scss +3 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.ts +328 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.html +2121 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.scss +241 -0
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.ts +1698 -0
- package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.html +33 -0
- 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 +96 -0
- package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.html +54 -0
- 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 +111 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.html +394 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.scss +10 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.ts +610 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.html +130 -0
- 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 +172 -0
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.html +404 -0
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.scss +5 -0
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.ts +763 -0
- package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.html +145 -0
- 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 +302 -0
- package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.html +19 -0
- 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 +88 -0
- package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.html +714 -0
- 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 +688 -0
- package/src/app/webcommon/pipes/dashboard.pipe.ts +79 -0
- package/src/app/webcommon/pipes/fuente.pipe.ts +207 -0
- package/src/app/webcommon/pipes/general.pipe.ts +1046 -0
- package/src/app/webcommon/pipes/reporte-columnario.pipe.ts +101 -0
- package/src/app/webcommon/pipes/reporte-fuente.pipe.ts +306 -0
- package/src/app/webcommon/pipes/sara-general.pipe.ts +289 -0
- package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.html +90 -0
- 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 +262 -0
- package/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.html +50 -0
- 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 +135 -0
- package/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.html +44 -0
- 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 +66 -0
- package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.html +41 -0
- 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 +283 -0
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.html +179 -0
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.scss +3 -0
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.ts +266 -0
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.html +273 -0
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.scss +13 -0
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.ts +564 -0
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.html +10 -0
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.scss +5 -0
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.ts +58 -0
- package/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.html +71 -0
- 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 +154 -0
- package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.html +11 -0
- 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 +82 -0
- package/src/app/webcommon/services/carguelinea.service.ts +74 -0
- package/src/app/webcommon/services/dashboard.service.ts +258 -0
- package/src/app/webcommon/services/ejecucionreporte.service.ts +160 -0
- package/src/app/webcommon/services/fechaUtils.service.ts +127 -0
- package/src/app/webcommon/services/fuentegeneral.service.ts +74 -0
- package/src/app/webcommon/services/homologacion.service.ts +49 -0
- package/src/app/webcommon/services/plantillas.service.ts +165 -0
- package/src/app/webcommon/services/reportes.service.ts +133 -0
- package/src/app/webcommon/webcommon.module.ts +11 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +25 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +14 -0
- package/src/main.ts +12 -0
- package/src/polyfills.ts +53 -0
- package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +1 -0
- package/src/test.ts +14 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +35 -0
- package/tsconfig.spec.json +18 -0
- package/esm2022/general-library-union.mjs +0 -5
- package/esm2022/public-api.mjs +0 -182
- package/esm2022/src/app/core/componentes/breadcrumb/breadcrumb.component.mjs +0 -40
- package/esm2022/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.mjs +0 -28
- package/esm2022/src/app/core/componentes/filtro-general/filtro-general.component.mjs +0 -203
- package/esm2022/src/app/core/componentes/footer/footer.component.mjs +0 -16
- package/esm2022/src/app/core/componentes/formulariodinamico/formulariodinamico.component.mjs +0 -276
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/Cambio.mjs +0 -11
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.mjs +0 -124
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.mjs +0 -73
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.mjs +0 -59
- package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.mjs +0 -21
- package/esm2022/src/app/core/componentes/inicio-component/inicio-component.component.mjs +0 -72
- package/esm2022/src/app/core/componentes/menu/menu.component.mjs +0 -37
- package/esm2022/src/app/core/componentes/tabla-general/tabla-general.component.mjs +0 -93
- package/esm2022/src/app/core/core.module.mjs +0 -23
- package/esm2022/src/app/core/errores/authentication.error.mjs +0 -7
- package/esm2022/src/app/core/modelos/error-response.model.mjs +0 -2
- package/esm2022/src/app/core/modelos/table-column.model.mjs +0 -2
- package/esm2022/src/app/core/modelos/user.model.mjs +0 -7
- package/esm2022/src/app/core/plantilla-general/plantilla-general.template.mjs +0 -230
- package/esm2022/src/app/core/servicios/auth.service.mjs +0 -185
- package/esm2022/src/app/core/servicios/cargar-control-funcionalidad.service.mjs +0 -54
- package/esm2022/src/app/core/servicios/data-exporter-table.utils.mjs +0 -64
- package/esm2022/src/app/core/servicios/error-interceptor.service.mjs +0 -214
- package/esm2022/src/app/core/servicios/guardias/auth.guard.mjs +0 -66
- package/esm2022/src/app/core/servicios/guardias/publico.guard.mjs +0 -35
- package/esm2022/src/app/core/servicios/interceptores/loading-interceptor.mjs +0 -37
- package/esm2022/src/app/core/servicios/interceptores/token-interceptor.service.mjs +0 -180
- package/esm2022/src/app/core/servicios/loading.service.mjs +0 -43
- package/esm2022/src/app/core/servicios/menu.service.mjs +0 -146
- package/esm2022/src/app/core/servicios/spinner-service.mjs +0 -22
- package/esm2022/src/app/core/servicios/storage.service.mjs +0 -68
- package/esm2022/src/app/core/servicios/template.service.mjs +0 -99
- package/esm2022/src/app/core/servicios/toast.service.mjs +0 -120
- package/esm2022/src/app/core/servicios/utils.service.mjs +0 -368
- package/esm2022/src/app/core/sharedlib.module.mjs +0 -16
- package/esm2022/src/app/core/utilidades/color.util.mjs +0 -177
- package/esm2022/src/app/layout/api/menuchangeevent.mjs +0 -2
- package/esm2022/src/app/layout/app.breadcrumb.component.mjs +0 -71
- package/esm2022/src/app/layout/app.footer.component.mjs +0 -18
- package/esm2022/src/app/layout/app.layout.component.mjs +0 -188
- package/esm2022/src/app/layout/app.layout.module.mjs +0 -15
- package/esm2022/src/app/layout/app.menu.component.mjs +0 -51
- package/esm2022/src/app/layout/app.menu.service.mjs +0 -24
- package/esm2022/src/app/layout/app.menuitem.component.mjs +0 -296
- package/esm2022/src/app/layout/app.menuprofile.component.mjs +0 -78
- package/esm2022/src/app/layout/app.rightmenu.component.mjs +0 -24
- package/esm2022/src/app/layout/app.sidebar.component.mjs +0 -92
- package/esm2022/src/app/layout/app.topbar.component.mjs +0 -346
- package/esm2022/src/app/layout/service/app.layout.service.mjs +0 -134
- package/esm2022/src/app/publico/pages/login/login.page.mjs +0 -132
- package/esm2022/src/app/publico/pages/not-found/not-found.page.mjs +0 -51
- package/esm2022/src/app/publico/pages/seleccion-rol/seleccion-rol.component.mjs +0 -167
- package/esm2022/src/app/publico/pages/timeout/timeout.page.mjs +0 -20
- package/esm2022/src/app/seguridad/constantes/ConstantesGenerales.mjs +0 -30
- package/esm2022/src/app/seguridad/constantes/ReporteEntradaConstantes.mjs +0 -19
- package/esm2022/src/app/seguridad/modelos/AplicacionModel.mjs +0 -8
- package/esm2022/src/app/seguridad/modelos/ArchivoPortalModel.mjs +0 -14
- package/esm2022/src/app/seguridad/modelos/AtributoPuntoModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/AtributoSSOportalModel.mjs +0 -17
- package/esm2022/src/app/seguridad/modelos/AuditoriaArchivoModel.mjs +0 -11
- package/esm2022/src/app/seguridad/modelos/CargueLineaModel.mjs +0 -13
- package/esm2022/src/app/seguridad/modelos/ColoresRGB.mjs +0 -18
- package/esm2022/src/app/seguridad/modelos/ColumnaFuenteModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/ColumnaWraperModel.mjs +0 -6
- package/esm2022/src/app/seguridad/modelos/ComplementoModel.mjs +0 -7
- package/esm2022/src/app/seguridad/modelos/ComponentePaginaModel.mjs +0 -21
- package/esm2022/src/app/seguridad/modelos/ConexionModel.mjs +0 -14
- package/esm2022/src/app/seguridad/modelos/ContenidoHtmlPortalModel.mjs +0 -21
- package/esm2022/src/app/seguridad/modelos/ControlFuncionModel.mjs +0 -8
- package/esm2022/src/app/seguridad/modelos/CorreoModel.mjs +0 -35
- package/esm2022/src/app/seguridad/modelos/CorreoOrgEmpModModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/CorreoWSModel.mjs +0 -37
- package/esm2022/src/app/seguridad/modelos/CruceRecursoPuntoModel.mjs +0 -14
- package/esm2022/src/app/seguridad/modelos/DatoInicioModel.mjs +0 -6
- package/esm2022/src/app/seguridad/modelos/EjecucionReporteDataModel.mjs +0 -14
- package/esm2022/src/app/seguridad/modelos/EmpresaModel.mjs +0 -25
- package/esm2022/src/app/seguridad/modelos/EmpresaSeguridadModel.mjs +0 -19
- package/esm2022/src/app/seguridad/modelos/EntradaComplementoModel.mjs +0 -7
- package/esm2022/src/app/seguridad/modelos/EtiquetaModel.mjs +0 -5
- package/esm2022/src/app/seguridad/modelos/Etiquetas.mjs +0 -12
- package/esm2022/src/app/seguridad/modelos/ForeingWraperModel.mjs +0 -6
- package/esm2022/src/app/seguridad/modelos/FuenteCampoAtributoModel.mjs +0 -16
- package/esm2022/src/app/seguridad/modelos/FuenteCampoModel.mjs +0 -17
- package/esm2022/src/app/seguridad/modelos/FuenteDato.mjs +0 -19
- package/esm2022/src/app/seguridad/modelos/FuenteEntradaModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/FuenteGeneralModel.mjs +0 -37
- package/esm2022/src/app/seguridad/modelos/FuenteLineaServicioModel.mjs +0 -16
- package/esm2022/src/app/seguridad/modelos/FuenteProcesoGeneralModel.mjs +0 -11
- package/esm2022/src/app/seguridad/modelos/FuenteServicioModel.mjs +0 -51
- package/esm2022/src/app/seguridad/modelos/FuncionalidadModel.mjs +0 -10
- package/esm2022/src/app/seguridad/modelos/GeneralModel.mjs +0 -15
- package/esm2022/src/app/seguridad/modelos/GrupoAccesoModel.mjs +0 -7
- package/esm2022/src/app/seguridad/modelos/GrupoControlFuncionModel.mjs +0 -10
- package/esm2022/src/app/seguridad/modelos/GrupoFuenteModel.mjs +0 -13
- package/esm2022/src/app/seguridad/modelos/GrupoPermisoModel.mjs +0 -14
- package/esm2022/src/app/seguridad/modelos/JoinFromModel.mjs +0 -5
- package/esm2022/src/app/seguridad/modelos/ListaServicioModel.mjs +0 -17
- package/esm2022/src/app/seguridad/modelos/LlaveForaneaModel.mjs +0 -7
- package/esm2022/src/app/seguridad/modelos/LoginModel.mjs +0 -15
- package/esm2022/src/app/seguridad/modelos/MensajeSistemaModel.mjs +0 -8
- package/esm2022/src/app/seguridad/modelos/MenuPortalModel.mjs +0 -5
- package/esm2022/src/app/seguridad/modelos/ModulosModel.mjs +0 -18
- package/esm2022/src/app/seguridad/modelos/ObjetoReporteModel.mjs +0 -6
- package/esm2022/src/app/seguridad/modelos/PaginaPortalModel.mjs +0 -20
- package/esm2022/src/app/seguridad/modelos/ParametroComponenteModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/ParametrosGeneralModel.mjs +0 -15
- package/esm2022/src/app/seguridad/modelos/PermisoFuncionModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/PermisocontenidoModel.mjs +0 -20
- package/esm2022/src/app/seguridad/modelos/PeticionModel.mjs +0 -16
- package/esm2022/src/app/seguridad/modelos/PreguntaSeguridadModel.mjs +0 -7
- package/esm2022/src/app/seguridad/modelos/PropiedadModel.mjs +0 -10
- package/esm2022/src/app/seguridad/modelos/PublicacionWebModel.mjs +0 -27
- package/esm2022/src/app/seguridad/modelos/PuntoProcesoModel.mjs +0 -7
- package/esm2022/src/app/seguridad/modelos/RecursoPunto.mjs +0 -13
- package/esm2022/src/app/seguridad/modelos/RecursoPuntoModel.mjs +0 -13
- package/esm2022/src/app/seguridad/modelos/ReporteBanda.mjs +0 -8
- package/esm2022/src/app/seguridad/modelos/ReporteColumna.mjs +0 -33
- package/esm2022/src/app/seguridad/modelos/ReporteColumnario.mjs +0 -69
- package/esm2022/src/app/seguridad/modelos/ReporteColumnarioMarcador.mjs +0 -24
- package/esm2022/src/app/seguridad/modelos/ReporteEntradaModel.mjs +0 -20
- package/esm2022/src/app/seguridad/modelos/ReporteFuenteModel.mjs +0 -124
- package/esm2022/src/app/seguridad/modelos/ReporteMarcador.mjs +0 -40
- package/esm2022/src/app/seguridad/modelos/ReporteSoporte.mjs +0 -10
- package/esm2022/src/app/seguridad/modelos/ReporteTabla.mjs +0 -13
- package/esm2022/src/app/seguridad/modelos/RespuestaModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/RolModel.mjs +0 -39
- package/esm2022/src/app/seguridad/modelos/ServidorCorreoModel.mjs +0 -28
- package/esm2022/src/app/seguridad/modelos/SistemaMensajeModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/SitioPortalModel.mjs +0 -25
- package/esm2022/src/app/seguridad/modelos/TablaFromModel.mjs +0 -5
- package/esm2022/src/app/seguridad/modelos/TareasModel.mjs +0 -54
- package/esm2022/src/app/seguridad/modelos/TextoModel.mjs +0 -9
- package/esm2022/src/app/seguridad/modelos/TipoEtiqueta.mjs +0 -8
- package/esm2022/src/app/seguridad/modelos/UnionModel.mjs +0 -12
- package/esm2022/src/app/seguridad/modelos/UsuarioModel.mjs +0 -53
- package/esm2022/src/app/seguridad/modelos/UsuariogrupoModel.mjs +0 -24
- package/esm2022/src/app/seguridad/modelos/aplicacion-propiedad-model.mjs +0 -15
- package/esm2022/src/app/seguridad/modelos/contenidoCorreoModel.mjs +0 -10
- package/esm2022/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.mjs +0 -154
- package/esm2022/src/app/shared/servicios/cargar-archivos.service.mjs +0 -54
- package/esm2022/src/app/shared/servicios/cargar-mapas.service.mjs +0 -46
- package/esm2022/src/app/shared/servicios/encriptado-basico.service.mjs +0 -53
- package/esm2022/src/app/shared/servicios/general.service.mjs +0 -104
- package/esm2022/src/app/shared/servicios/parametros-navegacion.service.mjs +0 -21
- package/esm2022/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.mjs +0 -378
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.mjs +0 -187
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.mjs +0 -85
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.mjs +0 -347
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.mjs +0 -206
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.mjs +0 -327
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.mjs +0 -1590
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.mjs +0 -105
- package/esm2022/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.mjs +0 -114
- package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.mjs +0 -597
- package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.mjs +0 -177
- package/esm2022/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.mjs +0 -769
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.mjs +0 -331
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.mjs +0 -95
- package/esm2022/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.mjs +0 -675
- package/esm2022/src/app/webcommon/pipes/dashboard.pipe.mjs +0 -86
- package/esm2022/src/app/webcommon/pipes/fuente.pipe.mjs +0 -201
- package/esm2022/src/app/webcommon/pipes/general.pipe.mjs +0 -918
- package/esm2022/src/app/webcommon/pipes/reporte-columnario.pipe.mjs +0 -115
- package/esm2022/src/app/webcommon/pipes/reporte-fuente.pipe.mjs +0 -301
- package/esm2022/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.mjs +0 -267
- package/esm2022/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.mjs +0 -128
- package/esm2022/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.mjs +0 -73
- package/esm2022/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.mjs +0 -293
- package/esm2022/src/app/webcommon/popups/popup-recurso/popup-recurso.component.mjs +0 -269
- package/esm2022/src/app/webcommon/popups/popup-reporte/popup-reporte.component.mjs +0 -563
- package/esm2022/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.mjs +0 -64
- package/esm2022/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.mjs +0 -162
- package/esm2022/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.mjs +0 -89
- package/esm2022/src/app/webcommon/services/carguelinea.service.mjs +0 -69
- package/esm2022/src/app/webcommon/services/dashboard.service.mjs +0 -253
- package/esm2022/src/app/webcommon/services/ejecucionreporte.service.mjs +0 -114
- package/esm2022/src/app/webcommon/services/fechaUtils.service.mjs +0 -97
- package/esm2022/src/app/webcommon/services/fuentegeneral.service.mjs +0 -68
- package/esm2022/src/app/webcommon/services/homologacion.service.mjs +0 -50
- package/esm2022/src/app/webcommon/services/plantillas.service.mjs +0 -129
- package/esm2022/src/app/webcommon/services/reportes.service.mjs +0 -95
- package/esm2022/src/app/webcommon/webcommon.module.mjs +0 -15
- package/esm2022/src/environments/environment.mjs +0 -24
- package/fesm2022/general-library-union.mjs +0 -16107
- package/fesm2022/general-library-union.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/src/app/core/componentes/breadcrumb/breadcrumb.component.d.ts +0 -18
- package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.d.ts +0 -14
- package/src/app/core/componentes/filtro-general/filtro-general.component.d.ts +0 -36
- package/src/app/core/componentes/footer/footer.component.d.ts +0 -9
- package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.d.ts +0 -50
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.d.ts +0 -44
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.d.ts +0 -45
- package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.d.ts +0 -33
- package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.d.ts +0 -9
- package/src/app/core/componentes/inicio-component/inicio-component.component.d.ts +0 -26
- package/src/app/core/componentes/menu/menu.component.d.ts +0 -16
- package/src/app/core/componentes/tabla-general/tabla-general.component.d.ts +0 -32
- package/src/app/core/core.module.d.ts +0 -8
- package/src/app/core/errores/authentication.error.d.ts +0 -3
- package/src/app/core/modelos/error-response.model.d.ts +0 -9
- package/src/app/core/modelos/table-column.model.d.ts +0 -12
- package/src/app/core/modelos/user.model.d.ts +0 -6
- package/src/app/core/plantilla-general/plantilla-general.template.d.ts +0 -89
- package/src/app/core/servicios/auth.service.d.ts +0 -52
- package/src/app/core/servicios/cargar-control-funcionalidad.service.d.ts +0 -19
- package/src/app/core/servicios/data-exporter-table.utils.d.ts +0 -11
- package/src/app/core/servicios/error-interceptor.service.d.ts +0 -41
- package/src/app/core/servicios/guardias/auth.guard.d.ts +0 -17
- package/src/app/core/servicios/guardias/publico.guard.d.ts +0 -13
- package/src/app/core/servicios/interceptores/loading-interceptor.d.ts +0 -11
- package/src/app/core/servicios/interceptores/token-interceptor.service.d.ts +0 -26
- package/src/app/core/servicios/loading.service.d.ts +0 -22
- package/src/app/core/servicios/menu.service.d.ts +0 -35
- package/src/app/core/servicios/spinner-service.d.ts +0 -9
- package/src/app/core/servicios/storage.service.d.ts +0 -37
- package/src/app/core/servicios/template.service.d.ts +0 -20
- package/src/app/core/servicios/toast.service.d.ts +0 -48
- package/src/app/core/servicios/utils.service.d.ts +0 -43
- package/src/app/core/sharedlib.module.d.ts +0 -6
- package/src/app/core/utilidades/color.util.d.ts +0 -70
- package/src/app/layout/app.breadcrumb.component.d.ts +0 -28
- package/src/app/layout/app.footer.component.d.ts +0 -8
- package/src/app/layout/app.layout.component.d.ts +0 -39
- package/src/app/layout/app.layout.module.d.ts +0 -6
- package/src/app/layout/app.menu.component.d.ts +0 -19
- package/src/app/layout/app.menu.service.d.ts +0 -12
- package/src/app/layout/app.menuitem.component.d.ts +0 -41
- package/src/app/layout/app.menuprofile.component.d.ts +0 -18
- package/src/app/layout/app.rightmenu.component.d.ts +0 -10
- package/src/app/layout/app.sidebar.component.d.ts +0 -34
- package/src/app/layout/app.topbar.component.d.ts +0 -79
- package/src/app/layout/service/app.layout.service.d.ts +0 -57
- package/src/app/publico/pages/login/login.page.d.ts +0 -40
- package/src/app/publico/pages/not-found/not-found.page.d.ts +0 -17
- package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.d.ts +0 -41
- package/src/app/publico/pages/timeout/timeout.page.d.ts +0 -10
- package/src/app/seguridad/constantes/ConstantesGenerales.d.ts +0 -25
- package/src/app/seguridad/constantes/ReporteEntradaConstantes.d.ts +0 -7
- package/src/app/seguridad/modelos/AplicacionModel.d.ts +0 -7
- package/src/app/seguridad/modelos/ArchivoPortalModel.d.ts +0 -13
- package/src/app/seguridad/modelos/AtributoPuntoModel.d.ts +0 -8
- package/src/app/seguridad/modelos/AtributoSSOportalModel.d.ts +0 -16
- package/src/app/seguridad/modelos/CargueLineaModel.d.ts +0 -12
- package/src/app/seguridad/modelos/ColoresRGB.d.ts +0 -17
- package/src/app/seguridad/modelos/ColumnaFuenteModel.d.ts +0 -8
- package/src/app/seguridad/modelos/ComplementoModel.d.ts +0 -6
- package/src/app/seguridad/modelos/ComponentePaginaModel.d.ts +0 -20
- package/src/app/seguridad/modelos/ConexionModel.d.ts +0 -13
- package/src/app/seguridad/modelos/ControlFuncionModel.d.ts +0 -7
- package/src/app/seguridad/modelos/CorreoModel.d.ts +0 -31
- package/src/app/seguridad/modelos/CorreoWSModel.d.ts +0 -33
- package/src/app/seguridad/modelos/CruceRecursoPuntoModel.d.ts +0 -13
- package/src/app/seguridad/modelos/EmpresaModel.d.ts +0 -23
- package/src/app/seguridad/modelos/EmpresaSeguridadModel.d.ts +0 -18
- package/src/app/seguridad/modelos/EtiquetaModel.d.ts +0 -4
- package/src/app/seguridad/modelos/Etiquetas.d.ts +0 -10
- package/src/app/seguridad/modelos/FuenteCampoAtributoModel.d.ts +0 -15
- package/src/app/seguridad/modelos/FuenteDato.d.ts +0 -18
- package/src/app/seguridad/modelos/FuenteEntradaModel.d.ts +0 -8
- package/src/app/seguridad/modelos/FuenteLineaServicioModel.d.ts +0 -16
- package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.d.ts +0 -10
- package/src/app/seguridad/modelos/FuncionalidadModel.d.ts +0 -8
- package/src/app/seguridad/modelos/GeneralModel.d.ts +0 -8
- package/src/app/seguridad/modelos/GrupoControlFuncionModel.d.ts +0 -9
- package/src/app/seguridad/modelos/GrupoFuenteModel.d.ts +0 -13
- package/src/app/seguridad/modelos/GrupoPermisoModel.d.ts +0 -13
- package/src/app/seguridad/modelos/ListaServicioModel.d.ts +0 -16
- package/src/app/seguridad/modelos/LlaveForaneaModel.d.ts +0 -6
- package/src/app/seguridad/modelos/LoginModel.d.ts +0 -17
- package/src/app/seguridad/modelos/MensajeSistemaModel.d.ts +0 -7
- package/src/app/seguridad/modelos/ModulosModel.d.ts +0 -14
- package/src/app/seguridad/modelos/PaginaPortalModel.d.ts +0 -19
- package/src/app/seguridad/modelos/ParametroComponenteModel.d.ts +0 -8
- package/src/app/seguridad/modelos/ParametrosGeneralModel.d.ts +0 -8
- package/src/app/seguridad/modelos/PermisoFuncionModel.d.ts +0 -8
- package/src/app/seguridad/modelos/PermisocontenidoModel.d.ts +0 -18
- package/src/app/seguridad/modelos/PreguntaSeguridadModel.d.ts +0 -6
- package/src/app/seguridad/modelos/PropiedadModel.d.ts +0 -9
- package/src/app/seguridad/modelos/PublicacionWebModel.d.ts +0 -25
- package/src/app/seguridad/modelos/PuntoProcesoModel.d.ts +0 -6
- package/src/app/seguridad/modelos/RecursoPunto.d.ts +0 -12
- package/src/app/seguridad/modelos/RecursoPuntoModel.d.ts +0 -12
- package/src/app/seguridad/modelos/ReporteBanda.d.ts +0 -7
- package/src/app/seguridad/modelos/ReporteColumna.d.ts +0 -32
- package/src/app/seguridad/modelos/ReporteColumnario.d.ts +0 -68
- package/src/app/seguridad/modelos/ReporteColumnarioMarcador.d.ts +0 -23
- package/src/app/seguridad/modelos/ReporteMarcador.d.ts +0 -39
- package/src/app/seguridad/modelos/ReporteSoporte.d.ts +0 -9
- package/src/app/seguridad/modelos/ReporteTabla.d.ts +0 -12
- package/src/app/seguridad/modelos/RespuestaModel.d.ts +0 -8
- package/src/app/seguridad/modelos/ServidorCorreoModel.d.ts +0 -25
- package/src/app/seguridad/modelos/SistemaMensajeModel.d.ts +0 -8
- package/src/app/seguridad/modelos/SitioPortalModel.d.ts +0 -24
- package/src/app/seguridad/modelos/TablaFromModel.d.ts +0 -4
- package/src/app/seguridad/modelos/TareasModel.d.ts +0 -49
- package/src/app/seguridad/modelos/TextoModel.d.ts +0 -8
- package/src/app/seguridad/modelos/TipoEtiqueta.d.ts +0 -7
- package/src/app/seguridad/modelos/UnionModel.d.ts +0 -11
- package/src/app/seguridad/modelos/UsuariogrupoModel.d.ts +0 -22
- package/src/app/seguridad/modelos/aplicacion-propiedad-model.d.ts +0 -13
- package/src/app/seguridad/modelos/contenidoCorreoModel.d.ts +0 -9
- package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.d.ts +0 -47
- package/src/app/shared/servicios/cargar-archivos.service.d.ts +0 -15
- package/src/app/shared/servicios/cargar-mapas.service.d.ts +0 -18
- package/src/app/shared/servicios/encriptado-basico.service.d.ts +0 -10
- package/src/app/shared/servicios/general.service.d.ts +0 -24
- package/src/app/shared/servicios/parametros-navegacion.service.d.ts +0 -9
- package/src/app/webcommon/pages/cargue-plantilla/cargue-plantilla-general/cargue-plantilla-general.component.d.ts +0 -79
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.d.ts +0 -79
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.d.ts +0 -29
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.d.ts +0 -69
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.d.ts +0 -51
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.d.ts +0 -77
- package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.d.ts +0 -279
- package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.d.ts +0 -42
- package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.d.ts +0 -35
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts +0 -146
- package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.d.ts +0 -49
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.d.ts +0 -132
- package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.d.ts +0 -64
- package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.d.ts +0 -33
- package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.d.ts +0 -149
- package/src/app/webcommon/pipes/dashboard.pipe.d.ts +0 -48
- package/src/app/webcommon/pipes/fuente.pipe.d.ts +0 -136
- package/src/app/webcommon/pipes/general.pipe.d.ts +0 -647
- package/src/app/webcommon/pipes/reporte-columnario.pipe.d.ts +0 -59
- package/src/app/webcommon/pipes/reporte-fuente.pipe.d.ts +0 -193
- package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.d.ts +0 -59
- package/src/app/webcommon/popups/popup-convertir-plantillas/popup-convertir-plantillas.component.d.ts +0 -27
- package/src/app/webcommon/popups/popup-editor-formula/popup-editor-formula.component.d.ts +0 -21
- package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.d.ts +0 -64
- package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.d.ts +0 -63
- package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.d.ts +0 -105
- package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.d.ts +0 -21
- package/src/app/webcommon/popups/popup-tablas-fuente/popup-tablas-fuente.component.d.ts +0 -42
- package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.d.ts +0 -30
- package/src/app/webcommon/services/carguelinea.service.d.ts +0 -19
- package/src/app/webcommon/services/dashboard.service.d.ts +0 -27
- package/src/app/webcommon/services/ejecucionreporte.service.d.ts +0 -34
- package/src/app/webcommon/services/fechaUtils.service.d.ts +0 -30
- package/src/app/webcommon/services/fuentegeneral.service.d.ts +0 -24
- package/src/app/webcommon/services/homologacion.service.d.ts +0 -17
- package/src/app/webcommon/services/plantillas.service.d.ts +0 -26
- package/src/app/webcommon/services/reportes.service.d.ts +0 -35
- package/src/app/webcommon/webcommon.module.d.ts +0 -6
- package/src/environments/environment.d.ts +0 -7
|
@@ -1,647 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
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
|
-
}
|