general-library-union 2.3.34 → 2.3.36

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.
Files changed (594) hide show
  1. package/.browserslistrc +15 -0
  2. package/.editorconfig +16 -0
  3. package/.vscode/extensions.json +4 -0
  4. package/.vscode/launch.json +20 -0
  5. package/.vscode/tasks.json +42 -0
  6. package/angular.json +130 -0
  7. package/karma.conf.js +44 -0
  8. package/ng-package.json +21 -0
  9. package/package.json +68 -57
  10. package/{public-api.d.ts → public-api.ts} +188 -154
  11. package/src/app/app.component.html +0 -0
  12. package/src/app/app.component.scss +0 -0
  13. package/src/app/app.component.spec.ts +29 -0
  14. package/src/app/app.component.ts +12 -0
  15. package/src/app/app.config.ts +8 -0
  16. package/src/app/app.module.ts +10 -0
  17. package/src/app/app.routes.ts +3 -0
  18. package/src/app/core/componentes/breadcrumb/breadcrumb.component.html +6 -0
  19. package/src/app/core/componentes/breadcrumb/breadcrumb.component.scss +0 -0
  20. package/src/app/core/componentes/breadcrumb/breadcrumb.component.ts +34 -0
  21. package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.html +1 -0
  22. package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.scss +0 -0
  23. package/src/app/core/componentes/carga-breadcrumb/carga-breadcrumb.component.ts +31 -0
  24. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.html +9 -0
  25. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.scss +28 -0
  26. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.ts +32 -0
  27. package/src/app/core/componentes/filtro-general/filtro-general.component.html +34 -0
  28. package/src/app/core/componentes/filtro-general/filtro-general.component.scss +3 -0
  29. package/src/app/core/componentes/filtro-general/filtro-general.component.ts +154 -0
  30. package/src/app/core/componentes/footer/footer.component.html +19 -0
  31. package/src/app/core/componentes/footer/footer.component.scss +3 -0
  32. package/src/app/core/componentes/footer/footer.component.ts +24 -0
  33. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.html +267 -0
  34. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.scss +21 -0
  35. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.ts +275 -0
  36. package/src/app/core/componentes/formulariodinamico/objetosformulario/{Cambio.d.ts → Cambio.ts} +13 -7
  37. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.ts +118 -0
  38. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.ts +76 -0
  39. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.ts +67 -0
  40. package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.ts +11 -0
  41. package/src/app/core/componentes/inicio-component/inicio-component.component.html +29 -0
  42. package/src/app/core/componentes/inicio-component/inicio-component.component.scss +69 -0
  43. package/src/app/core/componentes/inicio-component/inicio-component.component.ts +65 -0
  44. package/src/app/core/componentes/menu/menu.component.html +13 -0
  45. package/src/app/core/componentes/menu/menu.component.scss +36 -0
  46. package/src/app/core/componentes/menu/menu.component.ts +35 -0
  47. package/src/app/core/componentes/tabla-general/tabla-general.component.html +90 -0
  48. package/src/app/core/componentes/tabla-general/tabla-general.component.scss +0 -0
  49. package/src/app/core/componentes/tabla-general/tabla-general.component.ts +96 -0
  50. package/src/app/core/core.module.ts +22 -0
  51. package/src/app/core/errores/authentication.error.ts +6 -0
  52. package/src/app/core/modelos/error-response.model.ts +9 -0
  53. package/src/app/core/modelos/table-column.model.ts +10 -0
  54. package/src/app/core/modelos/user.model.ts +6 -0
  55. package/src/app/core/plantilla-general/plantilla-general.template.html +139 -0
  56. package/src/app/core/plantilla-general/plantilla-general.template.scss +37 -0
  57. package/src/app/core/plantilla-general/plantilla-general.template.ts +229 -0
  58. package/src/app/core/servicios/auth.service.ts +183 -0
  59. package/src/app/core/servicios/cargar-control-funcionalidad.service.ts +49 -0
  60. package/src/app/core/servicios/data-exporter-table.utils.ts +55 -0
  61. package/src/app/core/servicios/error-interceptor.service.ts +145 -0
  62. package/src/app/core/servicios/guardias/auth.guard.ts +51 -0
  63. package/src/app/core/servicios/guardias/publico.guard.ts +22 -0
  64. package/src/app/core/servicios/interceptores/token-interceptor.service.ts +110 -0
  65. package/src/app/core/servicios/loading.service.ts +48 -0
  66. package/src/app/core/servicios/menu.service.ts +89 -0
  67. package/src/app/core/servicios/storage.service.ts +68 -0
  68. package/src/app/core/servicios/template.service.ts +91 -0
  69. package/src/app/core/servicios/toast.service.ts +89 -0
  70. package/src/app/core/servicios/utils.service.ts +331 -0
  71. package/src/app/core/sharedlib.module.ts +11 -0
  72. package/src/app/core/utilidades/color.util.ts +197 -0
  73. package/src/app/layout/api/{menuchangeevent.d.ts → menuchangeevent.ts} +4 -4
  74. package/src/app/layout/app.breadcrumb.component.html +20 -0
  75. package/src/app/layout/app.breadcrumb.component.ts +74 -0
  76. package/src/app/layout/app.footer.component.html +18 -0
  77. package/src/app/layout/app.footer.component.ts +15 -0
  78. package/src/app/layout/app.layout.component.html +20 -0
  79. package/src/app/layout/app.layout.component.ts +201 -0
  80. package/src/app/layout/app.layout.module.ts +9 -0
  81. package/src/app/layout/app.menu.component.html +6 -0
  82. package/src/app/layout/app.menu.component.ts +40 -0
  83. package/src/app/layout/app.menu.service.ts +23 -0
  84. package/src/app/layout/app.menuitem.component.ts +250 -0
  85. package/src/app/layout/app.menuprofile.component.html +35 -0
  86. package/src/app/layout/app.menuprofile.component.ts +60 -0
  87. package/src/app/layout/app.rightmenu.component.html +72 -0
  88. package/src/app/layout/app.rightmenu.component.ts +24 -0
  89. package/src/app/layout/app.sidebar.component.html +40 -0
  90. package/src/app/layout/app.sidebar.component.ts +80 -0
  91. package/src/app/layout/app.topbar.component.html +214 -0
  92. package/src/app/layout/app.topbar.component.ts +326 -0
  93. package/src/app/layout/config/app.config.component.html +125 -0
  94. package/src/app/layout/config/app.config.component.ts +206 -0
  95. package/src/app/layout/config/app.config.module.ts +11 -0
  96. package/src/app/layout/service/app.layout.service.ts +191 -0
  97. package/src/app/publico/pages/login/login.page.html +53 -0
  98. package/src/app/publico/pages/login/login.page.scss +122 -0
  99. package/src/app/publico/pages/login/login.page.ts +127 -0
  100. package/src/app/publico/pages/not-found/not-found.page.html +25 -0
  101. package/src/app/publico/pages/not-found/not-found.page.scss +2 -0
  102. package/src/app/publico/pages/not-found/not-found.page.ts +41 -0
  103. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.html +58 -0
  104. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.scss +49 -0
  105. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.ts +169 -0
  106. package/src/app/publico/pages/timeout/timeout.page.html +21 -0
  107. package/src/app/publico/pages/timeout/timeout.page.scss +2 -0
  108. package/src/app/publico/pages/timeout/timeout.page.ts +18 -0
  109. package/src/app/seguridad/constantes/ConstantesGenerales.ts +30 -0
  110. package/src/app/seguridad/constantes/ReporteEntradaConstantes.ts +18 -0
  111. package/src/app/seguridad/constantes/ReporteFuenteConstantes.ts +13 -0
  112. package/src/app/seguridad/modelos/AplicacionModel.ts +11 -0
  113. package/src/app/seguridad/modelos/ArchivoPortalModel.ts +16 -0
  114. package/src/app/seguridad/modelos/AtributoPuntoModel.ts +9 -0
  115. package/src/app/seguridad/modelos/AtributoSSOportalModel.ts +22 -0
  116. package/src/app/seguridad/modelos/{AuditoriaArchivoModel.d.ts → AuditoriaArchivoModel.ts} +13 -10
  117. package/src/app/seguridad/modelos/CargueLineaModel.ts +17 -0
  118. package/src/app/seguridad/modelos/ColoresRGB.ts +17 -0
  119. package/src/app/seguridad/modelos/ComplementoModel.ts +10 -0
  120. package/src/app/seguridad/modelos/ComponentePaginaModel.ts +22 -0
  121. package/src/app/seguridad/modelos/ConexionModel.ts +15 -0
  122. package/src/app/seguridad/modelos/{ContenidoHtmlPortalModel.d.ts → ContenidoHtmlPortalModel.ts} +25 -20
  123. package/src/app/seguridad/modelos/ControlFuncionModel.ts +10 -0
  124. package/src/app/seguridad/modelos/CorreoModel.ts +45 -0
  125. package/src/app/seguridad/modelos/CorreoWSModel.ts +49 -0
  126. package/src/app/seguridad/modelos/CruceRecursoPuntoModel.ts +14 -0
  127. package/src/app/seguridad/modelos/{DatoInicioModel.d.ts → DatoInicioModel.ts} +7 -6
  128. package/src/app/seguridad/modelos/{EjecucionReporteDataModel.d.ts → EjecucionReporteDataModel.ts} +21 -20
  129. package/src/app/seguridad/modelos/EmpresaModel.ts +25 -0
  130. package/src/app/seguridad/modelos/EmpresaSeguridadModel.ts +19 -0
  131. package/src/app/seguridad/modelos/{EntradaComplementoModel.d.ts → EntradaComplementoModel.ts} +9 -6
  132. package/src/app/seguridad/modelos/EtiquetaModel.ts +4 -0
  133. package/src/app/seguridad/modelos/Etiquetas.ts +14 -0
  134. package/src/app/seguridad/modelos/FuenteCampoAtributoModel.ts +21 -0
  135. package/src/app/seguridad/modelos/{FuenteCampoModel.d.ts → FuenteCampoModel.ts} +20 -16
  136. package/src/app/seguridad/modelos/FuenteDato.ts +19 -0
  137. package/src/app/seguridad/modelos/FuenteEntradaModel.ts +9 -0
  138. package/src/app/seguridad/modelos/{FuenteGeneralModel.d.ts → FuenteGeneralModel.ts} +55 -36
  139. package/src/app/seguridad/modelos/FuenteLineaServicioModel.ts +19 -0
  140. package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.ts +14 -0
  141. package/src/app/seguridad/modelos/{FuenteServicioModel.d.ts → FuenteServicioModel.ts} +61 -47
  142. package/src/app/seguridad/modelos/FuncionalidadModel.ts +12 -0
  143. package/src/app/seguridad/modelos/GeneralModel.ts +16 -0
  144. package/src/app/seguridad/modelos/{GrupoAccesoModel.d.ts → GrupoAccesoModel.ts} +9 -6
  145. package/src/app/seguridad/modelos/GrupoControlFuncionModel.ts +12 -0
  146. package/src/app/seguridad/modelos/GrupoFuenteModel.ts +17 -0
  147. package/src/app/seguridad/modelos/GrupoPermisoModel.ts +16 -0
  148. package/src/app/seguridad/modelos/ListaServicioModel.ts +18 -0
  149. package/src/app/seguridad/modelos/LoginModel.ts +19 -0
  150. package/src/app/seguridad/modelos/MensajeSistemaModel.ts +10 -0
  151. package/src/app/seguridad/modelos/{MenuPortalModel.d.ts → MenuPortalModel.ts} +5 -4
  152. package/src/app/seguridad/modelos/ModulosModel.ts +17 -0
  153. package/src/app/seguridad/modelos/PaginaPortalModel.ts +23 -0
  154. package/src/app/seguridad/modelos/ParametroComponenteModel.ts +9 -0
  155. package/src/app/seguridad/modelos/ParametrosGeneralModel.ts +16 -0
  156. package/src/app/seguridad/modelos/PermisoFuncionModel.ts +11 -0
  157. package/src/app/seguridad/modelos/PermisocontenidoModel.ts +20 -0
  158. package/src/app/seguridad/modelos/{PeticionModel.d.ts → PeticionModel.ts} +20 -15
  159. package/src/app/seguridad/modelos/PreguntaSeguridadModel.ts +9 -0
  160. package/src/app/seguridad/modelos/PropiedadModel.ts +12 -0
  161. package/src/app/seguridad/modelos/PublicacionWebModel.ts +29 -0
  162. package/src/app/seguridad/modelos/PuntoProcesoModel.ts +7 -0
  163. package/src/app/seguridad/modelos/RecursoPunto.ts +13 -0
  164. package/src/app/seguridad/modelos/RecursoPuntoModel.ts +13 -0
  165. package/src/app/seguridad/modelos/ReporteBanda.ts +9 -0
  166. package/src/app/seguridad/modelos/ReporteColumna.ts +33 -0
  167. package/src/app/seguridad/modelos/ReporteColumnario.ts +82 -0
  168. package/src/app/seguridad/modelos/ReporteColumnarioMarcador.ts +31 -0
  169. package/src/app/seguridad/modelos/{ReporteEntradaModel.d.ts → ReporteEntradaModel.ts} +21 -19
  170. package/src/app/seguridad/modelos/{ReporteFuenteModel.d.ts → ReporteFuenteModel.ts} +141 -87
  171. package/src/app/seguridad/modelos/ReporteMarcador.ts +40 -0
  172. package/src/app/seguridad/modelos/ReporteSoporte.ts +10 -0
  173. package/src/app/seguridad/modelos/ReporteTabla.ts +14 -0
  174. package/src/app/seguridad/modelos/RespuestaModel.ts +10 -0
  175. package/src/app/seguridad/modelos/{RolModel.d.ts → RolModel.ts} +41 -37
  176. package/src/app/seguridad/modelos/ServidorCorreoModel.ts +31 -0
  177. package/src/app/seguridad/modelos/SistemaMensajeModel.ts +11 -0
  178. package/src/app/seguridad/modelos/SitioPortalModel.ts +29 -0
  179. package/src/app/seguridad/modelos/TareasModel.ts +54 -0
  180. package/src/app/seguridad/modelos/TextoModel.ts +11 -0
  181. package/src/app/seguridad/modelos/TipoEtiqueta.ts +8 -0
  182. package/src/app/seguridad/modelos/UnionModel.ts +14 -0
  183. package/src/app/seguridad/modelos/{UsuarioModel.d.ts → UsuarioModel.ts} +60 -49
  184. package/src/app/seguridad/modelos/UsuariogrupoModel.ts +27 -0
  185. package/src/app/seguridad/modelos/aplicacion-propiedad-model.ts +16 -0
  186. package/src/app/seguridad/modelos/contenidoCorreoModel.ts +13 -0
  187. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.html +47 -0
  188. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.scss +8 -0
  189. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.ts +141 -0
  190. package/src/app/shared/servicios/cargar-archivos.service.ts +51 -0
  191. package/src/app/shared/servicios/cargar-mapas.service.ts +43 -0
  192. package/src/app/shared/servicios/encriptado-basico.service.ts +54 -0
  193. package/src/app/shared/servicios/encriptador-simetrico.service.ts +29 -0
  194. package/src/app/shared/servicios/general.service.ts +124 -0
  195. package/src/app/shared/servicios/parametros-navegacion.service.ts +20 -0
  196. package/src/app/shared/servicios/plantillas.service.ts +22 -0
  197. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.html +87 -0
  198. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.scss +0 -0
  199. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.ts +189 -0
  200. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.html +117 -0
  201. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.scss +0 -0
  202. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.ts +87 -0
  203. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.html +158 -0
  204. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.scss +6 -0
  205. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.ts +345 -0
  206. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.html +131 -0
  207. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.scss +0 -0
  208. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.ts +198 -0
  209. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.html +206 -0
  210. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.scss +3 -0
  211. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.ts +329 -0
  212. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.html +1940 -0
  213. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.scss +241 -0
  214. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.ts +1550 -0
  215. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.html +33 -0
  216. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.scss +0 -0
  217. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.ts +96 -0
  218. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.html +47 -0
  219. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.scss +0 -0
  220. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.ts +95 -0
  221. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.html +391 -0
  222. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.scss +10 -0
  223. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.ts +612 -0
  224. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.html +130 -0
  225. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.scss +0 -0
  226. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.ts +172 -0
  227. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.html +145 -0
  228. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.scss +0 -0
  229. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.ts +300 -0
  230. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.html +19 -0
  231. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.scss +0 -0
  232. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.ts +86 -0
  233. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.html +703 -0
  234. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.scss +0 -0
  235. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.ts +682 -0
  236. package/src/app/webcommon/pipes/fuente.pipe.ts +207 -0
  237. package/src/app/webcommon/pipes/general.pipe.ts +1034 -0
  238. package/src/app/webcommon/pipes/reporte-columnario.pipe.ts +101 -0
  239. package/src/app/webcommon/pipes/reporte-fuente.pipe.ts +300 -0
  240. package/src/app/webcommon/pipes/sara-general.pipe.ts +289 -0
  241. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.html +90 -0
  242. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.scss +0 -0
  243. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.ts +248 -0
  244. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.html +41 -0
  245. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.scss +0 -0
  246. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.ts +283 -0
  247. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.html +175 -0
  248. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.scss +3 -0
  249. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.ts +265 -0
  250. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.html +261 -0
  251. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.scss +13 -0
  252. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.ts +512 -0
  253. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.html +10 -0
  254. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.scss +5 -0
  255. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.ts +58 -0
  256. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.html +11 -0
  257. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.scss +0 -0
  258. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.ts +82 -0
  259. package/src/app/webcommon/services/carguelinea.service.ts +72 -0
  260. package/src/app/webcommon/services/ejecucionreporte.service.ts +158 -0
  261. package/src/app/webcommon/services/fechaUtils.service.ts +120 -0
  262. package/src/app/webcommon/services/fuentegeneral.service.ts +74 -0
  263. package/src/app/webcommon/services/homologacion.service.ts +49 -0
  264. package/src/app/webcommon/services/plantillas.service.ts +49 -0
  265. package/src/app/webcommon/services/reportes.service.ts +60 -0
  266. package/src/app/webcommon/webcommon.module.ts +11 -0
  267. package/src/environments/environment.prod.ts +3 -0
  268. package/src/environments/environment.ts +23 -0
  269. package/src/favicon.ico +0 -0
  270. package/src/index.html +14 -0
  271. package/src/main.ts +6 -0
  272. package/src/polyfills.ts +53 -0
  273. package/src/styles/primeng/sass/overrides/_theme_styles.scss +4 -0
  274. package/src/styles/primeng/sass/overrides/_theme_styles_dark.scss +3 -0
  275. package/src/test.ts +14 -0
  276. package/tsconfig.app.json +15 -0
  277. package/tsconfig.json +35 -0
  278. package/tsconfig.spec.json +18 -0
  279. package/esm2022/general-library-union.mjs +0 -5
  280. package/esm2022/public-api.mjs +0 -170
  281. package/esm2022/src/app/core/componentes/breadcrumb/breadcrumb.component.mjs +0 -35
  282. package/esm2022/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.mjs +0 -28
  283. package/esm2022/src/app/core/componentes/filtro-general/filtro-general.component.mjs +0 -153
  284. package/esm2022/src/app/core/componentes/footer/footer.component.mjs +0 -22
  285. package/esm2022/src/app/core/componentes/formulariodinamico/formulariodinamico.component.mjs +0 -272
  286. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/Cambio.mjs +0 -11
  287. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.mjs +0 -124
  288. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.mjs +0 -73
  289. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.mjs +0 -59
  290. package/esm2022/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.mjs +0 -21
  291. package/esm2022/src/app/core/componentes/inicio-component/inicio-component.component.mjs +0 -67
  292. package/esm2022/src/app/core/componentes/menu/menu.component.mjs +0 -37
  293. package/esm2022/src/app/core/componentes/tabla-general/tabla-general.component.mjs +0 -93
  294. package/esm2022/src/app/core/core.module.mjs +0 -23
  295. package/esm2022/src/app/core/errores/authentication.error.mjs +0 -7
  296. package/esm2022/src/app/core/modelos/error-response.model.mjs +0 -2
  297. package/esm2022/src/app/core/modelos/table-column.model.mjs +0 -2
  298. package/esm2022/src/app/core/modelos/user.model.mjs +0 -7
  299. package/esm2022/src/app/core/plantilla-general/plantilla-general.template.mjs +0 -225
  300. package/esm2022/src/app/core/servicios/auth.service.mjs +0 -180
  301. package/esm2022/src/app/core/servicios/cargar-control-funcionalidad.service.mjs +0 -57
  302. package/esm2022/src/app/core/servicios/data-exporter-table.utils.mjs +0 -44
  303. package/esm2022/src/app/core/servicios/error-interceptor.service.mjs +0 -147
  304. package/esm2022/src/app/core/servicios/guardias/auth.guard.mjs +0 -66
  305. package/esm2022/src/app/core/servicios/guardias/publico.guard.mjs +0 -30
  306. package/esm2022/src/app/core/servicios/interceptores/token-interceptor.service.mjs +0 -120
  307. package/esm2022/src/app/core/servicios/loading.service.mjs +0 -43
  308. package/esm2022/src/app/core/servicios/menu.service.mjs +0 -88
  309. package/esm2022/src/app/core/servicios/storage.service.mjs +0 -68
  310. package/esm2022/src/app/core/servicios/template.service.mjs +0 -99
  311. package/esm2022/src/app/core/servicios/toast.service.mjs +0 -91
  312. package/esm2022/src/app/core/servicios/utils.service.mjs +0 -305
  313. package/esm2022/src/app/core/sharedlib.module.mjs +0 -16
  314. package/esm2022/src/app/core/utilidades/color.util.mjs +0 -177
  315. package/esm2022/src/app/layout/api/menuchangeevent.mjs +0 -2
  316. package/esm2022/src/app/layout/app.breadcrumb.component.mjs +0 -66
  317. package/esm2022/src/app/layout/app.footer.component.mjs +0 -21
  318. package/esm2022/src/app/layout/app.layout.component.mjs +0 -188
  319. package/esm2022/src/app/layout/app.layout.module.mjs +0 -15
  320. package/esm2022/src/app/layout/app.menu.component.mjs +0 -40
  321. package/esm2022/src/app/layout/app.menu.service.mjs +0 -24
  322. package/esm2022/src/app/layout/app.menuitem.component.mjs +0 -295
  323. package/esm2022/src/app/layout/app.menuprofile.component.mjs +0 -78
  324. package/esm2022/src/app/layout/app.rightmenu.component.mjs +0 -24
  325. package/esm2022/src/app/layout/app.sidebar.component.mjs +0 -91
  326. package/esm2022/src/app/layout/app.topbar.component.mjs +0 -334
  327. package/esm2022/src/app/layout/service/app.layout.service.mjs +0 -134
  328. package/esm2022/src/app/publico/pages/login/login.page.mjs +0 -127
  329. package/esm2022/src/app/publico/pages/not-found/not-found.page.mjs +0 -47
  330. package/esm2022/src/app/publico/pages/seleccion-rol/seleccion-rol.component.mjs +0 -159
  331. package/esm2022/src/app/publico/pages/timeout/timeout.page.mjs +0 -20
  332. package/esm2022/src/app/seguridad/modelos/AplicacionModel.mjs +0 -8
  333. package/esm2022/src/app/seguridad/modelos/ArchivoPortalModel.mjs +0 -14
  334. package/esm2022/src/app/seguridad/modelos/AtributoPuntoModel.mjs +0 -9
  335. package/esm2022/src/app/seguridad/modelos/AtributoSSOportalModel.mjs +0 -17
  336. package/esm2022/src/app/seguridad/modelos/AuditoriaArchivoModel.mjs +0 -11
  337. package/esm2022/src/app/seguridad/modelos/CargueLineaModel.mjs +0 -13
  338. package/esm2022/src/app/seguridad/modelos/ColoresRGB.mjs +0 -18
  339. package/esm2022/src/app/seguridad/modelos/ComplementoModel.mjs +0 -7
  340. package/esm2022/src/app/seguridad/modelos/ComponentePaginaModel.mjs +0 -21
  341. package/esm2022/src/app/seguridad/modelos/ConexionModel.mjs +0 -14
  342. package/esm2022/src/app/seguridad/modelos/ContenidoHtmlPortalModel.mjs +0 -21
  343. package/esm2022/src/app/seguridad/modelos/ControlFuncionModel.mjs +0 -8
  344. package/esm2022/src/app/seguridad/modelos/CorreoModel.mjs +0 -35
  345. package/esm2022/src/app/seguridad/modelos/CorreoWSModel.mjs +0 -37
  346. package/esm2022/src/app/seguridad/modelos/CruceRecursoPuntoModel.mjs +0 -14
  347. package/esm2022/src/app/seguridad/modelos/DatoInicioModel.mjs +0 -6
  348. package/esm2022/src/app/seguridad/modelos/EjecucionReporteDataModel.mjs +0 -14
  349. package/esm2022/src/app/seguridad/modelos/EmpresaModel.mjs +0 -25
  350. package/esm2022/src/app/seguridad/modelos/EmpresaSeguridadModel.mjs +0 -19
  351. package/esm2022/src/app/seguridad/modelos/EntradaComplementoModel.mjs +0 -7
  352. package/esm2022/src/app/seguridad/modelos/EtiquetaModel.mjs +0 -5
  353. package/esm2022/src/app/seguridad/modelos/Etiquetas.mjs +0 -12
  354. package/esm2022/src/app/seguridad/modelos/FuenteCampoAtributoModel.mjs +0 -16
  355. package/esm2022/src/app/seguridad/modelos/FuenteCampoModel.mjs +0 -17
  356. package/esm2022/src/app/seguridad/modelos/FuenteDato.mjs +0 -19
  357. package/esm2022/src/app/seguridad/modelos/FuenteEntradaModel.mjs +0 -9
  358. package/esm2022/src/app/seguridad/modelos/FuenteGeneralModel.mjs +0 -37
  359. package/esm2022/src/app/seguridad/modelos/FuenteLineaServicioModel.mjs +0 -16
  360. package/esm2022/src/app/seguridad/modelos/FuenteProcesoGeneralModel.mjs +0 -11
  361. package/esm2022/src/app/seguridad/modelos/FuenteServicioModel.mjs +0 -51
  362. package/esm2022/src/app/seguridad/modelos/FuncionalidadModel.mjs +0 -10
  363. package/esm2022/src/app/seguridad/modelos/GeneralModel.mjs +0 -15
  364. package/esm2022/src/app/seguridad/modelos/GrupoAccesoModel.mjs +0 -7
  365. package/esm2022/src/app/seguridad/modelos/GrupoControlFuncionModel.mjs +0 -10
  366. package/esm2022/src/app/seguridad/modelos/GrupoFuenteModel.mjs +0 -13
  367. package/esm2022/src/app/seguridad/modelos/GrupoPermisoModel.mjs +0 -14
  368. package/esm2022/src/app/seguridad/modelos/ListaServicioModel.mjs +0 -17
  369. package/esm2022/src/app/seguridad/modelos/LoginModel.mjs +0 -15
  370. package/esm2022/src/app/seguridad/modelos/MensajeSistemaModel.mjs +0 -8
  371. package/esm2022/src/app/seguridad/modelos/MenuPortalModel.mjs +0 -5
  372. package/esm2022/src/app/seguridad/modelos/ModulosModel.mjs +0 -18
  373. package/esm2022/src/app/seguridad/modelos/PaginaPortalModel.mjs +0 -20
  374. package/esm2022/src/app/seguridad/modelos/ParametroComponenteModel.mjs +0 -9
  375. package/esm2022/src/app/seguridad/modelos/ParametrosGeneralModel.mjs +0 -15
  376. package/esm2022/src/app/seguridad/modelos/PermisoFuncionModel.mjs +0 -9
  377. package/esm2022/src/app/seguridad/modelos/PermisocontenidoModel.mjs +0 -20
  378. package/esm2022/src/app/seguridad/modelos/PeticionModel.mjs +0 -16
  379. package/esm2022/src/app/seguridad/modelos/PreguntaSeguridadModel.mjs +0 -7
  380. package/esm2022/src/app/seguridad/modelos/PropiedadModel.mjs +0 -10
  381. package/esm2022/src/app/seguridad/modelos/PublicacionWebModel.mjs +0 -27
  382. package/esm2022/src/app/seguridad/modelos/PuntoProcesoModel.mjs +0 -7
  383. package/esm2022/src/app/seguridad/modelos/RecursoPunto.mjs +0 -13
  384. package/esm2022/src/app/seguridad/modelos/RecursoPuntoModel.mjs +0 -13
  385. package/esm2022/src/app/seguridad/modelos/ReporteBanda.mjs +0 -8
  386. package/esm2022/src/app/seguridad/modelos/ReporteColumna.mjs +0 -33
  387. package/esm2022/src/app/seguridad/modelos/ReporteColumnario.mjs +0 -69
  388. package/esm2022/src/app/seguridad/modelos/ReporteColumnarioMarcador.mjs +0 -24
  389. package/esm2022/src/app/seguridad/modelos/ReporteEntradaModel.mjs +0 -20
  390. package/esm2022/src/app/seguridad/modelos/ReporteFuenteModel.mjs +0 -124
  391. package/esm2022/src/app/seguridad/modelos/ReporteMarcador.mjs +0 -40
  392. package/esm2022/src/app/seguridad/modelos/ReporteSoporte.mjs +0 -10
  393. package/esm2022/src/app/seguridad/modelos/ReporteTabla.mjs +0 -13
  394. package/esm2022/src/app/seguridad/modelos/RespuestaModel.mjs +0 -9
  395. package/esm2022/src/app/seguridad/modelos/RolModel.mjs +0 -39
  396. package/esm2022/src/app/seguridad/modelos/ServidorCorreoModel.mjs +0 -28
  397. package/esm2022/src/app/seguridad/modelos/SistemaMensajeModel.mjs +0 -9
  398. package/esm2022/src/app/seguridad/modelos/SitioPortalModel.mjs +0 -25
  399. package/esm2022/src/app/seguridad/modelos/TareasModel.mjs +0 -54
  400. package/esm2022/src/app/seguridad/modelos/TextoModel.mjs +0 -9
  401. package/esm2022/src/app/seguridad/modelos/TipoEtiqueta.mjs +0 -8
  402. package/esm2022/src/app/seguridad/modelos/UnionModel.mjs +0 -12
  403. package/esm2022/src/app/seguridad/modelos/UsuarioModel.mjs +0 -53
  404. package/esm2022/src/app/seguridad/modelos/UsuariogrupoModel.mjs +0 -24
  405. package/esm2022/src/app/seguridad/modelos/aplicacion-propiedad-model.mjs +0 -15
  406. package/esm2022/src/app/seguridad/modelos/contenidoCorreoModel.mjs +0 -10
  407. package/esm2022/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.mjs +0 -151
  408. package/esm2022/src/app/shared/servicios/cargar-archivos.service.mjs +0 -54
  409. package/esm2022/src/app/shared/servicios/cargar-mapas.service.mjs +0 -46
  410. package/esm2022/src/app/shared/servicios/encriptado-basico.service.mjs +0 -53
  411. package/esm2022/src/app/shared/servicios/general.service.mjs +0 -104
  412. package/esm2022/src/app/shared/servicios/parametros-navegacion.service.mjs +0 -21
  413. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.mjs +0 -187
  414. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.mjs +0 -85
  415. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.mjs +0 -347
  416. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.mjs +0 -206
  417. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.mjs +0 -328
  418. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.mjs +0 -1448
  419. package/esm2022/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.mjs +0 -105
  420. package/esm2022/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.mjs +0 -95
  421. package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.mjs +0 -599
  422. package/esm2022/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.mjs +0 -177
  423. package/esm2022/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.mjs +0 -327
  424. package/esm2022/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.mjs +0 -93
  425. package/esm2022/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.mjs +0 -671
  426. package/esm2022/src/app/webcommon/pipes/fuente.pipe.mjs +0 -201
  427. package/esm2022/src/app/webcommon/pipes/general.pipe.mjs +0 -907
  428. package/esm2022/src/app/webcommon/pipes/reporte-columnario.pipe.mjs +0 -115
  429. package/esm2022/src/app/webcommon/pipes/reporte-fuente.pipe.mjs +0 -296
  430. package/esm2022/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.mjs +0 -253
  431. package/esm2022/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.mjs +0 -293
  432. package/esm2022/src/app/webcommon/popups/popup-recurso/popup-recurso.component.mjs +0 -268
  433. package/esm2022/src/app/webcommon/popups/popup-reporte/popup-reporte.component.mjs +0 -508
  434. package/esm2022/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.mjs +0 -64
  435. package/esm2022/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.mjs +0 -89
  436. package/esm2022/src/app/webcommon/services/carguelinea.service.mjs +0 -69
  437. package/esm2022/src/app/webcommon/services/ejecucionreporte.service.mjs +0 -114
  438. package/esm2022/src/app/webcommon/services/fechaUtils.service.mjs +0 -88
  439. package/esm2022/src/app/webcommon/services/fuentegeneral.service.mjs +0 -68
  440. package/esm2022/src/app/webcommon/services/homologacion.service.mjs +0 -50
  441. package/esm2022/src/app/webcommon/services/plantillas.service.mjs +0 -53
  442. package/esm2022/src/app/webcommon/services/reportes.service.mjs +0 -53
  443. package/esm2022/src/app/webcommon/webcommon.module.mjs +0 -15
  444. package/esm2022/src/environments/environment.mjs +0 -22
  445. package/fesm2022/general-library-union.mjs +0 -13507
  446. package/fesm2022/general-library-union.mjs.map +0 -1
  447. package/index.d.ts +0 -5
  448. package/src/app/core/componentes/breadcrumb/breadcrumb.component.d.ts +0 -18
  449. package/src/app/core/componentes/carga-pantalla-completa/carga-pantalla-completa.component.d.ts +0 -14
  450. package/src/app/core/componentes/filtro-general/filtro-general.component.d.ts +0 -26
  451. package/src/app/core/componentes/footer/footer.component.d.ts +0 -11
  452. package/src/app/core/componentes/formulariodinamico/formulariodinamico.component.d.ts +0 -46
  453. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormulario.d.ts +0 -44
  454. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioCons.d.ts +0 -45
  455. package/src/app/core/componentes/formulariodinamico/objetosformulario/CampoFormularioNuevo.d.ts +0 -33
  456. package/src/app/core/componentes/formulariodinamico/objetosformulario/HashDirective.d.ts +0 -9
  457. package/src/app/core/componentes/inicio-component/inicio-component.component.d.ts +0 -24
  458. package/src/app/core/componentes/menu/menu.component.d.ts +0 -16
  459. package/src/app/core/componentes/tabla-general/tabla-general.component.d.ts +0 -32
  460. package/src/app/core/core.module.d.ts +0 -8
  461. package/src/app/core/errores/authentication.error.d.ts +0 -3
  462. package/src/app/core/modelos/error-response.model.d.ts +0 -9
  463. package/src/app/core/modelos/table-column.model.d.ts +0 -12
  464. package/src/app/core/modelos/user.model.d.ts +0 -6
  465. package/src/app/core/plantilla-general/plantilla-general.template.d.ts +0 -89
  466. package/src/app/core/servicios/auth.service.d.ts +0 -52
  467. package/src/app/core/servicios/cargar-control-funcionalidad.service.d.ts +0 -19
  468. package/src/app/core/servicios/data-exporter-table.utils.d.ts +0 -8
  469. package/src/app/core/servicios/error-interceptor.service.d.ts +0 -41
  470. package/src/app/core/servicios/guardias/auth.guard.d.ts +0 -17
  471. package/src/app/core/servicios/guardias/publico.guard.d.ts +0 -13
  472. package/src/app/core/servicios/interceptores/token-interceptor.service.d.ts +0 -21
  473. package/src/app/core/servicios/loading.service.d.ts +0 -22
  474. package/src/app/core/servicios/menu.service.d.ts +0 -34
  475. package/src/app/core/servicios/storage.service.d.ts +0 -37
  476. package/src/app/core/servicios/template.service.d.ts +0 -20
  477. package/src/app/core/servicios/toast.service.d.ts +0 -46
  478. package/src/app/core/servicios/utils.service.d.ts +0 -40
  479. package/src/app/core/sharedlib.module.d.ts +0 -6
  480. package/src/app/core/utilidades/color.util.d.ts +0 -70
  481. package/src/app/layout/app.breadcrumb.component.d.ts +0 -28
  482. package/src/app/layout/app.footer.component.d.ts +0 -10
  483. package/src/app/layout/app.layout.component.d.ts +0 -39
  484. package/src/app/layout/app.layout.module.d.ts +0 -6
  485. package/src/app/layout/app.menu.component.d.ts +0 -19
  486. package/src/app/layout/app.menu.service.d.ts +0 -12
  487. package/src/app/layout/app.menuitem.component.d.ts +0 -40
  488. package/src/app/layout/app.menuprofile.component.d.ts +0 -18
  489. package/src/app/layout/app.rightmenu.component.d.ts +0 -10
  490. package/src/app/layout/app.sidebar.component.d.ts +0 -33
  491. package/src/app/layout/app.topbar.component.d.ts +0 -78
  492. package/src/app/layout/service/app.layout.service.d.ts +0 -57
  493. package/src/app/publico/pages/login/login.page.d.ts +0 -40
  494. package/src/app/publico/pages/not-found/not-found.page.d.ts +0 -16
  495. package/src/app/publico/pages/seleccion-rol/seleccion-rol.component.d.ts +0 -41
  496. package/src/app/publico/pages/timeout/timeout.page.d.ts +0 -10
  497. package/src/app/seguridad/modelos/AplicacionModel.d.ts +0 -7
  498. package/src/app/seguridad/modelos/ArchivoPortalModel.d.ts +0 -13
  499. package/src/app/seguridad/modelos/AtributoPuntoModel.d.ts +0 -8
  500. package/src/app/seguridad/modelos/AtributoSSOportalModel.d.ts +0 -16
  501. package/src/app/seguridad/modelos/CargueLineaModel.d.ts +0 -12
  502. package/src/app/seguridad/modelos/ColoresRGB.d.ts +0 -17
  503. package/src/app/seguridad/modelos/ComplementoModel.d.ts +0 -6
  504. package/src/app/seguridad/modelos/ComponentePaginaModel.d.ts +0 -20
  505. package/src/app/seguridad/modelos/ConexionModel.d.ts +0 -13
  506. package/src/app/seguridad/modelos/ControlFuncionModel.d.ts +0 -7
  507. package/src/app/seguridad/modelos/CorreoModel.d.ts +0 -31
  508. package/src/app/seguridad/modelos/CorreoWSModel.d.ts +0 -33
  509. package/src/app/seguridad/modelos/CruceRecursoPuntoModel.d.ts +0 -13
  510. package/src/app/seguridad/modelos/EmpresaModel.d.ts +0 -23
  511. package/src/app/seguridad/modelos/EmpresaSeguridadModel.d.ts +0 -18
  512. package/src/app/seguridad/modelos/EtiquetaModel.d.ts +0 -4
  513. package/src/app/seguridad/modelos/Etiquetas.d.ts +0 -10
  514. package/src/app/seguridad/modelos/FuenteCampoAtributoModel.d.ts +0 -15
  515. package/src/app/seguridad/modelos/FuenteDato.d.ts +0 -18
  516. package/src/app/seguridad/modelos/FuenteEntradaModel.d.ts +0 -8
  517. package/src/app/seguridad/modelos/FuenteLineaServicioModel.d.ts +0 -16
  518. package/src/app/seguridad/modelos/FuenteProcesoGeneralModel.d.ts +0 -10
  519. package/src/app/seguridad/modelos/FuncionalidadModel.d.ts +0 -8
  520. package/src/app/seguridad/modelos/GeneralModel.d.ts +0 -8
  521. package/src/app/seguridad/modelos/GrupoControlFuncionModel.d.ts +0 -9
  522. package/src/app/seguridad/modelos/GrupoFuenteModel.d.ts +0 -13
  523. package/src/app/seguridad/modelos/GrupoPermisoModel.d.ts +0 -13
  524. package/src/app/seguridad/modelos/ListaServicioModel.d.ts +0 -16
  525. package/src/app/seguridad/modelos/LoginModel.d.ts +0 -17
  526. package/src/app/seguridad/modelos/MensajeSistemaModel.d.ts +0 -7
  527. package/src/app/seguridad/modelos/ModulosModel.d.ts +0 -14
  528. package/src/app/seguridad/modelos/PaginaPortalModel.d.ts +0 -19
  529. package/src/app/seguridad/modelos/ParametroComponenteModel.d.ts +0 -8
  530. package/src/app/seguridad/modelos/ParametrosGeneralModel.d.ts +0 -8
  531. package/src/app/seguridad/modelos/PermisoFuncionModel.d.ts +0 -8
  532. package/src/app/seguridad/modelos/PermisocontenidoModel.d.ts +0 -18
  533. package/src/app/seguridad/modelos/PreguntaSeguridadModel.d.ts +0 -6
  534. package/src/app/seguridad/modelos/PropiedadModel.d.ts +0 -9
  535. package/src/app/seguridad/modelos/PublicacionWebModel.d.ts +0 -25
  536. package/src/app/seguridad/modelos/PuntoProcesoModel.d.ts +0 -6
  537. package/src/app/seguridad/modelos/RecursoPunto.d.ts +0 -12
  538. package/src/app/seguridad/modelos/RecursoPuntoModel.d.ts +0 -12
  539. package/src/app/seguridad/modelos/ReporteBanda.d.ts +0 -7
  540. package/src/app/seguridad/modelos/ReporteColumna.d.ts +0 -32
  541. package/src/app/seguridad/modelos/ReporteColumnario.d.ts +0 -68
  542. package/src/app/seguridad/modelos/ReporteColumnarioMarcador.d.ts +0 -23
  543. package/src/app/seguridad/modelos/ReporteMarcador.d.ts +0 -39
  544. package/src/app/seguridad/modelos/ReporteSoporte.d.ts +0 -9
  545. package/src/app/seguridad/modelos/ReporteTabla.d.ts +0 -12
  546. package/src/app/seguridad/modelos/RespuestaModel.d.ts +0 -8
  547. package/src/app/seguridad/modelos/ServidorCorreoModel.d.ts +0 -25
  548. package/src/app/seguridad/modelos/SistemaMensajeModel.d.ts +0 -8
  549. package/src/app/seguridad/modelos/SitioPortalModel.d.ts +0 -24
  550. package/src/app/seguridad/modelos/TareasModel.d.ts +0 -49
  551. package/src/app/seguridad/modelos/TextoModel.d.ts +0 -8
  552. package/src/app/seguridad/modelos/TipoEtiqueta.d.ts +0 -7
  553. package/src/app/seguridad/modelos/UnionModel.d.ts +0 -11
  554. package/src/app/seguridad/modelos/UsuariogrupoModel.d.ts +0 -22
  555. package/src/app/seguridad/modelos/aplicacion-propiedad-model.d.ts +0 -13
  556. package/src/app/seguridad/modelos/contenidoCorreoModel.d.ts +0 -9
  557. package/src/app/shared/componentes/input-helper-seleccion-plantilla/input-helper-seleccion-plantilla.component.d.ts +0 -47
  558. package/src/app/shared/servicios/cargar-archivos.service.d.ts +0 -15
  559. package/src/app/shared/servicios/cargar-mapas.service.d.ts +0 -18
  560. package/src/app/shared/servicios/encriptado-basico.service.d.ts +0 -10
  561. package/src/app/shared/servicios/general.service.d.ts +0 -24
  562. package/src/app/shared/servicios/parametros-navegacion.service.d.ts +0 -9
  563. package/src/app/webcommon/pages/ejecucion-reporte/detalle-campo-reporte/detalle-campo-reporte.component.d.ts +0 -79
  564. package/src/app/webcommon/pages/ejecucion-reporte/detalle-distribucion-reporte/detalle-distribucion-reporte.component.d.ts +0 -29
  565. package/src/app/webcommon/pages/ejecucion-reporte/detalle-ejecucion-reporte/detalle-ejecucion-reporte.page.d.ts +0 -69
  566. package/src/app/webcommon/pages/ejecucion-reporte/detalle-entrada-reporte/detalle-entrada-reporte.component.d.ts +0 -51
  567. package/src/app/webcommon/pages/ejecucion-reporte/detalle-punto-proceso-reporte/detalle-punto-proceso-reporte.component.d.ts +0 -77
  568. package/src/app/webcommon/pages/ejecucion-reporte/detalle-tipo-reporte/detalle-tipo-reporte.component.d.ts +0 -251
  569. package/src/app/webcommon/pages/ejecucion-reporte/listado-ejecucion-reporte/listado-ejecucion-reporte.page.d.ts +0 -42
  570. package/src/app/webcommon/pages/ejecucion-reporte-externo/listado-ejecucion-reporte-externo/listado-ejecucion-reporte-externo.component.d.ts +0 -33
  571. package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts +0 -143
  572. package/src/app/webcommon/pages/fuente/importar-fuente-general/importar-fuente-general.component.d.ts +0 -49
  573. package/src/app/webcommon/pages/fuenteGeneral/fuente-general-servicio/fuente-general-servicio.component.d.ts +0 -64
  574. package/src/app/webcommon/pages/fuenteGeneral/listado-fuente-general/listado-fuente-general.page.d.ts +0 -33
  575. package/src/app/webcommon/pages/fuenteGeneral/mantenimiento-fuente-general/mantenimiento-fuente-general.page.d.ts +0 -148
  576. package/src/app/webcommon/pipes/fuente.pipe.d.ts +0 -136
  577. package/src/app/webcommon/pipes/general.pipe.d.ts +0 -637
  578. package/src/app/webcommon/pipes/reporte-columnario.pipe.d.ts +0 -59
  579. package/src/app/webcommon/pipes/reporte-fuente.pipe.d.ts +0 -189
  580. package/src/app/webcommon/popups/popup-campos-fuente-general/popup-campos-fuente-general.component.d.ts +0 -58
  581. package/src/app/webcommon/popups/popup-punto-proceso/popup-punto-proceso.component.d.ts +0 -64
  582. package/src/app/webcommon/popups/popup-recurso/popup-recurso.component.d.ts +0 -63
  583. package/src/app/webcommon/popups/popup-reporte/popup-reporte.component.d.ts +0 -97
  584. package/src/app/webcommon/popups/popup-sentencia/popup-sentencia.component.d.ts +0 -21
  585. package/src/app/webcommon/popups/punto-proceso-comp/punto-proceso-comp.component.d.ts +0 -30
  586. package/src/app/webcommon/services/carguelinea.service.d.ts +0 -19
  587. package/src/app/webcommon/services/ejecucionreporte.service.d.ts +0 -34
  588. package/src/app/webcommon/services/fechaUtils.service.d.ts +0 -28
  589. package/src/app/webcommon/services/fuentegeneral.service.d.ts +0 -24
  590. package/src/app/webcommon/services/homologacion.service.d.ts +0 -17
  591. package/src/app/webcommon/services/plantillas.service.d.ts +0 -17
  592. package/src/app/webcommon/services/reportes.service.d.ts +0 -19
  593. package/src/app/webcommon/webcommon.module.d.ts +0 -6
  594. package/src/environments/environment.d.ts +0 -4
@@ -1,637 +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
- U_TILDE_MAY: string;
31
- U: string;
32
- LISTA_ESTADO_SN: {
33
- codigo: string;
34
- nombre: string;
35
- }[];
36
- TIPOS_ANEXO_LIMITADO: {
37
- codigo: string;
38
- nombre: string;
39
- }[];
40
- LISTA_SELECIONAR_MAP: {
41
- codigo: string;
42
- nombre: string;
43
- }[];
44
- MAS: string;
45
- MENOS: string;
46
- BARRA_PISO: string;
47
- MONTO: string;
48
- FECHA_1: string;
49
- FECHA_2: string;
50
- FECHA_3: string;
51
- ciclo: string;
52
- COMPROBANTE: string;
53
- restringe: string;
54
- actividad: string;
55
- ABONOPENSI: string;
56
- estados: {
57
- S: string;
58
- P: string;
59
- N: string;
60
- };
61
- listaEstados: {
62
- S: string;
63
- Punto: string;
64
- N: string;
65
- };
66
- LISTA_ESTADO: {
67
- codigo: string;
68
- nombre: string;
69
- }[];
70
- PADRE: string;
71
- HIJO: string;
72
- CONCEPTO_VIGENTE: string;
73
- CONCEPTO_NOVIGENTE: string;
74
- LISTADO_ESTADO_CONCEPTO: {
75
- codigo: string;
76
- nombre: string;
77
- }[];
78
- FORMULA_GENERAL: string;
79
- FORMULA: string;
80
- FORMULA_BENEFICIARIO: string;
81
- FORMULA_VALOR_FIJO: string;
82
- VALOR_FIJO: string;
83
- FORMULA_GENERAL_DESC: string;
84
- FORMULA_DESC: string;
85
- FORMULA_BENEFICIARIO_DESC: string;
86
- FORMULA_VALOR_FIJO_DESC: string;
87
- VALOR_FIJO_DESC: string;
88
- LISTADO_FORMULA: {
89
- codigo: string;
90
- nombre: string;
91
- }[];
92
- CONCEPTO_DEVENGO: string;
93
- CONCEPTO_DEDUCCION: string;
94
- CONCEPTO_DEVENGO_DESC: string;
95
- CONCEPTO_DEDUCCION_DESC: string;
96
- LISTADO_NATURALEZA_CONCEPTO: {
97
- codigo: string;
98
- nombre: string;
99
- }[];
100
- REDONDEO_CERO_DECIMALES: string;
101
- REDONDEO_UN_DECIMAL: string;
102
- REDONDEO_DOS_DECIMALES: string;
103
- REDONDEO_CERO_DECIMALES_DESC: string;
104
- REDONDEO_UN_DECIMAL_DESC: string;
105
- REDONDEO_DOS_DECIMALES_DESC: string;
106
- LISTA_REDONDEO_CONCEPTO: {
107
- codigo: string;
108
- nombre: string;
109
- }[];
110
- CAMBIO_ASIGNACION_CONCEPTO: string;
111
- CAMBIO_ASIGNACIONTEMPORAL_CONCEPTO: string;
112
- CAMBIO_ROL_CONCEPTO: string;
113
- CAMBIO_TEMPORAL_CONCEPTO: string;
114
- CAMBIO_ASIGNACION_CONCEPTO_DES: string;
115
- CAMBIO_ASIGNACIONTEMPORAL_CONCEPTO_DES: string;
116
- CAMBIO_ROL_CONCEPTO_DES: string;
117
- CAMBIO_TEMPORAL_CONCEPTO_DES: string;
118
- LISTA_CAMBIO_CONCEPTO: {
119
- codigo: string;
120
- nombre: string;
121
- }[];
122
- AJUSTE_PARCIAL_CONCEPTO: string;
123
- AJUSTE_TOTAL_CONCEPTO: string;
124
- AJUSTE_PARCIAL_CONCEPTO_DESC: string;
125
- AJUSTE_TOTAL_CONCEPTO_DESC: string;
126
- LISTA_TIPOAJUSTE_CONCEPTO: {
127
- codigo: string;
128
- nombre: string;
129
- }[];
130
- FLEXIBLE_BENEFICIO_CONCEPTO: string;
131
- FLEXIBLE_BENEFICIOADI_CONCEPTO: string;
132
- FLEXIBLE_CRUCE_CONCEPTO: string;
133
- FLEXIBLE_BENEFICIO_CONCEPTO_DESC: string;
134
- FLEXIBLE_BENEFICIOADI_CONCEPTO_DESC: string;
135
- FLEXIBLE_CRUCE_CONCEPTO_DESC: string;
136
- LISTA_FLEXIBLE_CONCEPTO: {
137
- codigo: string;
138
- nombre: string;
139
- }[];
140
- FINALIN: string;
141
- PARCIAL: string;
142
- FINAL_DESC: string;
143
- PARCIAL_DESC: string;
144
- LISTA_INFORME: {
145
- codigo: string;
146
- nombre: string;
147
- }[];
148
- CONTRATOPRINCIPAL: string;
149
- BASECOTIZACION: string;
150
- UNIFICACIONSEGURIDAD: string;
151
- INTERESCUOTAPARTE: string;
152
- FORMULADISTRIBUIR: string;
153
- JORNADADOCENTE: string;
154
- AJUSTENOMINA: string;
155
- DESCUENTOFIJO: string;
156
- PENSIONDISTRIBUYE: string;
157
- PUESTOTRABAJO: string;
158
- SEGURIDADSOCIAL: string;
159
- VIATICO: string;
160
- NOMINA: string;
161
- CONCEPTOTIEMPOS: string;
162
- GENERACIONINTERFAZ: string;
163
- REGISTROAUSENCIA: string;
164
- INTERRUPCIONAUSENCIA: string;
165
- NOVEDAD: string;
166
- CONTROLLIQPERIODICA: string;
167
- BENEFICIO: string;
168
- SERVICIOENTIDAD: string;
169
- SOLICITUDCREDITO: string;
170
- CUOTACREDITO: string;
171
- TABLAAMORTIZACION: string;
172
- EVALUACION: string;
173
- ACTOADMINISTRATIVO: string;
174
- FACTORPUNTAJE: string;
175
- PLANSUCESION: string;
176
- AJUSTEHISTORICO: string;
177
- AJUSTEVARIABLE: string;
178
- NOMINALELECTRONICA: string;
179
- NOMINALELECTRONICACON: string;
180
- NOMINALELECTRONICAINI: string;
181
- NOMINALELECTRONICANET: string;
182
- BASECOTIZACION_DESC: string;
183
- CONTRATOPRINCIPAL_DESC: string;
184
- UNIFICACIONSEGURIDAD_DESC: string;
185
- INTERESCUOTAPARTE_DESC: string;
186
- FORMULADISTRIBUIR_DESC: string;
187
- JORNADADOCENTE_DESC: string;
188
- AJUSTENOMINA_DESC: string;
189
- DESCUENTOFIJO_DESC: string;
190
- PENSIONDISTRIBUYE_DESC: string;
191
- PUESTOTRABAJO_DESC: string;
192
- SEGURIDADSOCIAL_DESC: string;
193
- VIATICO_DESC: string;
194
- NOMINA_DESC: string;
195
- GENERACIONINTERFAZ_DESC: string;
196
- REGISTROAUSENCIA_DESC: string;
197
- INTERRUPCIONAUSENCIA_DESC: string;
198
- NOVEDAD_DESC: string;
199
- CONTROLLIQPERIODICA_DESC: string;
200
- BENEFICIO_DESC: string;
201
- SERVICIOENTIDAD_DESC: string;
202
- SOLICITUDCREDITO_DESC: string;
203
- CUOTACREDITO_DESC: string;
204
- TABLAAMORTIZACION_DESC: string;
205
- EVALUACION_DESC: string;
206
- ACTOADMINISTRATIVO_DESC: string;
207
- FACTORPUNTAJE_DESC: string;
208
- PLANSUCESION_DESC: string;
209
- CONCEPTOTIEMPOS_DESC: string;
210
- AJUSTEHISTORICO_DESC: string;
211
- AJUSTEVARIABLE_DESC: string;
212
- NOMINALELECTRONICA_DESC: string;
213
- NOMINALELECTRONICACON_DESC: string;
214
- NOMINALELECTRONICAINI_DESC: string;
215
- NOMINALELECTRONICANET_DESC: string;
216
- LISTA_TIPOFORMULA: {
217
- codigo: string;
218
- nombre: string;
219
- }[];
220
- FECHA: string;
221
- HORA: string;
222
- NUMERODES: string;
223
- FECHADES: string;
224
- HORADES: string;
225
- LISTATIPO: {
226
- codigo: string;
227
- nombre: string;
228
- }[];
229
- INICIOANO: string;
230
- FINANO: string;
231
- INICIOMES: string;
232
- FINMES: string;
233
- LIBRE: string;
234
- DESINICIOANO: string;
235
- DESFINANO: string;
236
- DESINICIOMES: string;
237
- DESFINMES: string;
238
- DESLIBRE: string;
239
- TIPOVIGENCIA: {
240
- codigo: string;
241
- nombre: string;
242
- }[];
243
- MARCADOR: string;
244
- MARCADORREGISTRO: string;
245
- MARCADORTABLA: string;
246
- MARCADORIMAGEN: string;
247
- IMAGEN: string;
248
- MARCADORQR: string;
249
- DESMARCADOR: string;
250
- DESMARCADORREGISTRO: string;
251
- DESMARCADORTABLA: string;
252
- DESIMAGEN: string;
253
- DESMARCADORIMAGEN: string;
254
- DESMARCADORQR: string;
255
- MARCADORES: {
256
- codigo: string;
257
- nombre: string;
258
- }[];
259
- CARGO: string;
260
- CARGO_MULTI: string;
261
- CCATEGORIA: string;
262
- CIUDAD: string;
263
- CLASIFICACION: string;
264
- EDAD: string;
265
- EMPRESA: string;
266
- ESTADO_CIVIL: string;
267
- ESTADOLABORAL: string;
268
- GENERO: string;
269
- GRUPO: string;
270
- NIVEL_DEL_CARGO: string;
271
- RANGO_DE_SUELDO: string;
272
- ROLCLASIFICACION: string;
273
- TIEMPO_DE_ANTIGUEDAD_CARGO: string;
274
- TIEMPO_DE_ANTIGUEDAD: string;
275
- TIPO_DE_PERIODO: string;
276
- TIPO_DE_VINCULACION: string;
277
- UNIDAD: string;
278
- UNIDAD_MULTI: string;
279
- UNIDAD_RELACION: string;
280
- DESCARGO: string;
281
- DESCARGO_MULTI: string;
282
- DESCATEGORIA: string;
283
- DESCIUDAD: string;
284
- DESCLASIFICACION: string;
285
- DESEDAD: string;
286
- DESEMPRESA: string;
287
- DESESTADO_CIVIL: string;
288
- DESESTADOLABORAL: string;
289
- DESGENERO: string;
290
- DESGRUPO: string;
291
- DESNIVEL_DEL_CARGO: string;
292
- DESRANGO_DE_SUELDO: string;
293
- DESROLCLASIFICACION: string;
294
- DESTIEMPO_DE_ANTIGUEDAD_CARGO: string;
295
- DESTIEMPO_DE_ANTIGUEDAD: string;
296
- DESTIPO_DE_PERIODO: string;
297
- DESTIPO_DE_VINCULACION: string;
298
- DESUNIDAD: string;
299
- DESUNIDAD_MULTI: string;
300
- DESUNIDAD_RELACION: string;
301
- TIPOCAMPO: {
302
- codigo: string;
303
- nombre: string;
304
- }[];
305
- PERMITE_EJECUTAR: string;
306
- PERMITE_MODIFICAR: string;
307
- PERMITE_EJECUTAR_DESC: string;
308
- PERMITE_MODIFICAR_DESC: string;
309
- TIPOEJECUCIONREPORTE: {
310
- codigo: string;
311
- nombre: string;
312
- }[];
313
- NO_ACTUALIZA: string;
314
- PERMITE_ACTUALIZAR: string;
315
- NO_ACTUALIZA_DESC: string;
316
- PERMITE_ACTUALIZAR_DESC: string;
317
- DISENOREPORTE: {
318
- codigo: string;
319
- nombre: string;
320
- }[];
321
- PERMISO_POR_LLAVE_TABLA: string;
322
- PERMISO_PERIODO: string;
323
- PERMISO_SITIO: string;
324
- PERMISO_DISENO_REPORTE: string;
325
- PERMISO_AUSENTISMOS: string;
326
- PERMISO_NOVEDAD: string;
327
- PERMISO_EJECUCION_REPORTE: string;
328
- PERMISO_FUENTE_REPORTE: string;
329
- PERMISO_IMPORTAR_FUENTE: string;
330
- PERMISO_FACTOR_PUNTAJE: string;
331
- PERMISO_USUARIO_FORMATO: string;
332
- PERMISO_PERIODO_DESC: string;
333
- PERMISO_SITIO_DESC: string;
334
- PERMISO_DISENO_REPORTE_DESC: string;
335
- PERMISO_AUSENTISMOS_DESC: string;
336
- PERMISO_NOVEDAD_DESC: string;
337
- PERMISO_EJECUCION_REPORTE_DESC: string;
338
- PERMISO_FUENTE_REPORTE_DESC: string;
339
- PERMISO_IMPORTAR_FUENTE_DESC: string;
340
- PERMISO_FACTOR_PUNTAJE_DESC: string;
341
- PERMISO_USUARIO_FORMATO_DESC: string;
342
- LISTAPERMISOSLOGIN: {
343
- codigo: string;
344
- nombre: string;
345
- }[];
346
- PERMISO_TIPO_SOLICITUD: string;
347
- PERMISO_REPORTE_GENERADO: string;
348
- PERMISO_ZONA_ECONOMICA: string;
349
- PERMISO_UNIDAD: string;
350
- PERMISO_SECCION_HOJA_VIDA: string;
351
- PERMISO_ETAPA: string;
352
- PERMISO_TIPO_PLANTA: string;
353
- PERMISO_DESCRIPCION_CARGO: string;
354
- PERMISO_GESTION_HERRAMIENTAS: string;
355
- PERMISO_TIPO_SERVICIO: string;
356
- PERMISO_TIPO_SOLICITUD_DESC: string;
357
- PERMISO_REPORTE_GENERADO_DESC: string;
358
- PERMISO_ZONA_ECONOMICA_DESC: string;
359
- PERMISO_UNIDAD_DESC: string;
360
- PERMISO_SECCION_HOJA_VIDA_DESC: string;
361
- PERMISO_ETAPA_DESC: string;
362
- PERMISO_TIPO_PLANTA_DESC: string;
363
- PERMISO_DESCRIPCION_CARGO_DESC: string;
364
- PERMISO_GESTION_HERRAMIENTAS_DESC: string;
365
- PERMISO_TIPO_SERVICIO_DESC: string;
366
- LISTAPERMISOSROL: {
367
- codigo: string;
368
- nombre: string;
369
- }[];
370
- MASCULINO: string;
371
- FEMENINO: string;
372
- TRANSGENERO: string;
373
- MASCULINO_DESC: string;
374
- FEMENINO_DESC: string;
375
- TRANSGENERO_DESC: string;
376
- SGENERO: {
377
- codigo: string;
378
- nombre: string;
379
- }[];
380
- SERIE: string;
381
- CATEGORIA: string;
382
- VALOR: string;
383
- SERIE_STRING: string;
384
- CATEGORIA_STRING: string;
385
- VALOR_STRING: string;
386
- Rgrafica: {
387
- codigo: string;
388
- nombre: string;
389
- }[];
390
- igual: string;
391
- mayorQue: string;
392
- mayorIgual: string;
393
- menor: string;
394
- menorIgual: string;
395
- diferente: string;
396
- inclusion: string;
397
- como: string;
398
- desIgual: string;
399
- desMayorQue: string;
400
- desMayorIgual: string;
401
- desMenor: string;
402
- desMenorIgual: string;
403
- desDiferente: string;
404
- desInclusion: string;
405
- desComo: string;
406
- Roperador: {
407
- codigo: string;
408
- nombre: string;
409
- }[];
410
- COPIAR_DIFERENCIA: string;
411
- COPIAR_TODO: string;
412
- COPIAR_DIFERENCIA_DESC: string;
413
- COPIAR_TODO_DESC: string;
414
- LISTA_TIPO_COPIAS: {
415
- codigo: string;
416
- nombre: string;
417
- }[];
418
- DATO: string;
419
- CAMPO: string;
420
- CAMPO_STRING: string;
421
- DATO_STRING: string;
422
- ListaTipo: {
423
- codigo: string;
424
- nombre: string;
425
- }[];
426
- ARCHIVO_TXT: string;
427
- ARCHIVO_CSV: string;
428
- ARCHIVO_TXT_DESC: string;
429
- ARCHIVO_CSV_DESC: string;
430
- ListaTipoArchivo: {
431
- codigo: string;
432
- nombre: string;
433
- }[];
434
- COLSANITAS_DAVIVIENDA: string;
435
- COLSANITAS_BANCO_BOGOTA: string;
436
- UNION_SOLUCIONES: string;
437
- PGP: string;
438
- BPGP: string;
439
- CV_DAVIVIENDA: string;
440
- CV_CITIBANK: string;
441
- COLSANITAS_DAVIVIENDA_DESC: string;
442
- COLSANITAS_BANCO_BOGOTA_DESC: string;
443
- UNION_SOLUCIONES_DESC: string;
444
- PGP_DESC: string;
445
- BPGP_DESC: string;
446
- CV_DAVIVIENDA_DESC: string;
447
- CV_CITIBANK_DESC: string;
448
- LISTADO_ENCRIPTACION: {
449
- codigo: string;
450
- nombre: string;
451
- }[];
452
- SIS: string;
453
- SOC: string;
454
- SOT: string;
455
- DOT: string;
456
- DPR: string;
457
- EBS: string;
458
- EBA: string;
459
- SAP: string;
460
- CAR: string;
461
- SII: string;
462
- SIG: string;
463
- OAT: string;
464
- SUR: string;
465
- UVIN: string;
466
- SSIN: string;
467
- SSAC: string;
468
- FIJO: string;
469
- LISTADO_TIPOCONTABLE: {
470
- codigo: string;
471
- nombre: string;
472
- }[];
473
- ENCABEZADO_N: string;
474
- ENCABEZADO: string;
475
- DETALLE: string;
476
- FINAL: string;
477
- FINAL2: string;
478
- ENCABEZADODESC_N: string;
479
- ENCABEZADODESC: string;
480
- DETALLEDESC: string;
481
- FINALDESC: string;
482
- FINAL2DES: string;
483
- LISTADO_LINEA: {
484
- codigo: string;
485
- nombre: string;
486
- }[];
487
- CONSTANTE: string;
488
- VARIABLE: string;
489
- CONSTANTEDESC: string;
490
- VARIABLEDESC: string;
491
- LISTADO_TIPOCAMPOS: {
492
- codigo: string;
493
- nombre: string;
494
- }[];
495
- CAMBIARNATURALEZA: string;
496
- NOAFECTA: string;
497
- LISTADO_NATURALEZA: {
498
- codigo: string;
499
- nombre: string;
500
- }[];
501
- PEDIR: string;
502
- AMBOS: string;
503
- TRANSFORMADO: string;
504
- NOGENERAR: string;
505
- SIGENERAR: string;
506
- PEDIRDESCRIPCION: string;
507
- TRANSFORMADODESCRIPCION: string;
508
- AMBOSDESCRIPCION: string;
509
- MAPAGENERARDETALLE: {
510
- codigo: string;
511
- nombre: string;
512
- }[];
513
- PORLINEA: string;
514
- PORZONA: string;
515
- NOAPLICA: string;
516
- PORLINEADESC: string;
517
- PORZONADESC: string;
518
- MAPAGENERARCOMPROBANTEPOR: {
519
- codigo: string;
520
- nombre: string;
521
- }[];
522
- SUMA: string;
523
- DES_SUMA: string;
524
- PROMEDIO: string;
525
- DES_PROMEDIO: string;
526
- CONTAR: string;
527
- DES_CONTAR: string;
528
- CONTAR_DISTINTO: string;
529
- DES_CONTAR_DISTINTO: string;
530
- MAX: string;
531
- DES_MAX: string;
532
- MIN: string;
533
- DES_MIN: string;
534
- MAPAOPERACIONES: {
535
- codigo: string;
536
- nombre: string;
537
- }[];
538
- NUMERO1: string;
539
- NUMERO2: string;
540
- NUMERO3: string;
541
- NUMERO4: string;
542
- NUMERO5: string;
543
- NUMERO6: string;
544
- NUMERO7: string;
545
- NUMERO8: string;
546
- NUMERO1DES: string;
547
- NUMERO2DES: string;
548
- NUMERO3DES: string;
549
- NUMERO4DES: string;
550
- NUMERO5DES: string;
551
- NUMERO6DES: string;
552
- NUMERO7DES: string;
553
- NUMERO8DES: string;
554
- MAPAFORMATONUMERO: {
555
- codigo: string;
556
- nombre: string;
557
- }[];
558
- VIGENTE_V: string;
559
- VIGENTE: string;
560
- NOVIGENTE: string;
561
- DESVIGENTE: string;
562
- DESNOVIGENTE: string;
563
- TIPOS_VIGENTE_V: {
564
- codigo: string;
565
- nombre: string;
566
- }[];
567
- MENSAJE_INGRESAR: string;
568
- LETRA_A: string;
569
- LETRA_O: string;
570
- LETRA_F: string;
571
- MENSAJE_ADICIONAR: string;
572
- MENSAJE_GUARDAR: string;
573
- MENSAJE_ACTUALIZAR: string;
574
- MENSAJE_ACTUALIZAR_VARIOS: string;
575
- MENSAJE_ACTUALIZAR_NO: string;
576
- MENSAJE_ELIMINAR_VARIOS_CONFIRMAR: string;
577
- MENSAJE_ELIMINAR_CONFIRMAR: string;
578
- MENSAJE_ELIMINAR: string;
579
- MENSAJE_ELIMINAR_VARIOS: string;
580
- MENSAJE_ELIMINAR_NO: string;
581
- MENSAJE_EMVIARCORREO_NO: string;
582
- MENSAJE_ELIMINAR_NO_ASOCIADO: string;
583
- MENSAJE_TERMINO_SATISFACTORIO: string;
584
- MENSAJE_CANCELAR: string;
585
- MENSAJE_GUARDAR_NO: string;
586
- MENSAJE_YA_EXISTE: string;
587
- MENSAJE_ORDEN_REPETIDO: string;
588
- MENSAJE_NO_EXISTE: string;
589
- MENSAJE_GENERAR_REPORTE: string;
590
- MENSAJE_FIN_GENERAR_REPORTE: string;
591
- MENSAJE_INCOMPLETA: string;
592
- MENSAJE_DUPLICADA: string;
593
- ESTADO_ACTIVO: string;
594
- MENSAJE_ERROR_SERVICIO: string;
595
- MENSAJE_CAMPOS_OBLIGATORIOS: string;
596
- SUBCONTENIDOINICIO: string;
597
- SUBCONTENIDOFIN: string;
598
- MENSAJE_PUNTO_PROCESO_REPETIDO: string;
599
- MENSAJE_PARAMETRO_REPETIDO: string;
600
- CODIGO_SARA: string;
601
- CODIGO_SEGURIDAD: string;
602
- CODIGO_SAM: string;
603
- CODIGO_SAMANTA: string;
604
- CODIGO_APS: string;
605
- LOGO_SARA: string;
606
- LOGO_SEGURIDAD: string;
607
- LOGO_SAM: string;
608
- LOGO_SAMAMNTA: string;
609
- LOGO_APS: string;
610
- LOGO_DESCOMPRIMIDO_SARA: string;
611
- LOGO_DESCOMPRIMIDO_SAM: string;
612
- LOGO_DESCOMPRIMIDO_SAMANTA: string;
613
- LOGO_DESCOMPRIMIDO_APS: string;
614
- LOGO_DESCOMPRIMIDO_SEGURIDAD: string;
615
- MAPALOGO: {
616
- codigo: string;
617
- nombre: string;
618
- }[];
619
- MAPALOGODESPLEGADO: {
620
- codigo: string;
621
- nombre: string;
622
- }[];
623
- LOGOICONOSARA: string;
624
- LOGOICONOSAM: string;
625
- LOGOICONOAPS: string;
626
- LOGOICONOSEG: string;
627
- LOGO_FOOTER_1: string;
628
- LOGO_FOOTER_2: string;
629
- MAPALOGOSICONOS: {
630
- codigo: string;
631
- nombre: string;
632
- }[];
633
- transform(value: any, ...args: any): any;
634
- static ɵfac: i0.ɵɵFactoryDeclaration<GeneralPipe, never>;
635
- static ɵpipe: i0.ɵɵPipeDeclaration<GeneralPipe, "generalPipe", true>;
636
- static ɵprov: i0.ɵɵInjectableDeclaration<GeneralPipe>;
637
- }
@@ -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
- }