sigesp 1.1.55-20250722 → 1.1.56-20250722
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 +12 -0
- package/.editorconfig +13 -0
- package/angular.json +161 -0
- package/e2e/protractor.conf.js +32 -0
- package/e2e/src/app.e2e-spec.ts +23 -0
- package/e2e/src/app.po.ts +11 -0
- package/e2e/tsconfig.json +13 -0
- package/karma.conf.js +32 -0
- package/lib +0 -0
- package/package.json +73 -31
- package/projects/sigesp/README.md +24 -0
- package/projects/sigesp/karma.conf.js +32 -0
- package/projects/sigesp/ng-package.json +7 -0
- package/projects/sigesp/package.json +11 -0
- package/projects/sigesp/src/lib/app/app.component.html +1 -0
- package/projects/sigesp/src/lib/app/app.component.scss +0 -0
- package/projects/sigesp/src/lib/app/app.component.ts +15 -0
- package/projects/sigesp/src/lib/app/app.module.ts +21 -0
- package/projects/sigesp/src/lib/core/interfaces/Auditoria.ts +72 -0
- package/projects/sigesp/src/lib/core/interfaces/Banco.ts +639 -0
- package/projects/sigesp/src/lib/core/interfaces/Catalogo.ts +15 -0
- package/projects/sigesp/src/lib/core/interfaces/CentroCosto.ts +22 -0
- package/projects/sigesp/src/lib/core/interfaces/Clasificacion.ts +6 -0
- package/projects/sigesp/src/lib/core/interfaces/Cliente.ts +36 -0
- package/projects/sigesp/src/lib/core/interfaces/ComprobantePresupuestario.ts +52 -0
- package/projects/sigesp/src/lib/core/interfaces/Comunidad.ts +12 -0
- package/projects/sigesp/src/lib/core/interfaces/Configuracion.ts +100 -0
- package/projects/sigesp/src/lib/core/interfaces/ConfiguracionRPC.ts +10 -0
- package/projects/sigesp/src/lib/core/interfaces/ConfiguracionSCG.ts +53 -0
- package/projects/sigesp/src/lib/core/interfaces/ConfigurationSPG.ts +51 -0
- package/projects/sigesp/src/lib/core/interfaces/Constantes.ts +468 -0
- package/projects/sigesp/src/lib/core/interfaces/CuentaEgresos.ts +164 -0
- package/projects/sigesp/src/lib/core/interfaces/CuentaIngreso.ts +38 -0
- package/projects/sigesp/src/lib/core/interfaces/CuentaIngresoEstructura.ts +27 -0
- package/projects/sigesp/src/lib/core/interfaces/CuentaInstitucional.ts +28 -0
- package/projects/sigesp/src/lib/core/interfaces/CuentaPresupuesto.ts +10 -0
- package/projects/sigesp/src/lib/core/interfaces/CuentasPorPagar.ts +40 -0
- package/projects/sigesp/src/lib/core/interfaces/Documento.ts +6 -0
- package/projects/sigesp/src/lib/core/interfaces/EntradaSuministro.ts +93 -0
- package/projects/sigesp/src/lib/core/interfaces/Especialidad.ts +4 -0
- package/projects/sigesp/src/lib/core/interfaces/EstructuraPresupuestaria.ts +90 -0
- package/projects/sigesp/src/lib/core/interfaces/FuenteFinanciamiento.ts +14 -0
- package/projects/sigesp/src/lib/core/interfaces/IBancoCuentasPorPagar.ts +196 -0
- package/projects/sigesp/src/lib/core/interfaces/ITipoDepositos.ts +32 -0
- package/projects/sigesp/src/lib/core/interfaces/Integracion.ts +6 -0
- package/projects/sigesp/src/lib/core/interfaces/Lugares.ts +45 -0
- package/projects/sigesp/src/lib/core/interfaces/Moneda.ts +22 -0
- package/projects/sigesp/src/lib/core/interfaces/Nomina.ts +614 -0
- package/projects/sigesp/src/lib/core/interfaces/PlanUnicoCuenta.ts +4 -0
- package/projects/sigesp/src/lib/core/interfaces/Presupuesto.ts +145 -0
- package/{lib/core/interfaces/Proveedor.d.ts → projects/sigesp/src/lib/core/interfaces/Proveedor.ts} +26 -22
- package/projects/sigesp/src/lib/core/interfaces/RecursosHumanos.ts +1743 -0
- package/{lib/core/interfaces/Request.d.ts → projects/sigesp/src/lib/core/interfaces/Request.ts} +4 -3
- package/projects/sigesp/src/lib/core/interfaces/Response.ts +7 -0
- package/projects/sigesp/src/lib/core/interfaces/Seguridad.ts +120 -0
- package/projects/sigesp/src/lib/core/interfaces/Servicios.ts +70 -0
- package/projects/sigesp/src/lib/core/interfaces/Sistema.ts +21 -0
- package/projects/sigesp/src/lib/core/interfaces/Tributos.ts +80 -0
- package/projects/sigesp/src/lib/core/interfaces/UnidadTributaria.ts +11 -0
- package/projects/sigesp/src/lib/core/interfaces/Usuario.ts +57 -0
- package/projects/sigesp/src/lib/core/interfaces/UsuarioPrefijo.ts +13 -0
- package/projects/sigesp/src/lib/core/models/CFG/Empresa.model.ts +121 -0
- package/projects/sigesp/src/lib/core/models/CFG/Enterprise.model.ts +74 -0
- package/projects/sigesp/src/lib/core/models/CFG/MPrefijo.model.ts +69 -0
- package/projects/sigesp/src/lib/core/models/CFG/Procede.model.ts +34 -0
- package/projects/sigesp/src/lib/core/models/CFG/TasaCambio.model.ts +43 -0
- package/projects/sigesp/src/lib/core/models/CFG/comunidad.model.ts +34 -0
- package/projects/sigesp/src/lib/core/models/CFG/locations.model.ts +189 -0
- package/projects/sigesp/src/lib/core/models/CFG/moneda.model.ts +82 -0
- package/projects/sigesp/src/lib/core/models/CFG/userPrefix.model.ts +51 -0
- package/projects/sigesp/src/lib/core/models/CXP/MConceptosCXP.model.ts +36 -0
- package/projects/sigesp/src/lib/core/models/CXP/MTipoDocumentoCXP.model.ts +49 -0
- package/projects/sigesp/src/lib/core/models/RPC/clasification.model.ts +22 -0
- package/projects/sigesp/src/lib/core/models/RPC/configuracionRPC.model.ts +27 -0
- package/projects/sigesp/src/lib/core/models/RPC/document.model.ts +20 -0
- package/projects/sigesp/src/lib/core/models/RPC/proveedores.model.ts +15 -0
- package/projects/sigesp/src/lib/core/models/RPC/providerBeneficiary.model.ts +316 -0
- package/projects/sigesp/src/lib/core/models/RPC/specialty.model.ts +14 -0
- package/projects/sigesp/src/lib/core/models/SCB/bank.model.ts +205 -0
- package/projects/sigesp/src/lib/core/models/SCG/IncomeAccount.ts +134 -0
- package/projects/sigesp/src/lib/core/models/SCG/accountMarriage.model.ts +33 -0
- package/projects/sigesp/src/lib/core/models/SCG/centroCosto.model.ts +83 -0
- package/projects/sigesp/src/lib/core/models/SCG/configuracionSCG.model.ts +166 -0
- package/projects/sigesp/src/lib/core/models/SCG/cuentaInstitucional.model.ts +97 -0
- package/projects/sigesp/src/lib/core/models/SCG/planUnicoCuenta.model.ts +22 -0
- package/projects/sigesp/src/lib/core/models/SFV/MClienteModel.ts +119 -0
- package/projects/sigesp/src/lib/core/models/SIV/MDetaContable.model.ts +65 -0
- package/projects/sigesp/src/lib/core/models/SIV/MDetaEntrada.model.ts +98 -0
- package/projects/sigesp/src/lib/core/models/SIV/MEntradaSuministro.model.ts +135 -0
- package/projects/sigesp/src/lib/core/models/SIV/MTipoDepositos.model.ts +109 -0
- package/projects/sigesp/src/lib/core/models/SNO/MAnticipoPrestaciones.model.ts +112 -0
- package/projects/sigesp/src/lib/core/models/SNO/MArchivoTxtCampo.model.ts +63 -0
- package/projects/sigesp/src/lib/core/models/SNO/MArchivosTxt.model.ts +53 -0
- package/projects/sigesp/src/lib/core/models/SNO/MAsignacionCargo.model.ts +235 -0
- package/projects/sigesp/src/lib/core/models/SNO/MAspectoEvaluacion.model.ts +97 -0
- package/projects/sigesp/src/lib/core/models/SNO/MAuditoria.model.ts +67 -0
- package/projects/sigesp/src/lib/core/models/SNO/MBeneficiario.model.ts +139 -0
- package/projects/sigesp/src/lib/core/models/SNO/MCargaFamiliar.model.ts +54 -0
- package/projects/sigesp/src/lib/core/models/SNO/MCargaMasiva.model.ts +37 -0
- package/projects/sigesp/src/lib/core/models/SNO/MCargosPersonal.model.ts +123 -0
- package/projects/sigesp/src/lib/core/models/SNO/MClasificacionObrero.mdel.ts +48 -0
- package/projects/sigesp/src/lib/core/models/SNO/MCodigoUnicoRac.model.ts +41 -0
- package/projects/sigesp/src/lib/core/models/SNO/MComponete.model.ts +40 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConceptoVacaciones.model.ts +94 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConceptosNomina.model.ts +246 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConceptosPersonalNomina.model.ts +103 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConcursante.model.ts +333 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConcurso.model.ts +267 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConfiguracionSNO.model.ts +422 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConstanteNomina.model.ts +76 -0
- package/projects/sigesp/src/lib/core/models/SNO/MConstantePersonalNomina.model.ts +85 -0
- package/projects/sigesp/src/lib/core/models/SNO/MDedicacion.model.ts +37 -0
- package/projects/sigesp/src/lib/core/models/SNO/MDefinicionNomina.model.ts +320 -0
- package/projects/sigesp/src/lib/core/models/SNO/MDefinicionesBasicas.model.ts +82 -0
- package/projects/sigesp/src/lib/core/models/SNO/MDeudaAnterior.model.ts +42 -0
- package/projects/sigesp/src/lib/core/models/SNO/MEncargaduria.model.ts +142 -0
- package/projects/sigesp/src/lib/core/models/SNO/MEscalaEvaluacion.model.ts +43 -0
- package/projects/sigesp/src/lib/core/models/SNO/MEscalaEvaluacionDt.model.ts +40 -0
- package/projects/sigesp/src/lib/core/models/SNO/MEstructuraOrganizativa.model.ts +136 -0
- package/projects/sigesp/src/lib/core/models/SNO/MFamiliares.model.ts +91 -0
- package/projects/sigesp/src/lib/core/models/SNO/MFeriados.model.ts +46 -0
- package/projects/sigesp/src/lib/core/models/SNO/MFideicomiso.model.ts +423 -0
- package/projects/sigesp/src/lib/core/models/SNO/MFormacionAcademica.model.ts +52 -0
- package/projects/sigesp/src/lib/core/models/SNO/MGrado.model.ts +50 -0
- package/projects/sigesp/src/lib/core/models/SNO/MHojaTiempo.model.ts +128 -0
- package/projects/sigesp/src/lib/core/models/SNO/MImpuestoSobreRenta.model.ts +77 -0
- package/projects/sigesp/src/lib/core/models/SNO/MMetodoBanco.model.ts +113 -0
- package/projects/sigesp/src/lib/core/models/SNO/MNominaSimple.model.ts +86 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPeriodoNomina.model.ts +205 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPermisos.model.ts +70 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPersonal.model.ts +659 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPersonalJubilado.model.ts +71 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPersonalNomina.model.ts +323 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPlanHorario.model.ts +134 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPlantillaConstancia.model.ts +33 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPrestamo.model.ts +242 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPrimaGrados.model.ts +46 -0
- package/projects/sigesp/src/lib/core/models/SNO/MPrimasConcepto.model.ts +45 -0
- package/projects/sigesp/src/lib/core/models/SNO/MRango.model.ts +45 -0
- package/projects/sigesp/src/lib/core/models/SNO/MReportesRRHH.ts +425 -0
- package/projects/sigesp/src/lib/core/models/SNO/MRequisitosConcursante.model.ts +48 -0
- package/projects/sigesp/src/lib/core/models/SNO/MRequisitosConcursos.model.ts +41 -0
- package/projects/sigesp/src/lib/core/models/SNO/MRequisitosMinimos.model.ts +123 -0
- package/projects/sigesp/src/lib/core/models/SNO/MSalarioHistorico.model.ts +75 -0
- package/projects/sigesp/src/lib/core/models/SNO/MSolicitudEmpleo.model.ts +125 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTablaVacaciones.model.ts +61 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTablaVacacionesPeriodo.model.ts +45 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTabulador.model.ts +108 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTipoEvaluacion.model.ts +85 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTipoPersonal.model.ts +37 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTiposEnfermedad.model.ts +40 -0
- package/projects/sigesp/src/lib/core/models/SNO/MTrabajoAnterior.model.ts +70 -0
- package/projects/sigesp/src/lib/core/models/SNO/MUbicacionFisica.model.ts +63 -0
- package/projects/sigesp/src/lib/core/models/SNO/MVacacionesPersonal.model.ts +119 -0
- package/projects/sigesp/src/lib/core/models/SOC/charge.model.ts +81 -0
- package/projects/sigesp/src/lib/core/models/SOC/clause.model.ts +39 -0
- package/projects/sigesp/src/lib/core/models/SOC/clauseModality.model.ts +43 -0
- package/projects/sigesp/src/lib/core/models/SOC/configuracionSOC.model.ts +71 -0
- package/projects/sigesp/src/lib/core/models/SOC/service.model.ts +53 -0
- package/projects/sigesp/src/lib/core/models/SOC/serviceCharge.model.ts +42 -0
- package/projects/sigesp/src/lib/core/models/SOC/serviceType.model.ts +39 -0
- package/projects/sigesp/src/lib/core/models/SPG/UnidadAdministradoraCentral.ts +50 -0
- package/projects/sigesp/src/lib/core/models/SPG/administrativeUnit.model.ts +185 -0
- package/projects/sigesp/src/lib/core/models/SPG/comprobantePresupuestario.model.ts +148 -0
- package/projects/sigesp/src/lib/core/models/SPG/configurationSPG.model.ts +140 -0
- package/projects/sigesp/src/lib/core/models/SPG/cuentaPresupuesto.model.ts +194 -0
- package/projects/sigesp/src/lib/core/models/SPG/estructuraPresupuestaria.model.ts +261 -0
- package/projects/sigesp/src/lib/core/models/SPG/expensiveAccount.model.ts +104 -0
- package/projects/sigesp/src/lib/core/models/SPG/fuenteFinanciamiento.model.ts +54 -0
- package/projects/sigesp/src/lib/core/models/SPG/incomeStructureAccount.model.ts +88 -0
- package/projects/sigesp/src/lib/core/models/SPG/organizationType.model.ts +16 -0
- package/projects/sigesp/src/lib/core/models/SSS/component.model.ts +51 -0
- package/projects/sigesp/src/lib/core/models/SSS/group.model.ts +39 -0
- package/projects/sigesp/src/lib/core/models/SSS/log.model.ts +36 -0
- package/projects/sigesp/src/lib/core/models/SSS/securityConfiguration.model.ts +26 -0
- package/projects/sigesp/src/lib/core/models/SSS/sistema.ts +87 -0
- package/projects/sigesp/src/lib/core/models/SSS/user.model.ts +52 -0
- package/projects/sigesp/src/lib/core/models/SSS/userDetail.model.ts +84 -0
- package/projects/sigesp/src/lib/core/models/SSS/userPermit.model.ts +61 -0
- package/projects/sigesp/src/lib/core/models/SSS/userRights.model.ts +113 -0
- package/projects/sigesp/src/lib/core/models/STB/MCargosAdicionales.ts +97 -0
- package/projects/sigesp/src/lib/core/models/STB/deduction.model.ts +100 -0
- package/projects/sigesp/src/lib/core/models/STB/deductionType.model.ts +23 -0
- package/projects/sigesp/src/lib/core/models/STB/unidadTributaria.model.ts +25 -0
- package/projects/sigesp/src/lib/core/models/basic-model.model.ts +9 -0
- package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.html +45 -0
- package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.scss +82 -0
- package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.ts +71 -0
- package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.html +57 -0
- package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.scss +82 -0
- package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.ts +80 -0
- package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.html +121 -0
- package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.scss +81 -0
- package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.ts +68 -0
- package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.html +15 -0
- package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.scss +37 -0
- package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.ts +32 -0
- package/projects/sigesp/src/lib/shared/components/icon/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 +0 -0
- package/projects/sigesp/src/lib/shared/components/icon/icon.component.html +6 -0
- package/projects/sigesp/src/lib/shared/components/icon/icon.component.scss +22 -0
- package/projects/sigesp/src/lib/shared/components/icon/icon.component.ts +19 -0
- package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.html +73 -0
- package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.scss +86 -0
- package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.ts +102 -0
- package/projects/sigesp/src/lib/shared/material/customPaginator.ts +22 -0
- package/projects/sigesp/src/lib/shared/material/material.module.ts +144 -0
- package/projects/sigesp/src/lib/shared/pipes/iso-currency.pipe.ts +44 -0
- package/projects/sigesp/src/lib/shared/shared.module.ts +41 -0
- package/projects/sigesp/src/lib/sigesp.service.ts +2446 -0
- package/projects/sigesp/src/lib/validation.service.ts +172 -0
- package/projects/sigesp/src/public-api.ts +488 -0
- package/projects/sigesp/src/test.ts +23 -0
- package/projects/sigesp/tsconfig.lib.json +27 -0
- package/projects/sigesp/tsconfig.lib.prod.json +6 -0
- package/projects/sigesp/tsconfig.spec.json +17 -0
- package/projects/sigesp/tslint.json +17 -0
- package/src/app/app.component.html +11 -0
- package/src/app/app.component.scss +0 -0
- package/src/app/app.component.ts +110 -0
- package/src/app/app.module.ts +22 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 +0 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +16 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +15 -0
- package/src/main.ts +13 -0
- package/src/polyfills.ts +53 -0
- package/src/styles.scss +101 -0
- package/src/test.ts +22 -0
- package/tsconfig.app.json +18 -0
- package/tsconfig.json +36 -0
- package/tsconfig.spec.json +18 -0
- package/tslint.json +155 -0
- package/esm2020/lib/app/app.component.mjs +0 -14
- package/esm2020/lib/app/app.module.mjs +0 -34
- package/esm2020/lib/core/interfaces/Auditoria.mjs +0 -49
- package/esm2020/lib/core/interfaces/Banco.mjs +0 -2
- package/esm2020/lib/core/interfaces/Catalogo.mjs +0 -2
- package/esm2020/lib/core/interfaces/CentroCosto.mjs +0 -2
- package/esm2020/lib/core/interfaces/Clasificacion.mjs +0 -2
- package/esm2020/lib/core/interfaces/Cliente.mjs +0 -2
- package/esm2020/lib/core/interfaces/ComprobantePresupuestario.mjs +0 -2
- package/esm2020/lib/core/interfaces/Comunidad.mjs +0 -2
- package/esm2020/lib/core/interfaces/Configuracion.mjs +0 -2
- package/esm2020/lib/core/interfaces/ConfiguracionRPC.mjs +0 -2
- package/esm2020/lib/core/interfaces/ConfiguracionSCG.mjs +0 -2
- package/esm2020/lib/core/interfaces/ConfigurationSPG.mjs +0 -2
- package/esm2020/lib/core/interfaces/Constantes.mjs +0 -369
- package/esm2020/lib/core/interfaces/CuentaEgresos.mjs +0 -2
- package/esm2020/lib/core/interfaces/CuentaIngreso.mjs +0 -2
- package/esm2020/lib/core/interfaces/CuentaIngresoEstructura.mjs +0 -2
- package/esm2020/lib/core/interfaces/CuentaInstitucional.mjs +0 -2
- package/esm2020/lib/core/interfaces/CuentaPresupuesto.mjs +0 -2
- package/esm2020/lib/core/interfaces/CuentasPorPagar.mjs +0 -2
- package/esm2020/lib/core/interfaces/Documento.mjs +0 -2
- package/esm2020/lib/core/interfaces/EntradaSuministro.mjs +0 -2
- package/esm2020/lib/core/interfaces/Especialidad.mjs +0 -2
- package/esm2020/lib/core/interfaces/EstructuraPresupuestaria.mjs +0 -2
- package/esm2020/lib/core/interfaces/FuenteFinanciamiento.mjs +0 -2
- package/esm2020/lib/core/interfaces/IBancoCuentasPorPagar.mjs +0 -2
- package/esm2020/lib/core/interfaces/ITipoDepositos.mjs +0 -2
- package/esm2020/lib/core/interfaces/Integracion.mjs +0 -2
- package/esm2020/lib/core/interfaces/Lugares.mjs +0 -2
- package/esm2020/lib/core/interfaces/Moneda.mjs +0 -2
- package/esm2020/lib/core/interfaces/Nomina.mjs +0 -29
- package/esm2020/lib/core/interfaces/PlanUnicoCuenta.mjs +0 -2
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +0 -2
- package/esm2020/lib/core/interfaces/Proveedor.mjs +0 -2
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +0 -4
- package/esm2020/lib/core/interfaces/Request.mjs +0 -2
- package/esm2020/lib/core/interfaces/Response.mjs +0 -2
- package/esm2020/lib/core/interfaces/Seguridad.mjs +0 -2
- package/esm2020/lib/core/interfaces/Servicios.mjs +0 -2
- package/esm2020/lib/core/interfaces/Sistema.mjs +0 -2
- package/esm2020/lib/core/interfaces/Tributos.mjs +0 -2
- package/esm2020/lib/core/interfaces/UnidadTributaria.mjs +0 -2
- package/esm2020/lib/core/interfaces/Usuario.mjs +0 -2
- package/esm2020/lib/core/interfaces/UsuarioPrefijo.mjs +0 -2
- package/esm2020/lib/core/models/CFG/Empresa.model.mjs +0 -115
- package/esm2020/lib/core/models/CFG/Enterprise.model.mjs +0 -70
- package/esm2020/lib/core/models/CFG/MPrefijo.model.mjs +0 -67
- package/esm2020/lib/core/models/CFG/Procede.model.mjs +0 -31
- package/esm2020/lib/core/models/CFG/TasaCambio.model.mjs +0 -40
- package/esm2020/lib/core/models/CFG/comunidad.model.mjs +0 -22
- package/esm2020/lib/core/models/CFG/locations.model.mjs +0 -170
- package/esm2020/lib/core/models/CFG/moneda.model.mjs +0 -72
- package/esm2020/lib/core/models/CFG/userPrefix.model.mjs +0 -49
- package/esm2020/lib/core/models/CXP/MConceptosCXP.model.mjs +0 -34
- package/esm2020/lib/core/models/CXP/MTipoDocumentoCXP.model.mjs +0 -44
- package/esm2020/lib/core/models/RPC/clasification.model.mjs +0 -16
- package/esm2020/lib/core/models/RPC/configuracionRPC.model.mjs +0 -23
- package/esm2020/lib/core/models/RPC/document.model.mjs +0 -16
- package/esm2020/lib/core/models/RPC/proveedores.model.mjs +0 -9
- package/esm2020/lib/core/models/RPC/providerBeneficiary.model.mjs +0 -285
- package/esm2020/lib/core/models/RPC/specialty.model.mjs +0 -12
- package/esm2020/lib/core/models/SCB/bank.model.mjs +0 -181
- package/esm2020/lib/core/models/SCG/IncomeAccount.mjs +0 -127
- package/esm2020/lib/core/models/SCG/accountMarriage.model.mjs +0 -29
- package/esm2020/lib/core/models/SCG/centroCosto.model.mjs +0 -75
- package/esm2020/lib/core/models/SCG/configuracionSCG.model.mjs +0 -161
- package/esm2020/lib/core/models/SCG/cuentaInstitucional.model.mjs +0 -95
- package/esm2020/lib/core/models/SCG/planUnicoCuenta.model.mjs +0 -17
- package/esm2020/lib/core/models/SFV/MClienteModel.mjs +0 -116
- package/esm2020/lib/core/models/SIV/MDetaContable.model.mjs +0 -62
- package/esm2020/lib/core/models/SIV/MDetaEntrada.model.mjs +0 -94
- package/esm2020/lib/core/models/SIV/MEntradaSuministro.model.mjs +0 -132
- package/esm2020/lib/core/models/SIV/MTipoDepositos.model.mjs +0 -103
- package/esm2020/lib/core/models/SNO/MAnticipoPrestaciones.model.mjs +0 -100
- package/esm2020/lib/core/models/SNO/MArchivoTxtCampo.model.mjs +0 -61
- package/esm2020/lib/core/models/SNO/MArchivosTxt.model.mjs +0 -41
- package/esm2020/lib/core/models/SNO/MAsignacionCargo.model.mjs +0 -221
- package/esm2020/lib/core/models/SNO/MAspectoEvaluacion.model.mjs +0 -90
- package/esm2020/lib/core/models/SNO/MAuditoria.model.mjs +0 -61
- package/esm2020/lib/core/models/SNO/MBeneficiario.model.mjs +0 -137
- package/esm2020/lib/core/models/SNO/MCargaFamiliar.model.mjs +0 -52
- package/esm2020/lib/core/models/SNO/MCargaMasiva.model.mjs +0 -34
- package/esm2020/lib/core/models/SNO/MCargosPersonal.model.mjs +0 -116
- package/esm2020/lib/core/models/SNO/MClasificacionObrero.mdel.mjs +0 -46
- package/esm2020/lib/core/models/SNO/MCodigoUnicoRac.model.mjs +0 -39
- package/esm2020/lib/core/models/SNO/MComponete.model.mjs +0 -38
- package/esm2020/lib/core/models/SNO/MConceptoVacaciones.model.mjs +0 -85
- package/esm2020/lib/core/models/SNO/MConceptosNomina.model.mjs +0 -241
- package/esm2020/lib/core/models/SNO/MConceptosPersonalNomina.model.mjs +0 -97
- package/esm2020/lib/core/models/SNO/MConcursante.model.mjs +0 -317
- package/esm2020/lib/core/models/SNO/MConcurso.model.mjs +0 -246
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +0 -416
- package/esm2020/lib/core/models/SNO/MConstanteNomina.model.mjs +0 -70
- package/esm2020/lib/core/models/SNO/MConstantePersonalNomina.model.mjs +0 -79
- package/esm2020/lib/core/models/SNO/MDedicacion.model.mjs +0 -35
- package/esm2020/lib/core/models/SNO/MDefinicionNomina.model.mjs +0 -304
- package/esm2020/lib/core/models/SNO/MDefinicionesBasicas.model.mjs +0 -72
- package/esm2020/lib/core/models/SNO/MDeudaAnterior.model.mjs +0 -40
- package/esm2020/lib/core/models/SNO/MEncargaduria.model.mjs +0 -138
- package/esm2020/lib/core/models/SNO/MEscalaEvaluacion.model.mjs +0 -38
- package/esm2020/lib/core/models/SNO/MEscalaEvaluacionDt.model.mjs +0 -37
- package/esm2020/lib/core/models/SNO/MEstructuraOrganizativa.model.mjs +0 -130
- package/esm2020/lib/core/models/SNO/MFamiliares.model.mjs +0 -86
- package/esm2020/lib/core/models/SNO/MFeriados.model.mjs +0 -43
- package/esm2020/lib/core/models/SNO/MFideicomiso.model.mjs +0 -406
- package/esm2020/lib/core/models/SNO/MFormacionAcademica.model.mjs +0 -49
- package/esm2020/lib/core/models/SNO/MGrado.model.mjs +0 -44
- package/esm2020/lib/core/models/SNO/MHojaTiempo.model.mjs +0 -117
- package/esm2020/lib/core/models/SNO/MImpuestoSobreRenta.model.mjs +0 -73
- package/esm2020/lib/core/models/SNO/MMetodoBanco.model.mjs +0 -105
- package/esm2020/lib/core/models/SNO/MNominaSimple.model.mjs +0 -79
- package/esm2020/lib/core/models/SNO/MPeriodoNomina.model.mjs +0 -201
- package/esm2020/lib/core/models/SNO/MPermisos.model.mjs +0 -68
- package/esm2020/lib/core/models/SNO/MPersonal.model.mjs +0 -638
- package/esm2020/lib/core/models/SNO/MPersonalJubilado.model.mjs +0 -64
- package/esm2020/lib/core/models/SNO/MPersonalNomina.model.mjs +0 -315
- package/esm2020/lib/core/models/SNO/MPlanHorario.model.mjs +0 -117
- package/esm2020/lib/core/models/SNO/MPlantillaConstancia.model.mjs +0 -31
- package/esm2020/lib/core/models/SNO/MPrestamo.model.mjs +0 -221
- package/esm2020/lib/core/models/SNO/MPrimaGrados.model.mjs +0 -43
- package/esm2020/lib/core/models/SNO/MPrimasConcepto.model.mjs +0 -43
- package/esm2020/lib/core/models/SNO/MRango.model.mjs +0 -43
- package/esm2020/lib/core/models/SNO/MReportesRRHH.mjs +0 -402
- package/esm2020/lib/core/models/SNO/MRequisitosConcursante.model.mjs +0 -46
- package/esm2020/lib/core/models/SNO/MRequisitosConcursos.model.mjs +0 -37
- package/esm2020/lib/core/models/SNO/MRequisitosMinimos.model.mjs +0 -113
- package/esm2020/lib/core/models/SNO/MSalarioHistorico.model.mjs +0 -70
- package/esm2020/lib/core/models/SNO/MSolicitudEmpleo.model.mjs +0 -121
- package/esm2020/lib/core/models/SNO/MTablaVacaciones.model.mjs +0 -57
- package/esm2020/lib/core/models/SNO/MTablaVacacionesPeriodo.model.mjs +0 -40
- package/esm2020/lib/core/models/SNO/MTabulador.model.mjs +0 -96
- package/esm2020/lib/core/models/SNO/MTipoEvaluacion.model.mjs +0 -75
- package/esm2020/lib/core/models/SNO/MTipoPersonal.model.mjs +0 -34
- package/esm2020/lib/core/models/SNO/MTiposEnfermedad.model.mjs +0 -37
- package/esm2020/lib/core/models/SNO/MTrabajoAnterior.model.mjs +0 -65
- package/esm2020/lib/core/models/SNO/MUbicacionFisica.model.mjs +0 -61
- package/esm2020/lib/core/models/SNO/MVacacionesPersonal.model.mjs +0 -115
- package/esm2020/lib/core/models/SOC/charge.model.mjs +0 -69
- package/esm2020/lib/core/models/SOC/clause.model.mjs +0 -34
- package/esm2020/lib/core/models/SOC/clauseModality.model.mjs +0 -38
- package/esm2020/lib/core/models/SOC/configuracionSOC.model.mjs +0 -65
- package/esm2020/lib/core/models/SOC/service.model.mjs +0 -49
- package/esm2020/lib/core/models/SOC/serviceCharge.model.mjs +0 -40
- package/esm2020/lib/core/models/SOC/serviceType.model.mjs +0 -34
- package/esm2020/lib/core/models/SPG/UnidadAdministradoraCentral.mjs +0 -46
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +0 -137
- package/esm2020/lib/core/models/SPG/comprobantePresupuestario.model.mjs +0 -101
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +0 -120
- package/esm2020/lib/core/models/SPG/cuentaPresupuesto.model.mjs +0 -184
- package/esm2020/lib/core/models/SPG/estructuraPresupuestaria.model.mjs +0 -186
- package/esm2020/lib/core/models/SPG/expensiveAccount.model.mjs +0 -100
- package/esm2020/lib/core/models/SPG/fuenteFinanciamiento.model.mjs +0 -52
- package/esm2020/lib/core/models/SPG/incomeStructureAccount.model.mjs +0 -85
- package/esm2020/lib/core/models/SPG/organizationType.model.mjs +0 -12
- package/esm2020/lib/core/models/SSS/component.model.mjs +0 -44
- package/esm2020/lib/core/models/SSS/group.model.mjs +0 -30
- package/esm2020/lib/core/models/SSS/log.model.mjs +0 -29
- package/esm2020/lib/core/models/SSS/securityConfiguration.model.mjs +0 -20
- package/esm2020/lib/core/models/SSS/sistema.mjs +0 -73
- package/esm2020/lib/core/models/SSS/user.model.mjs +0 -32
- package/esm2020/lib/core/models/SSS/userDetail.model.mjs +0 -79
- package/esm2020/lib/core/models/SSS/userPermit.model.mjs +0 -47
- package/esm2020/lib/core/models/SSS/userRights.model.mjs +0 -104
- package/esm2020/lib/core/models/STB/MCargosAdicionales.mjs +0 -87
- package/esm2020/lib/core/models/STB/deduction.model.mjs +0 -90
- package/esm2020/lib/core/models/STB/deductionType.model.mjs +0 -20
- package/esm2020/lib/core/models/STB/unidadTributaria.model.mjs +0 -14
- package/esm2020/lib/core/models/basic-model.model.mjs +0 -8
- package/esm2020/lib/shared/components/catalogo/catalogo.component.mjs +0 -76
- package/esm2020/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.mjs +0 -87
- package/esm2020/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.mjs +0 -74
- package/esm2020/lib/shared/components/confirm/confirm.component.mjs +0 -35
- package/esm2020/lib/shared/components/icon/icon.component.mjs +0 -22
- package/esm2020/lib/shared/components/table-select/table-select.component.mjs +0 -99
- package/esm2020/lib/shared/material/customPaginator.mjs +0 -24
- package/esm2020/lib/shared/material/material.module.mjs +0 -322
- package/esm2020/lib/shared/pipes/iso-currency.pipe.mjs +0 -43
- package/esm2020/lib/shared/shared.module.mjs +0 -66
- package/esm2020/lib/sigesp.service.mjs +0 -1829
- package/esm2020/lib/validation.service.mjs +0 -131
- package/esm2020/public-api.mjs +0 -156
- package/esm2020/sigesp.mjs +0 -5
- package/fesm2015/sigesp.mjs +0 -14895
- package/fesm2015/sigesp.mjs.map +0 -1
- package/fesm2020/sigesp.mjs +0 -14858
- package/fesm2020/sigesp.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/app/app.component.d.ts +0 -8
- package/lib/app/app.module.d.ts +0 -10
- package/lib/core/interfaces/Auditoria.d.ts +0 -19
- package/lib/core/interfaces/Banco.d.ts +0 -599
- package/lib/core/interfaces/Catalogo.d.ts +0 -13
- package/lib/core/interfaces/CentroCosto.d.ts +0 -21
- package/lib/core/interfaces/Clasificacion.d.ts +0 -6
- package/lib/core/interfaces/Cliente.d.ts +0 -36
- package/lib/core/interfaces/ComprobantePresupuestario.d.ts +0 -51
- package/lib/core/interfaces/Comunidad.d.ts +0 -12
- package/lib/core/interfaces/Configuracion.d.ts +0 -91
- package/lib/core/interfaces/ConfiguracionRPC.d.ts +0 -10
- package/lib/core/interfaces/ConfiguracionSCG.d.ts +0 -52
- package/lib/core/interfaces/ConfigurationSPG.d.ts +0 -49
- package/lib/core/interfaces/Constantes.d.ts +0 -85
- package/lib/core/interfaces/CuentaEgresos.d.ts +0 -158
- package/lib/core/interfaces/CuentaIngreso.d.ts +0 -38
- package/lib/core/interfaces/CuentaIngresoEstructura.d.ts +0 -26
- package/lib/core/interfaces/CuentaInstitucional.d.ts +0 -28
- package/lib/core/interfaces/CuentaPresupuesto.d.ts +0 -9
- package/lib/core/interfaces/CuentasPorPagar.d.ts +0 -37
- package/lib/core/interfaces/Documento.d.ts +0 -6
- package/lib/core/interfaces/EntradaSuministro.d.ts +0 -87
- package/lib/core/interfaces/Especialidad.d.ts +0 -4
- package/lib/core/interfaces/EstructuraPresupuestaria.d.ts +0 -83
- package/lib/core/interfaces/FuenteFinanciamiento.d.ts +0 -14
- package/lib/core/interfaces/IBancoCuentasPorPagar.d.ts +0 -190
- package/lib/core/interfaces/ITipoDepositos.d.ts +0 -31
- package/lib/core/interfaces/Integracion.d.ts +0 -6
- package/lib/core/interfaces/Lugares.d.ts +0 -40
- package/lib/core/interfaces/Moneda.d.ts +0 -20
- package/lib/core/interfaces/Nomina.d.ts +0 -554
- package/lib/core/interfaces/PlanUnicoCuenta.d.ts +0 -4
- package/lib/core/interfaces/Presupuesto.d.ts +0 -132
- package/lib/core/interfaces/RecursosHumanos.d.ts +0 -1627
- package/lib/core/interfaces/Response.d.ts +0 -7
- package/lib/core/interfaces/Seguridad.d.ts +0 -112
- package/lib/core/interfaces/Servicios.d.ts +0 -64
- package/lib/core/interfaces/Sistema.d.ts +0 -19
- package/lib/core/interfaces/Tributos.d.ts +0 -75
- package/lib/core/interfaces/UnidadTributaria.d.ts +0 -11
- package/lib/core/interfaces/Usuario.d.ts +0 -52
- package/lib/core/interfaces/UsuarioPrefijo.d.ts +0 -13
- package/lib/core/models/CFG/Empresa.model.d.ts +0 -39
- package/lib/core/models/CFG/Enterprise.model.d.ts +0 -24
- package/lib/core/models/CFG/MPrefijo.model.d.ts +0 -23
- package/lib/core/models/CFG/Procede.model.d.ts +0 -11
- package/lib/core/models/CFG/TasaCambio.model.d.ts +0 -14
- package/lib/core/models/CFG/comunidad.model.d.ts +0 -15
- package/lib/core/models/CFG/locations.model.d.ts +0 -54
- package/lib/core/models/CFG/moneda.model.d.ts +0 -26
- package/lib/core/models/CFG/userPrefix.model.d.ts +0 -17
- package/lib/core/models/CXP/MConceptosCXP.model.d.ts +0 -12
- package/lib/core/models/CXP/MTipoDocumentoCXP.model.d.ts +0 -16
- package/lib/core/models/RPC/clasification.model.d.ts +0 -11
- package/lib/core/models/RPC/configuracionRPC.model.d.ts +0 -12
- package/lib/core/models/RPC/document.model.d.ts +0 -11
- package/lib/core/models/RPC/proveedores.model.d.ts +0 -8
- package/lib/core/models/RPC/providerBeneficiary.model.d.ts +0 -116
- package/lib/core/models/RPC/specialty.model.d.ts +0 -9
- package/lib/core/models/SCB/bank.model.d.ts +0 -63
- package/lib/core/models/SCG/IncomeAccount.d.ts +0 -45
- package/lib/core/models/SCG/accountMarriage.model.d.ts +0 -11
- package/lib/core/models/SCG/centroCosto.model.d.ts +0 -27
- package/lib/core/models/SCG/configuracionSCG.model.d.ts +0 -56
- package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +0 -34
- package/lib/core/models/SCG/planUnicoCuenta.model.d.ts +0 -8
- package/lib/core/models/SFV/MClienteModel.d.ts +0 -40
- package/lib/core/models/SIV/MDetaContable.model.d.ts +0 -21
- package/lib/core/models/SIV/MDetaEntrada.model.d.ts +0 -33
- package/lib/core/models/SIV/MEntradaSuministro.model.d.ts +0 -47
- package/lib/core/models/SIV/MTipoDepositos.model.d.ts +0 -35
- package/lib/core/models/SNO/MAnticipoPrestaciones.model.d.ts +0 -32
- package/lib/core/models/SNO/MArchivoTxtCampo.model.d.ts +0 -21
- package/lib/core/models/SNO/MArchivosTxt.model.d.ts +0 -15
- package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +0 -87
- package/lib/core/models/SNO/MAspectoEvaluacion.model.d.ts +0 -30
- package/lib/core/models/SNO/MAuditoria.model.d.ts +0 -21
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +0 -48
- package/lib/core/models/SNO/MCargaFamiliar.model.d.ts +0 -18
- package/lib/core/models/SNO/MCargaMasiva.model.d.ts +0 -12
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +0 -48
- package/lib/core/models/SNO/MClasificacionObrero.mdel.d.ts +0 -16
- package/lib/core/models/SNO/MCodigoUnicoRac.model.d.ts +0 -14
- package/lib/core/models/SNO/MComponete.model.d.ts +0 -14
- package/lib/core/models/SNO/MConceptoVacaciones.model.d.ts +0 -30
- package/lib/core/models/SNO/MConceptosNomina.model.d.ts +0 -84
- package/lib/core/models/SNO/MConceptosPersonalNomina.model.d.ts +0 -34
- package/lib/core/models/SNO/MConcursante.model.d.ts +0 -104
- package/lib/core/models/SNO/MConcurso.model.d.ts +0 -83
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +0 -140
- package/lib/core/models/SNO/MConstanteNomina.model.d.ts +0 -24
- package/lib/core/models/SNO/MConstantePersonalNomina.model.d.ts +0 -27
- package/lib/core/models/SNO/MDedicacion.model.d.ts +0 -13
- package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +0 -115
- package/lib/core/models/SNO/MDefinicionesBasicas.model.d.ts +0 -25
- package/lib/core/models/SNO/MDeudaAnterior.model.d.ts +0 -14
- package/lib/core/models/SNO/MEncargaduria.model.d.ts +0 -47
- package/lib/core/models/SNO/MEscalaEvaluacion.model.d.ts +0 -15
- package/lib/core/models/SNO/MEscalaEvaluacionDt.model.d.ts +0 -14
- package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +0 -46
- package/lib/core/models/SNO/MFamiliares.model.d.ts +0 -31
- package/lib/core/models/SNO/MFeriados.model.d.ts +0 -16
- package/lib/core/models/SNO/MFideicomiso.model.d.ts +0 -143
- package/lib/core/models/SNO/MFormacionAcademica.model.d.ts +0 -18
- package/lib/core/models/SNO/MGrado.model.d.ts +0 -18
- package/lib/core/models/SNO/MHojaTiempo.model.d.ts +0 -40
- package/lib/core/models/SNO/MImpuestoSobreRenta.model.d.ts +0 -25
- package/lib/core/models/SNO/MMetodoBanco.model.d.ts +0 -35
- package/lib/core/models/SNO/MNominaSimple.model.d.ts +0 -34
- package/lib/core/models/SNO/MPeriodoNomina.model.d.ts +0 -57
- package/lib/core/models/SNO/MPermisos.model.d.ts +0 -24
- package/lib/core/models/SNO/MPersonal.model.d.ts +0 -219
- package/lib/core/models/SNO/MPersonalJubilado.model.d.ts +0 -23
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +0 -102
- package/lib/core/models/SNO/MPlanHorario.model.d.ts +0 -41
- package/lib/core/models/SNO/MPlantillaConstancia.model.d.ts +0 -11
- package/lib/core/models/SNO/MPrestamo.model.d.ts +0 -69
- package/lib/core/models/SNO/MPrimaGrados.model.d.ts +0 -15
- package/lib/core/models/SNO/MPrimasConcepto.model.d.ts +0 -15
- package/lib/core/models/SNO/MRango.model.d.ts +0 -15
- package/lib/core/models/SNO/MReportesRRHH.d.ts +0 -130
- package/lib/core/models/SNO/MRequisitosConcursante.model.d.ts +0 -16
- package/lib/core/models/SNO/MRequisitosConcursos.model.d.ts +0 -14
- package/lib/core/models/SNO/MRequisitosMinimos.model.d.ts +0 -39
- package/lib/core/models/SNO/MSalarioHistorico.model.d.ts +0 -25
- package/lib/core/models/SNO/MSolicitudEmpleo.model.d.ts +0 -42
- package/lib/core/models/SNO/MTablaVacaciones.model.d.ts +0 -15
- package/lib/core/models/SNO/MTablaVacacionesPeriodo.model.d.ts +0 -15
- package/lib/core/models/SNO/MTabulador.model.d.ts +0 -39
- package/lib/core/models/SNO/MTipoEvaluacion.model.d.ts +0 -28
- package/lib/core/models/SNO/MTipoPersonal.model.d.ts +0 -13
- package/lib/core/models/SNO/MTiposEnfermedad.model.d.ts +0 -14
- package/lib/core/models/SNO/MTrabajoAnterior.model.d.ts +0 -24
- package/lib/core/models/SNO/MUbicacionFisica.model.d.ts +0 -21
- package/lib/core/models/SNO/MVacacionesPersonal.model.d.ts +0 -40
- package/lib/core/models/SOC/charge.model.d.ts +0 -25
- package/lib/core/models/SOC/clause.model.d.ts +0 -12
- package/lib/core/models/SOC/clauseModality.model.d.ts +0 -14
- package/lib/core/models/SOC/configuracionSOC.model.d.ts +0 -21
- package/lib/core/models/SOC/service.model.d.ts +0 -17
- package/lib/core/models/SOC/serviceCharge.model.d.ts +0 -14
- package/lib/core/models/SOC/serviceType.model.d.ts +0 -12
- package/lib/core/models/SPG/UnidadAdministradoraCentral.d.ts +0 -16
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +0 -67
- package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +0 -56
- package/lib/core/models/SPG/configurationSPG.model.d.ts +0 -46
- package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +0 -65
- package/lib/core/models/SPG/estructuraPresupuestaria.model.d.ts +0 -119
- package/lib/core/models/SPG/expensiveAccount.model.d.ts +0 -50
- package/lib/core/models/SPG/fuenteFinanciamiento.model.d.ts +0 -18
- package/lib/core/models/SPG/incomeStructureAccount.model.d.ts +0 -40
- package/lib/core/models/SPG/organizationType.model.d.ts +0 -9
- package/lib/core/models/SSS/component.model.d.ts +0 -16
- package/lib/core/models/SSS/group.model.d.ts +0 -16
- package/lib/core/models/SSS/log.model.d.ts +0 -15
- package/lib/core/models/SSS/securityConfiguration.model.d.ts +0 -9
- package/lib/core/models/SSS/sistema.d.ts +0 -25
- package/lib/core/models/SSS/user.model.d.ts +0 -22
- package/lib/core/models/SSS/userDetail.model.d.ts +0 -28
- package/lib/core/models/SSS/userPermit.model.d.ts +0 -18
- package/lib/core/models/SSS/userRights.model.d.ts +0 -35
- package/lib/core/models/STB/MCargosAdicionales.d.ts +0 -33
- package/lib/core/models/STB/deduction.model.d.ts +0 -30
- package/lib/core/models/STB/deductionType.model.d.ts +0 -9
- package/lib/core/models/STB/unidadTributaria.model.d.ts +0 -13
- package/lib/core/models/basic-model.model.d.ts +0 -6
- package/lib/shared/components/catalogo/catalogo.component.d.ts +0 -35
- package/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.d.ts +0 -39
- package/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.d.ts +0 -38
- package/lib/shared/components/confirm/confirm.component.d.ts +0 -21
- package/lib/shared/components/icon/icon.component.d.ts +0 -11
- package/lib/shared/components/table-select/table-select.component.d.ts +0 -39
- package/lib/shared/material/customPaginator.d.ts +0 -9
- package/lib/shared/material/material.module.d.ts +0 -48
- package/lib/shared/pipes/iso-currency.pipe.d.ts +0 -13
- package/lib/shared/shared.module.d.ts +0 -16
- package/lib/sigesp.service.d.ts +0 -901
- package/lib/validation.service.d.ts +0 -15
- package/public-api.d.ts +0 -164
package/index.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AppComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppComponent, "app-app", never, {}, {}, never, never, false>;
|
|
8
|
-
}
|
package/lib/app/app.module.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./app.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../shared/shared.module";
|
|
5
|
-
import * as i4 from "ngx-toastr";
|
|
6
|
-
export declare class AppModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AppModule, [typeof i1.AppComponent], [typeof i2.CommonModule, typeof i3.SharedModule, typeof i4.ToastrModule], [typeof i3.SharedModule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AppModule>;
|
|
10
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ISelect, ISelect4 } from "./Constantes";
|
|
2
|
-
export interface ISnoLog {
|
|
3
|
-
id_enterprise: string;
|
|
4
|
-
id_empresa: number;
|
|
5
|
-
id_personal: string;
|
|
6
|
-
id_auditoria_personal: string;
|
|
7
|
-
id_registro: string;
|
|
8
|
-
id_nomina: string;
|
|
9
|
-
fecha: string;
|
|
10
|
-
hora: string;
|
|
11
|
-
campo: string;
|
|
12
|
-
valor_anterior: string;
|
|
13
|
-
valor_nuevo: string;
|
|
14
|
-
codusu: string;
|
|
15
|
-
observacion: string;
|
|
16
|
-
evento: string;
|
|
17
|
-
}
|
|
18
|
-
export declare const Campos: ISelect[];
|
|
19
|
-
export declare const Eventos: ISelect4[];
|
|
@@ -1,599 +0,0 @@
|
|
|
1
|
-
import { ISolicitudesBanco } from "./IBancoCuentasPorPagar";
|
|
2
|
-
export interface ISigecofBank {
|
|
3
|
-
codbansig: string;
|
|
4
|
-
denbansig: string;
|
|
5
|
-
}
|
|
6
|
-
export interface IBank {
|
|
7
|
-
id_empresa: string;
|
|
8
|
-
id_enterprise: string;
|
|
9
|
-
id_banco: string;
|
|
10
|
-
codban: string;
|
|
11
|
-
nomban: string;
|
|
12
|
-
dirban: string;
|
|
13
|
-
gerban: string;
|
|
14
|
-
telban: string;
|
|
15
|
-
conban: string;
|
|
16
|
-
movcon: string;
|
|
17
|
-
esttesnac: string;
|
|
18
|
-
codsudeban: string;
|
|
19
|
-
codswift: string;
|
|
20
|
-
emailcon: string;
|
|
21
|
-
habcaja: string;
|
|
22
|
-
}
|
|
23
|
-
export interface IBankAccountType {
|
|
24
|
-
id_tipocta: string;
|
|
25
|
-
id_empresa: string;
|
|
26
|
-
nomtipcta: string;
|
|
27
|
-
}
|
|
28
|
-
export interface ICuentaBanco {
|
|
29
|
-
id_ctabanco: string;
|
|
30
|
-
id_empresa: string;
|
|
31
|
-
id_enterprise: string;
|
|
32
|
-
id_banco: string;
|
|
33
|
-
id_tipocta: string;
|
|
34
|
-
ctabanco: string;
|
|
35
|
-
ctabanext: string;
|
|
36
|
-
dencta: string;
|
|
37
|
-
sc_cuenta: string;
|
|
38
|
-
fecapr: string;
|
|
39
|
-
feccie: string;
|
|
40
|
-
estact: string;
|
|
41
|
-
fecultcon: string;
|
|
42
|
-
denominacioncta: string;
|
|
43
|
-
nombrebanco: string;
|
|
44
|
-
nombretipocta: string;
|
|
45
|
-
habcaja: string;
|
|
46
|
-
codban: string;
|
|
47
|
-
}
|
|
48
|
-
export interface ITipoFondoAvance {
|
|
49
|
-
id_empresa: number;
|
|
50
|
-
id_enterprise: string;
|
|
51
|
-
id_tipofondo: number;
|
|
52
|
-
codtipfon: string;
|
|
53
|
-
dentipfon: string;
|
|
54
|
-
porrepfon: number;
|
|
55
|
-
}
|
|
56
|
-
export interface IAgencia {
|
|
57
|
-
id_empresa: string;
|
|
58
|
-
id_agencia: string;
|
|
59
|
-
id_banco: string;
|
|
60
|
-
codage: string;
|
|
61
|
-
nomage: string;
|
|
62
|
-
}
|
|
63
|
-
export interface IConfigBanco {
|
|
64
|
-
id_empresa: number;
|
|
65
|
-
id_enterprise: string;
|
|
66
|
-
id_scb: number;
|
|
67
|
-
gencheque: number;
|
|
68
|
-
conintmovban: number;
|
|
69
|
-
valinimovban: number;
|
|
70
|
-
numrefcarord: number;
|
|
71
|
-
casconmovctaban: number;
|
|
72
|
-
diacadche: number;
|
|
73
|
-
valdispfinanc: string;
|
|
74
|
-
fornroordpag: string;
|
|
75
|
-
id_formcartaorden: number;
|
|
76
|
-
id_proveedor: number;
|
|
77
|
-
rifpro: string;
|
|
78
|
-
cedben: string;
|
|
79
|
-
nompro: string;
|
|
80
|
-
medgralche: number;
|
|
81
|
-
}
|
|
82
|
-
export interface IChequera {
|
|
83
|
-
id_empresa: string;
|
|
84
|
-
id_enterprise: string;
|
|
85
|
-
id_cheque: string;
|
|
86
|
-
id_tipocta: string;
|
|
87
|
-
id_banco: string;
|
|
88
|
-
numche: string;
|
|
89
|
-
id_ctabanco: string;
|
|
90
|
-
estche: string;
|
|
91
|
-
numchequera: string;
|
|
92
|
-
orden: string;
|
|
93
|
-
codusu: string;
|
|
94
|
-
denestche: string;
|
|
95
|
-
nomban: string;
|
|
96
|
-
codban: string;
|
|
97
|
-
ctabanext: string;
|
|
98
|
-
nomtipcta: string;
|
|
99
|
-
}
|
|
100
|
-
export interface IConceptoMovimiento {
|
|
101
|
-
id_empresa: number;
|
|
102
|
-
id_enterprise: string;
|
|
103
|
-
id_conmov: number;
|
|
104
|
-
codconmov: string;
|
|
105
|
-
denconmov: string;
|
|
106
|
-
codope: string;
|
|
107
|
-
}
|
|
108
|
-
export interface ICartaOrden {
|
|
109
|
-
id_formcartaorden: string;
|
|
110
|
-
codformcartaorden: string;
|
|
111
|
-
encabezado: string;
|
|
112
|
-
cuerpo: string;
|
|
113
|
-
pie: string;
|
|
114
|
-
nombre: string;
|
|
115
|
-
estatus: string;
|
|
116
|
-
archivo: string;
|
|
117
|
-
base64textString: string;
|
|
118
|
-
plantilla_rtf: string;
|
|
119
|
-
}
|
|
120
|
-
export interface IVoucherMedidas {
|
|
121
|
-
id_empresa: number;
|
|
122
|
-
id_enterprise: string;
|
|
123
|
-
id_medche: number;
|
|
124
|
-
id_banco: number;
|
|
125
|
-
codmedche: string;
|
|
126
|
-
montox: number;
|
|
127
|
-
montoy: number;
|
|
128
|
-
probenx: number;
|
|
129
|
-
probeny: number;
|
|
130
|
-
monletx: number;
|
|
131
|
-
monlety: number;
|
|
132
|
-
monlet2x: number;
|
|
133
|
-
monlet2y: number;
|
|
134
|
-
ciudiamesx: number;
|
|
135
|
-
ciudiamesy: number;
|
|
136
|
-
aniox: number;
|
|
137
|
-
anioy: number;
|
|
138
|
-
noendx: number;
|
|
139
|
-
noendy: number;
|
|
140
|
-
caddiax: number;
|
|
141
|
-
caddiay: number;
|
|
142
|
-
elabx: number;
|
|
143
|
-
elaby: number;
|
|
144
|
-
estmedgral: number;
|
|
145
|
-
nomban: string;
|
|
146
|
-
codban: string;
|
|
147
|
-
}
|
|
148
|
-
export interface IMovimientoBanco {
|
|
149
|
-
id_empresa: string;
|
|
150
|
-
id_enterprise: string;
|
|
151
|
-
id_movbco: string;
|
|
152
|
-
id_banco: string;
|
|
153
|
-
id_ctabanco: string;
|
|
154
|
-
id_uniadm: string;
|
|
155
|
-
numdoc: string;
|
|
156
|
-
codope: string;
|
|
157
|
-
id_tipocta: string;
|
|
158
|
-
id_proveedor: string;
|
|
159
|
-
ctabanco: string;
|
|
160
|
-
id_conmov: string;
|
|
161
|
-
codcencos: string;
|
|
162
|
-
estopediv: string;
|
|
163
|
-
codmon: string;
|
|
164
|
-
tascam: string;
|
|
165
|
-
fectasdes: string;
|
|
166
|
-
estmovbco: string;
|
|
167
|
-
fecmovbco: string;
|
|
168
|
-
conmovbco: string;
|
|
169
|
-
nompro: string;
|
|
170
|
-
monto: string;
|
|
171
|
-
estbpd: string;
|
|
172
|
-
estcon: string;
|
|
173
|
-
estcobche: string;
|
|
174
|
-
estinteres: string;
|
|
175
|
-
chevau: string;
|
|
176
|
-
estimpche: string;
|
|
177
|
-
monobjret: string;
|
|
178
|
-
monret: string;
|
|
179
|
-
procede: string;
|
|
180
|
-
comprobante: string;
|
|
181
|
-
feccmp: string;
|
|
182
|
-
estemiche: string;
|
|
183
|
-
fecemiche: string;
|
|
184
|
-
feccontab: string;
|
|
185
|
-
fecanu: string;
|
|
186
|
-
codusureg: string;
|
|
187
|
-
codusucon: string;
|
|
188
|
-
codusuanu: string;
|
|
189
|
-
conanu: string;
|
|
190
|
-
fecconcil: string;
|
|
191
|
-
codusuconcil: string;
|
|
192
|
-
numcarord: string;
|
|
193
|
-
id_fuefin: string;
|
|
194
|
-
codigoftefin: string;
|
|
195
|
-
coduniadm: string;
|
|
196
|
-
dencencos: string;
|
|
197
|
-
denfuefin: string;
|
|
198
|
-
denuniadm: string;
|
|
199
|
-
codestpre: string;
|
|
200
|
-
id_ep1: string;
|
|
201
|
-
id_ep2: string;
|
|
202
|
-
id_ep3: string;
|
|
203
|
-
id_ep4: string;
|
|
204
|
-
id_ep5: string;
|
|
205
|
-
rifpro: string;
|
|
206
|
-
tippro: string;
|
|
207
|
-
simmon: string;
|
|
208
|
-
operacion: string;
|
|
209
|
-
montototal: string;
|
|
210
|
-
nomban: string;
|
|
211
|
-
sc_cuenta: string;
|
|
212
|
-
id_cheque: string;
|
|
213
|
-
estint: string;
|
|
214
|
-
disponibilidad: string;
|
|
215
|
-
codtras: string;
|
|
216
|
-
estcondoc: string;
|
|
217
|
-
fecenvfir: string;
|
|
218
|
-
fecenvcaj: string;
|
|
219
|
-
cedrecche: string;
|
|
220
|
-
nomrecche: string;
|
|
221
|
-
tiptrans: string;
|
|
222
|
-
contable: IDetallesContable[];
|
|
223
|
-
detalles: IDetalleMovimiento[];
|
|
224
|
-
divisas: IDivisas[];
|
|
225
|
-
solicitudes: ISolicitudesBanco[];
|
|
226
|
-
presupuesto: IDetalleSpgSpi[];
|
|
227
|
-
}
|
|
228
|
-
export interface ISelect2 {
|
|
229
|
-
value: string;
|
|
230
|
-
procede: string;
|
|
231
|
-
denominacion: string;
|
|
232
|
-
}
|
|
233
|
-
export interface IDetallesContable {
|
|
234
|
-
id_empresa: string;
|
|
235
|
-
id_enterprise: string;
|
|
236
|
-
id_movbco: string;
|
|
237
|
-
id_banco: string;
|
|
238
|
-
id_ctabanco: string;
|
|
239
|
-
numdoc: string;
|
|
240
|
-
codope: string;
|
|
241
|
-
id_cencos: string;
|
|
242
|
-
codcencos: string;
|
|
243
|
-
sc_cuenta: string;
|
|
244
|
-
debhab: string;
|
|
245
|
-
id_deduccion: string;
|
|
246
|
-
desmov: string;
|
|
247
|
-
procede_doc: string;
|
|
248
|
-
monto: string;
|
|
249
|
-
monobjret: string;
|
|
250
|
-
id_detalle: string;
|
|
251
|
-
id_uniadm: string;
|
|
252
|
-
coduniadm: string;
|
|
253
|
-
dencencos: string;
|
|
254
|
-
denuniadm: string;
|
|
255
|
-
documento: string;
|
|
256
|
-
dencta: string;
|
|
257
|
-
}
|
|
258
|
-
export interface IDetalle {
|
|
259
|
-
id_empresa: string;
|
|
260
|
-
id_enterprise: string;
|
|
261
|
-
id_movbco: string;
|
|
262
|
-
id_banco: string;
|
|
263
|
-
id_ctabanco: string;
|
|
264
|
-
id_uniadm: string;
|
|
265
|
-
id_cencos: string;
|
|
266
|
-
numdoc: string;
|
|
267
|
-
codope: string;
|
|
268
|
-
spg_spi_cuenta: string;
|
|
269
|
-
codestpre: string;
|
|
270
|
-
id_fuefin: string;
|
|
271
|
-
coduniadm: string;
|
|
272
|
-
codcencos: string;
|
|
273
|
-
operacion: string;
|
|
274
|
-
desmov: string;
|
|
275
|
-
procede_doc: string;
|
|
276
|
-
monto: string;
|
|
277
|
-
sc_cuenta: string;
|
|
278
|
-
debhab: string;
|
|
279
|
-
codigofuefin: string;
|
|
280
|
-
estcla: string;
|
|
281
|
-
denestcla: string;
|
|
282
|
-
tipo: string;
|
|
283
|
-
id_detalle: string;
|
|
284
|
-
dencencos: string;
|
|
285
|
-
denuniadm: string;
|
|
286
|
-
denfuefin: string;
|
|
287
|
-
id_ep1: string;
|
|
288
|
-
id_ep2: string;
|
|
289
|
-
id_ep3: string;
|
|
290
|
-
id_ep4: string;
|
|
291
|
-
id_ep5: string;
|
|
292
|
-
}
|
|
293
|
-
export interface IDetalleSpgSpi {
|
|
294
|
-
id_empresa: string;
|
|
295
|
-
id_enterprise: string;
|
|
296
|
-
id_movbco: string;
|
|
297
|
-
id_banco: string;
|
|
298
|
-
id_ctabanco: string;
|
|
299
|
-
numdoc: string;
|
|
300
|
-
codope: string;
|
|
301
|
-
codestpre: string;
|
|
302
|
-
spg_cuenta: string;
|
|
303
|
-
id_fuefin: string;
|
|
304
|
-
id_cencos: string;
|
|
305
|
-
codcencos: string;
|
|
306
|
-
operacion: string;
|
|
307
|
-
desmov: string;
|
|
308
|
-
procede_doc: string;
|
|
309
|
-
monto: string;
|
|
310
|
-
codigofuefin: string;
|
|
311
|
-
denestcla: string;
|
|
312
|
-
estcla: string;
|
|
313
|
-
id_detalle: string;
|
|
314
|
-
id_uniadm: string;
|
|
315
|
-
debhab: string;
|
|
316
|
-
dencencos: string;
|
|
317
|
-
coduniadm: string;
|
|
318
|
-
denuniadm: string;
|
|
319
|
-
denfuefin: string;
|
|
320
|
-
id_ep1: string;
|
|
321
|
-
id_ep2: string;
|
|
322
|
-
id_ep3: string;
|
|
323
|
-
id_ep4: string;
|
|
324
|
-
id_ep5: string;
|
|
325
|
-
sc_cuenta: string;
|
|
326
|
-
disponibilidad: string;
|
|
327
|
-
documento: string;
|
|
328
|
-
dencta: string;
|
|
329
|
-
}
|
|
330
|
-
export interface IDetalleMovimiento {
|
|
331
|
-
id_empresa: string;
|
|
332
|
-
id_enterprise: string;
|
|
333
|
-
id_movbco: string;
|
|
334
|
-
id_banco: string;
|
|
335
|
-
id_ctabanco: string;
|
|
336
|
-
numdoc: string;
|
|
337
|
-
codope: string;
|
|
338
|
-
estmov: string;
|
|
339
|
-
id_proveedor: string;
|
|
340
|
-
numsolpag: string;
|
|
341
|
-
monsolpag: string;
|
|
342
|
-
ctabanben: string;
|
|
343
|
-
}
|
|
344
|
-
export interface ICuentasSpSc {
|
|
345
|
-
id_cencos: string;
|
|
346
|
-
codcencos: string;
|
|
347
|
-
codigoftefin: string;
|
|
348
|
-
coduniadm: string;
|
|
349
|
-
denominacion: string;
|
|
350
|
-
estructura: string;
|
|
351
|
-
cuentacontable: string;
|
|
352
|
-
cuentapresupuestaria: string;
|
|
353
|
-
estcla: string;
|
|
354
|
-
denestcla: string;
|
|
355
|
-
tipo: string;
|
|
356
|
-
}
|
|
357
|
-
export interface IDivisas {
|
|
358
|
-
id_empresa: string;
|
|
359
|
-
id_enterprise: string;
|
|
360
|
-
id_movbco: string;
|
|
361
|
-
id_banco: string;
|
|
362
|
-
id_ctabanco: string;
|
|
363
|
-
numdoc: string;
|
|
364
|
-
codope: string;
|
|
365
|
-
codestpre: string;
|
|
366
|
-
id_fuefin: string;
|
|
367
|
-
id_cencos: string;
|
|
368
|
-
codcencos: string;
|
|
369
|
-
cuenta: string;
|
|
370
|
-
debhab: string;
|
|
371
|
-
monsubtotal: string;
|
|
372
|
-
montotal: string;
|
|
373
|
-
id_dt_moneda: string;
|
|
374
|
-
id_dt: string;
|
|
375
|
-
id_uniadm: string;
|
|
376
|
-
operacion: string;
|
|
377
|
-
procede_doc: string;
|
|
378
|
-
dencencos: string;
|
|
379
|
-
coduniadm: string;
|
|
380
|
-
denuniadm: string;
|
|
381
|
-
denfuefin: string;
|
|
382
|
-
codigofuefin: string;
|
|
383
|
-
id_ep1: string;
|
|
384
|
-
id_ep2: string;
|
|
385
|
-
id_ep3: string;
|
|
386
|
-
id_ep4: string;
|
|
387
|
-
id_ep5: string;
|
|
388
|
-
}
|
|
389
|
-
export interface ITrasferencia {
|
|
390
|
-
codban_des: string;
|
|
391
|
-
codban_ori: string;
|
|
392
|
-
codmon: string;
|
|
393
|
-
codope_des: string;
|
|
394
|
-
codope_ori: string;
|
|
395
|
-
codtras: string;
|
|
396
|
-
codusuanu_des: string;
|
|
397
|
-
codusuanu_ori: string;
|
|
398
|
-
codusucon_des: string;
|
|
399
|
-
codusucon_ori: string;
|
|
400
|
-
codusuconcil_des: string;
|
|
401
|
-
codusuconcil_ori: string;
|
|
402
|
-
codusureg: string;
|
|
403
|
-
conanu: string;
|
|
404
|
-
conmovbco: string;
|
|
405
|
-
ctaban_des: string;
|
|
406
|
-
ctaban_ori: string;
|
|
407
|
-
denest_des: string;
|
|
408
|
-
denest_ori: string;
|
|
409
|
-
disponibidad_des: string;
|
|
410
|
-
disponibidad_ori: string;
|
|
411
|
-
estbpd_des: string;
|
|
412
|
-
estbpd_ori: string;
|
|
413
|
-
estcon_des: string;
|
|
414
|
-
estcon_ori: string;
|
|
415
|
-
estint: string;
|
|
416
|
-
estmovbco_des: string;
|
|
417
|
-
estmovbco_ori: string;
|
|
418
|
-
estweb: string;
|
|
419
|
-
fecanu_des: string;
|
|
420
|
-
fecanu_ori: string;
|
|
421
|
-
fecconcil_des: string;
|
|
422
|
-
fecconcil_ori: string;
|
|
423
|
-
feccontab_des: string;
|
|
424
|
-
feccontab_ori: string;
|
|
425
|
-
fecmovbco: string;
|
|
426
|
-
id_banco_ori: string;
|
|
427
|
-
id_banco_des: string;
|
|
428
|
-
id_ctabanco_des: string;
|
|
429
|
-
id_ctabanco_ori: string;
|
|
430
|
-
id_empresa: string;
|
|
431
|
-
id_enterprise: string;
|
|
432
|
-
id_movbco_des: string;
|
|
433
|
-
id_movbco_ori: string;
|
|
434
|
-
id_proveedor: string;
|
|
435
|
-
id_tipocta_des: string;
|
|
436
|
-
id_tipocta_ori: string;
|
|
437
|
-
monto: string;
|
|
438
|
-
montototal: string;
|
|
439
|
-
nomban_des: string;
|
|
440
|
-
nomban_ori: string;
|
|
441
|
-
nompro: string;
|
|
442
|
-
numdoc_des: string;
|
|
443
|
-
numdoc_ori: string;
|
|
444
|
-
procede: string;
|
|
445
|
-
rifpro: string;
|
|
446
|
-
sc_cuenta_des: string;
|
|
447
|
-
sc_cuenta_ori: string;
|
|
448
|
-
tippro: string;
|
|
449
|
-
contable: IDetallesContable[];
|
|
450
|
-
}
|
|
451
|
-
export interface IMovimiento {
|
|
452
|
-
conanu: string;
|
|
453
|
-
codope: string;
|
|
454
|
-
conmovbco: String;
|
|
455
|
-
estmovbco: string;
|
|
456
|
-
estint: string;
|
|
457
|
-
fecanu: string;
|
|
458
|
-
feccontab: string;
|
|
459
|
-
fecmovbco: string;
|
|
460
|
-
id_empresa: string;
|
|
461
|
-
id_enterprise: string;
|
|
462
|
-
id_movbco: string;
|
|
463
|
-
id_banco: string;
|
|
464
|
-
id_ctabanco: string;
|
|
465
|
-
id_uniadm: string;
|
|
466
|
-
id_proveedor: string;
|
|
467
|
-
montototal: string;
|
|
468
|
-
nompro: string;
|
|
469
|
-
numdoc: string;
|
|
470
|
-
rifpro: string;
|
|
471
|
-
tippro: string;
|
|
472
|
-
}
|
|
473
|
-
export interface IIntegracion {
|
|
474
|
-
id_empresa: string;
|
|
475
|
-
id_enterprise: string;
|
|
476
|
-
id_movbaco: string;
|
|
477
|
-
id_proveedor: string;
|
|
478
|
-
nompro: string;
|
|
479
|
-
id_ep1: string;
|
|
480
|
-
id_ep2: string;
|
|
481
|
-
id_ep3: string;
|
|
482
|
-
id_ep4: string;
|
|
483
|
-
id_ep5: string;
|
|
484
|
-
spg_cuenta: string;
|
|
485
|
-
sc_cuenta: string;
|
|
486
|
-
id_fuefin: string;
|
|
487
|
-
id_cencos: string;
|
|
488
|
-
codcencos: string;
|
|
489
|
-
id_uniadm: string;
|
|
490
|
-
estpre: string;
|
|
491
|
-
monto: string;
|
|
492
|
-
denspgcta: string;
|
|
493
|
-
disponibilidad: string;
|
|
494
|
-
codope: string;
|
|
495
|
-
estatus: string;
|
|
496
|
-
cedrifcli: string;
|
|
497
|
-
codigo: string;
|
|
498
|
-
id_cliente: string;
|
|
499
|
-
}
|
|
500
|
-
export interface IConciliacion {
|
|
501
|
-
id_empresa: string;
|
|
502
|
-
id_enterprise: string;
|
|
503
|
-
id_conciliacion: string;
|
|
504
|
-
id_banco: string;
|
|
505
|
-
id_ctabanco: string;
|
|
506
|
-
mesano: string;
|
|
507
|
-
id_tipocta: string;
|
|
508
|
-
salseglib: string;
|
|
509
|
-
salsegbco: string;
|
|
510
|
-
conciliacion: string;
|
|
511
|
-
estcon: string;
|
|
512
|
-
fecregcon: string;
|
|
513
|
-
codusu: string;
|
|
514
|
-
ctabanco: string;
|
|
515
|
-
nomban: string;
|
|
516
|
-
sc_cuenta: string;
|
|
517
|
-
disponibilidad: string;
|
|
518
|
-
movimientos: IMovimientoBancoConciliar[];
|
|
519
|
-
}
|
|
520
|
-
export interface IDetalleConciliacion {
|
|
521
|
-
id_enterprise: string;
|
|
522
|
-
camrel: string;
|
|
523
|
-
codcam: string;
|
|
524
|
-
colcam: string;
|
|
525
|
-
cricam: string;
|
|
526
|
-
dencam: string;
|
|
527
|
-
forcam: string;
|
|
528
|
-
id_archconciliacion: string;
|
|
529
|
-
id_empresa: string;
|
|
530
|
-
inicam: string;
|
|
531
|
-
loncam: string;
|
|
532
|
-
}
|
|
533
|
-
export interface IMovimientoBancoConciliar {
|
|
534
|
-
id_enterprise: string;
|
|
535
|
-
codope: string;
|
|
536
|
-
codusuconcil: string;
|
|
537
|
-
conmovbco: string;
|
|
538
|
-
ctabanco: string;
|
|
539
|
-
sc_cuenta: string;
|
|
540
|
-
estbpd: string;
|
|
541
|
-
estcon: string;
|
|
542
|
-
estmovbco: string;
|
|
543
|
-
fecconcil: string;
|
|
544
|
-
fecmovbco: string;
|
|
545
|
-
id_banco: string;
|
|
546
|
-
id_conmov: string;
|
|
547
|
-
id_ctabanco: string;
|
|
548
|
-
id_empresa: string;
|
|
549
|
-
id_movbco: string;
|
|
550
|
-
id_tipocta: string;
|
|
551
|
-
monto: string;
|
|
552
|
-
montototal: string;
|
|
553
|
-
nomban: string;
|
|
554
|
-
numdoc: string;
|
|
555
|
-
procede: string;
|
|
556
|
-
id_conciliacion: string;
|
|
557
|
-
numref: string;
|
|
558
|
-
tipmov: string;
|
|
559
|
-
}
|
|
560
|
-
export interface IControlDocumento {
|
|
561
|
-
id_banco: string;
|
|
562
|
-
id_ctabanco: string;
|
|
563
|
-
id_cheque: string;
|
|
564
|
-
id_empresa: string;
|
|
565
|
-
id_movbco: string;
|
|
566
|
-
id_proveedor: string;
|
|
567
|
-
id_tipocta: string;
|
|
568
|
-
nompro: string;
|
|
569
|
-
nomban: string;
|
|
570
|
-
numcarord: string;
|
|
571
|
-
chevau: string;
|
|
572
|
-
numdoc: string;
|
|
573
|
-
montototal: string;
|
|
574
|
-
ctabanco: string;
|
|
575
|
-
fecemiche: string;
|
|
576
|
-
fecmovbco: string;
|
|
577
|
-
cedrecche: string;
|
|
578
|
-
nomrecche: string;
|
|
579
|
-
estcondoc: string;
|
|
580
|
-
fecenvfir: string;
|
|
581
|
-
fecenvcaj: string;
|
|
582
|
-
conmovbco: string;
|
|
583
|
-
}
|
|
584
|
-
export interface ICatalogoIntegracion {
|
|
585
|
-
id_empresa: string;
|
|
586
|
-
id_enterprise: string;
|
|
587
|
-
id_movbco: string;
|
|
588
|
-
numdoc: string;
|
|
589
|
-
codope: string;
|
|
590
|
-
id_proveedor: string;
|
|
591
|
-
fecmovbco: string;
|
|
592
|
-
conmovbco: string;
|
|
593
|
-
nompro: string;
|
|
594
|
-
tippro: string;
|
|
595
|
-
rifpro: string;
|
|
596
|
-
montototal: string;
|
|
597
|
-
presupuesto: IDetalleSpgSpi[];
|
|
598
|
-
contable: IDetallesContable[];
|
|
599
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface ICatalogo {
|
|
2
|
-
columns: string[];
|
|
3
|
-
dataSource: any[];
|
|
4
|
-
title: string;
|
|
5
|
-
idNomina?: number;
|
|
6
|
-
cantidad?: number;
|
|
7
|
-
columnNames?: string[];
|
|
8
|
-
filterData: filterData[];
|
|
9
|
-
}
|
|
10
|
-
export interface filterData {
|
|
11
|
-
placeholder: string;
|
|
12
|
-
property: string;
|
|
13
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export interface ICentroCosto {
|
|
2
|
-
id_empresa: string;
|
|
3
|
-
id_enterprise: string;
|
|
4
|
-
id_cencos: string;
|
|
5
|
-
perfiscal: string;
|
|
6
|
-
codcencos: string;
|
|
7
|
-
denominacion: string;
|
|
8
|
-
id_uniadm: string;
|
|
9
|
-
id_dt: string;
|
|
10
|
-
}
|
|
11
|
-
export interface IUsuariosCentroCosto {
|
|
12
|
-
id_empresa: string;
|
|
13
|
-
id_enterprise: string;
|
|
14
|
-
id_cencos: string;
|
|
15
|
-
codcencos: string;
|
|
16
|
-
codusu: string;
|
|
17
|
-
id_usuario: string;
|
|
18
|
-
nomusu?: string;
|
|
19
|
-
apeusu?: string;
|
|
20
|
-
id_dt_cencos: string;
|
|
21
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
export interface IClient {
|
|
2
|
-
id_empresa: number;
|
|
3
|
-
id_cliente: number;
|
|
4
|
-
id_categoria: number;
|
|
5
|
-
id_vendedor: number;
|
|
6
|
-
esttipcli: number;
|
|
7
|
-
codigo: string;
|
|
8
|
-
cedrifcli: string;
|
|
9
|
-
nomcli: string;
|
|
10
|
-
dircli: string;
|
|
11
|
-
telclipri: string;
|
|
12
|
-
telclisec: string;
|
|
13
|
-
fecregcli: string;
|
|
14
|
-
emacli: string;
|
|
15
|
-
estcli: string;
|
|
16
|
-
cedrep: string;
|
|
17
|
-
nomrep: string;
|
|
18
|
-
emarep: string;
|
|
19
|
-
comentario: string;
|
|
20
|
-
codpai: string;
|
|
21
|
-
codest: string;
|
|
22
|
-
codmun: string;
|
|
23
|
-
codpar: string;
|
|
24
|
-
codpos: string;
|
|
25
|
-
nomapecon: string;
|
|
26
|
-
ubicon: string;
|
|
27
|
-
telcon: string;
|
|
28
|
-
emacon: string;
|
|
29
|
-
aplicarcxc: number;
|
|
30
|
-
despar: string;
|
|
31
|
-
desmun: string;
|
|
32
|
-
desest: string;
|
|
33
|
-
despai: string;
|
|
34
|
-
cliesp: number;
|
|
35
|
-
limitecredito: number;
|
|
36
|
-
}
|