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
|
@@ -0,0 +1,1743 @@
|
|
|
1
|
+
import { ICargoOrganigrama, INominaSimple } from './Nomina';
|
|
2
|
+
|
|
3
|
+
export interface IConfiguracionSNO {
|
|
4
|
+
id_empresa: string,
|
|
5
|
+
id_enterprise: string,
|
|
6
|
+
id_sno: string,
|
|
7
|
+
estcamdensueint: string,
|
|
8
|
+
densueint: string,
|
|
9
|
+
desvacnom: string,
|
|
10
|
+
metvac: string,
|
|
11
|
+
estreportvac: string,
|
|
12
|
+
persalmesantfecven: string,
|
|
13
|
+
preperdesnomvac: string,
|
|
14
|
+
valparnom: string,
|
|
15
|
+
agrucontable: string,
|
|
16
|
+
ctaconreggasxpag: string,
|
|
17
|
+
id_proveedor: string,
|
|
18
|
+
nompro: string,
|
|
19
|
+
rifpro: string,
|
|
20
|
+
tippro: string,
|
|
21
|
+
tipconnom: string,
|
|
22
|
+
genrecdocnom: string,
|
|
23
|
+
id_tipdocnom: string,
|
|
24
|
+
sc_cuenta: string,
|
|
25
|
+
gennotdebbco: string,
|
|
26
|
+
genrecdoccausa: string,
|
|
27
|
+
id_tipdoccausa: string,
|
|
28
|
+
rdautpagperche: string,
|
|
29
|
+
tipconapo: string,
|
|
30
|
+
genrecdocapo: string,
|
|
31
|
+
id_tipdocapo: string,
|
|
32
|
+
agruretapo: string,
|
|
33
|
+
id_tipdocpagper: string,
|
|
34
|
+
tipconps: string,
|
|
35
|
+
genrecdocpresoc: string,
|
|
36
|
+
id_tipdocpresoc: string,
|
|
37
|
+
id_beneficiario: string,
|
|
38
|
+
cedben: string,
|
|
39
|
+
ordenar_constantes: string,
|
|
40
|
+
ordenar_conceptos: string,
|
|
41
|
+
excpersuspostcalrep: string,
|
|
42
|
+
noperrepnomnor: string,
|
|
43
|
+
fectopfinano: string,
|
|
44
|
+
metcalpreant: string,
|
|
45
|
+
codconsueant: string,
|
|
46
|
+
confprestamo: string,
|
|
47
|
+
camuniadmnomrac: string,
|
|
48
|
+
campasogradonomrac: string,
|
|
49
|
+
camdedtippernomrac: string,
|
|
50
|
+
camsuenomobrrac: string,
|
|
51
|
+
incperautmodben: string,
|
|
52
|
+
sc_contableben: string,
|
|
53
|
+
impcodunirac: string,
|
|
54
|
+
comauttabrac: string,
|
|
55
|
+
ajusuecom: string,
|
|
56
|
+
moddatpen: string,
|
|
57
|
+
cuoprestnomaysue: string,
|
|
58
|
+
alfanumcodper: string,
|
|
59
|
+
vallonctaban: string,
|
|
60
|
+
lonctaban: string,
|
|
61
|
+
nomulprestamo: string,
|
|
62
|
+
sobregiroctapercalnom: string,
|
|
63
|
+
percobmoncero: string,
|
|
64
|
+
genpagdirpercobcheq: string,
|
|
65
|
+
id_banco: string,
|
|
66
|
+
id_ctabanco: string,
|
|
67
|
+
numempivss: string,
|
|
68
|
+
metivss: string,
|
|
69
|
+
notomarnomesp: string,
|
|
70
|
+
dirtalhum:string,
|
|
71
|
+
ceddirtalhum:string,
|
|
72
|
+
codorgfpj:string,
|
|
73
|
+
metfpj:string,
|
|
74
|
+
parfpjxedaano:string,
|
|
75
|
+
edadpermasfpj:string,
|
|
76
|
+
edadperfemfpj:string,
|
|
77
|
+
anoserminfpj:string,
|
|
78
|
+
anosermaxfpj:string,
|
|
79
|
+
metrpvyh:string,
|
|
80
|
+
bancorpvyh:string,
|
|
81
|
+
cuentarpvyh:string,
|
|
82
|
+
difconxnom:string,
|
|
83
|
+
consueintbanxlote: string,
|
|
84
|
+
consalbasfjtss:string,
|
|
85
|
+
concomxantfjtss:string,
|
|
86
|
+
concomxefifjtss:string,
|
|
87
|
+
conxotrprifjtss:string,
|
|
88
|
+
metfpa:string,
|
|
89
|
+
antcompreant:string,
|
|
90
|
+
fraalipreant:string,
|
|
91
|
+
alibonvacalibonfinano:string,
|
|
92
|
+
aplasiextsuedia:string,
|
|
93
|
+
metfps:string,
|
|
94
|
+
incdiaadibonvac:string,
|
|
95
|
+
calintpreant:string,
|
|
96
|
+
calintperconf:string,
|
|
97
|
+
pormaxantpresoc:string,
|
|
98
|
+
id_tipdoc_anticipo:string,
|
|
99
|
+
calperactmesps:string,
|
|
100
|
+
acumintdiaadips:string,
|
|
101
|
+
diaadiano97ps:string,
|
|
102
|
+
metalibonvac:string,
|
|
103
|
+
antcompriano:string,
|
|
104
|
+
formcalpsl:string,
|
|
105
|
+
salnordgvquidia:string,
|
|
106
|
+
salnordgvdiaadi:string,
|
|
107
|
+
salnordgvvac:string,
|
|
108
|
+
metresconman:string,
|
|
109
|
+
actbloforcon:string,
|
|
110
|
+
dentipden:string,
|
|
111
|
+
nomban:string,
|
|
112
|
+
ctabanco:string,
|
|
113
|
+
ctabanco_cvh:string,
|
|
114
|
+
nomban_cvh:string,
|
|
115
|
+
id_conceptovac:string,
|
|
116
|
+
id_conceptofpj:string,
|
|
117
|
+
id_conceptofpa:string,
|
|
118
|
+
id_conceptorpvyh:string,
|
|
119
|
+
codconvac:string,
|
|
120
|
+
codconfpj:string,
|
|
121
|
+
codconfpa:string,
|
|
122
|
+
codconrpvyh:string,
|
|
123
|
+
cueconman:string,
|
|
124
|
+
regperinc:string,
|
|
125
|
+
regferinc:string,
|
|
126
|
+
regasiinc:string,
|
|
127
|
+
manindmod:string,
|
|
128
|
+
digcodcon:string,
|
|
129
|
+
regdesinc:string,
|
|
130
|
+
reglabinc:string,
|
|
131
|
+
incbenperautmodben:string,
|
|
132
|
+
sc_cuentarecdoc:string,
|
|
133
|
+
prosuehis:string,
|
|
134
|
+
altvoldat:string,
|
|
135
|
+
horjorlab:string,
|
|
136
|
+
regcaninc:string,
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface IIncidencia {
|
|
142
|
+
valor: string,
|
|
143
|
+
denominacion: string,
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface IPersonal {
|
|
147
|
+
id_enterprise: string,
|
|
148
|
+
id_empresa:number,
|
|
149
|
+
id_personal:number,
|
|
150
|
+
codper:string,
|
|
151
|
+
cedper:string,
|
|
152
|
+
rifper:string,
|
|
153
|
+
nomper:string,
|
|
154
|
+
apeper:string,
|
|
155
|
+
fecnacper:string,
|
|
156
|
+
codpainac:string,
|
|
157
|
+
codestnac:string,
|
|
158
|
+
nacper:string,
|
|
159
|
+
estcivper:string,
|
|
160
|
+
telhabper:string,
|
|
161
|
+
telmovper:string,
|
|
162
|
+
coreleper:string,
|
|
163
|
+
dirper:string,
|
|
164
|
+
codpai:string,
|
|
165
|
+
codest:string,
|
|
166
|
+
codmun:string,
|
|
167
|
+
codpar:string,
|
|
168
|
+
sexper:string,
|
|
169
|
+
numhijper:number,
|
|
170
|
+
contra:number,
|
|
171
|
+
cedbenper:string,
|
|
172
|
+
estatura:number,
|
|
173
|
+
peso:number,
|
|
174
|
+
tallcam:string,
|
|
175
|
+
tallpan:string,
|
|
176
|
+
tallzap:string,
|
|
177
|
+
id_profesion:number,
|
|
178
|
+
nivacaper:string,
|
|
179
|
+
id_componente:number,
|
|
180
|
+
id_rango:number,
|
|
181
|
+
fotper:string,
|
|
182
|
+
obsper:string,
|
|
183
|
+
estper:string,
|
|
184
|
+
id_claper:number,
|
|
185
|
+
turper:string,
|
|
186
|
+
horper:string,
|
|
187
|
+
hcmper:number,
|
|
188
|
+
tipsanper:string,
|
|
189
|
+
numexpper:string,
|
|
190
|
+
caroriper:string,
|
|
191
|
+
tipvivper:number,
|
|
192
|
+
tenvivper:string,
|
|
193
|
+
monpagvivper:number,
|
|
194
|
+
estcajaho:number,
|
|
195
|
+
cuecajahoper:string,
|
|
196
|
+
porcajaho:number,
|
|
197
|
+
cuelphper:string,
|
|
198
|
+
cuefidper:string,
|
|
199
|
+
estsindicato:number,
|
|
200
|
+
fecingadmpubper,
|
|
201
|
+
anoservprefijo:number,
|
|
202
|
+
anoservprecont:number,
|
|
203
|
+
anoperobr:number,
|
|
204
|
+
anoservpreper:number,
|
|
205
|
+
messervpreper:number,
|
|
206
|
+
diaservpreper:number,
|
|
207
|
+
fecingper:string,
|
|
208
|
+
fecreingper:string,
|
|
209
|
+
fecjubper:string,
|
|
210
|
+
fecegrper:string,
|
|
211
|
+
cauegrper:string,
|
|
212
|
+
obsegrper:string,
|
|
213
|
+
preaviso:string,
|
|
214
|
+
feclossfan:string,
|
|
215
|
+
situacion:string,
|
|
216
|
+
fecsitu:string,
|
|
217
|
+
id_causales:number,
|
|
218
|
+
fecregsis:string,
|
|
219
|
+
codusu:string,
|
|
220
|
+
observacion:string,
|
|
221
|
+
id_cenmedss:number,
|
|
222
|
+
id_tipopersonal:number,
|
|
223
|
+
codcom:string,
|
|
224
|
+
dencom:string,
|
|
225
|
+
codran:string,
|
|
226
|
+
denran:string,
|
|
227
|
+
codcenmedss:string,
|
|
228
|
+
dencenmedss:string,
|
|
229
|
+
codtipper:string,
|
|
230
|
+
dentipper:string,
|
|
231
|
+
codcau:string,
|
|
232
|
+
dencau:string
|
|
233
|
+
id_proveedorbeneficiario:string,
|
|
234
|
+
id_sindicato:string,
|
|
235
|
+
codsin:string,
|
|
236
|
+
densin:string,
|
|
237
|
+
conapdis:string,
|
|
238
|
+
despai:string,
|
|
239
|
+
desest:string,
|
|
240
|
+
desmun:string,
|
|
241
|
+
despar:string,
|
|
242
|
+
despai_nac:string,
|
|
243
|
+
desest_nac:string,
|
|
244
|
+
id_puetra:string;
|
|
245
|
+
codpuetra?:string,
|
|
246
|
+
despuetra?:string,
|
|
247
|
+
id_hora:string,
|
|
248
|
+
id_planhor:string,
|
|
249
|
+
fecdef:string,
|
|
250
|
+
fecactdef:string,
|
|
251
|
+
numactdef:string,
|
|
252
|
+
codmunnac: string,
|
|
253
|
+
codparnac: string,
|
|
254
|
+
id_perper:string,
|
|
255
|
+
codperper:string,
|
|
256
|
+
denperper:string,
|
|
257
|
+
id_ruta:string,
|
|
258
|
+
cenvot:string,
|
|
259
|
+
punref:string,
|
|
260
|
+
denrut?:string,
|
|
261
|
+
codpro?: string,
|
|
262
|
+
denpro?: string,
|
|
263
|
+
monpen?:string,
|
|
264
|
+
codplanhor?:string,
|
|
265
|
+
denplanhor?:string,
|
|
266
|
+
horini?:string,
|
|
267
|
+
horfin?:string,
|
|
268
|
+
codclaper?:string,
|
|
269
|
+
denclaper?:string,
|
|
270
|
+
desmunnac?: string,
|
|
271
|
+
desparnac?: string,
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface ICambioEstatusPersonal{
|
|
279
|
+
id_enterprise: string,
|
|
280
|
+
id_empresa:number,
|
|
281
|
+
idPersonal: number,
|
|
282
|
+
codigoPersonal: string,
|
|
283
|
+
estatusActual: string,
|
|
284
|
+
estatusNuevo: string,
|
|
285
|
+
fechaEgreso: string,
|
|
286
|
+
causaEgreso: string,
|
|
287
|
+
preaviso: string,
|
|
288
|
+
idCausales: number,
|
|
289
|
+
observacion: string,
|
|
290
|
+
fechaReingreso: string,
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface ICargaMasiva {
|
|
294
|
+
proceso: string,
|
|
295
|
+
id_nomina: number,
|
|
296
|
+
tipo: string,
|
|
297
|
+
nombreArchivo: string,
|
|
298
|
+
base64textString: string,
|
|
299
|
+
modulo:string
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
export interface IArchivoTXT {
|
|
303
|
+
nombrearchivo: string
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
export interface ICargosPersonal {
|
|
307
|
+
id_enterprise: string,
|
|
308
|
+
id_empresa:number,
|
|
309
|
+
id_personal:string,
|
|
310
|
+
id_carper:string,
|
|
311
|
+
id_tabulador:string,
|
|
312
|
+
codgra:string,
|
|
313
|
+
codpas:string,
|
|
314
|
+
id_ubifis:string,
|
|
315
|
+
id_personalcargo:string,
|
|
316
|
+
id_claper:string,
|
|
317
|
+
id_organigrama:string,
|
|
318
|
+
codubifis?:string,
|
|
319
|
+
denubifis?:string,
|
|
320
|
+
codtipper?:string,
|
|
321
|
+
id_dedicacion:string,
|
|
322
|
+
id_tipopersonal:string,
|
|
323
|
+
id_puetra:string,
|
|
324
|
+
estatus:string,
|
|
325
|
+
fecasi:string,
|
|
326
|
+
fecces:string,
|
|
327
|
+
codcar?:string,
|
|
328
|
+
descar?:string,
|
|
329
|
+
codded?: string,
|
|
330
|
+
dended?: string,
|
|
331
|
+
dentipper?:string,
|
|
332
|
+
codtab?:string,
|
|
333
|
+
destab?:string,
|
|
334
|
+
monsalgra?:string,
|
|
335
|
+
moncomgra?:string,
|
|
336
|
+
estmpppe?:string,
|
|
337
|
+
codcladoc?:string,
|
|
338
|
+
dencladec?:string,
|
|
339
|
+
detalles_nomina?:INominaSimple[],
|
|
340
|
+
codclaper?:string,
|
|
341
|
+
denclaper?:string,
|
|
342
|
+
codestorg?:string,
|
|
343
|
+
denestorg?:string,
|
|
344
|
+
despuetra?:string,
|
|
345
|
+
codpuetra?:string,
|
|
346
|
+
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
export interface IFamiliares {
|
|
350
|
+
id_enterprise: string,
|
|
351
|
+
id_empresa:number,
|
|
352
|
+
id_personal: string,
|
|
353
|
+
id_familiar: string,
|
|
354
|
+
cedfam: string,
|
|
355
|
+
nomfam: string,
|
|
356
|
+
apefam: string,
|
|
357
|
+
sexfam: string,
|
|
358
|
+
fecnacfam: string,
|
|
359
|
+
nexfam:string,
|
|
360
|
+
estfam: string,
|
|
361
|
+
hcfam: string,
|
|
362
|
+
hcmfam: string,
|
|
363
|
+
hijesp: string,
|
|
364
|
+
estbonjug: string,
|
|
365
|
+
estbec: string,
|
|
366
|
+
nivaca: string,
|
|
367
|
+
codfam:string,
|
|
368
|
+
dirfam:string,
|
|
369
|
+
telfam:string,
|
|
370
|
+
hijodiscapacitado:string,
|
|
371
|
+
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
export interface IEstudioRealizado {
|
|
375
|
+
id_enterprise: string,
|
|
376
|
+
id_empresa:number,
|
|
377
|
+
id_personal:string,
|
|
378
|
+
id_estudio:string,
|
|
379
|
+
codestrea:string,
|
|
380
|
+
tipestrea:string,
|
|
381
|
+
insestrea:string,
|
|
382
|
+
desestrea:string,
|
|
383
|
+
titestrea:string,
|
|
384
|
+
calestrea:number,
|
|
385
|
+
escval:string,
|
|
386
|
+
fecinireaest:string,
|
|
387
|
+
fecfinestrea:string,
|
|
388
|
+
fecgraestrea:string,
|
|
389
|
+
aprestrea:string,
|
|
390
|
+
anoaprestrea:string,
|
|
391
|
+
horestrea:string,
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export interface ITrabajoAnterior {
|
|
395
|
+
id_enterprise: string,
|
|
396
|
+
id_empresa:number,
|
|
397
|
+
id_personal:number,
|
|
398
|
+
id_trabajoant:number,
|
|
399
|
+
emptraant:string,
|
|
400
|
+
ultcartraant:string,
|
|
401
|
+
ultsuetraant:number,
|
|
402
|
+
fecingtraant:string,
|
|
403
|
+
fecrettraant:string,
|
|
404
|
+
emppubtraant:number,
|
|
405
|
+
id_dedicacion:number,
|
|
406
|
+
anolab:number,
|
|
407
|
+
meslab:number,
|
|
408
|
+
dialab:number,
|
|
409
|
+
codtraant:string,
|
|
410
|
+
dended:string,
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export interface IImpuestoSobreRenta {
|
|
414
|
+
id_enterprise: string,
|
|
415
|
+
id_empresa:number,
|
|
416
|
+
id_personal: number,
|
|
417
|
+
id_isr: number,
|
|
418
|
+
porisr: number,
|
|
419
|
+
id_conret: number,
|
|
420
|
+
enero: number,
|
|
421
|
+
febrero: number,
|
|
422
|
+
marzo: number,
|
|
423
|
+
abril: number,
|
|
424
|
+
mayo: number,
|
|
425
|
+
junio: number,
|
|
426
|
+
julio: number,
|
|
427
|
+
agosto: number,
|
|
428
|
+
septiembre: number,
|
|
429
|
+
octubre: number,
|
|
430
|
+
noviembre: number,
|
|
431
|
+
diciembre: number,
|
|
432
|
+
desact:string,
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export interface IFideicomiso{
|
|
436
|
+
id_enterprise: string,
|
|
437
|
+
id_empresa:number,
|
|
438
|
+
id_personal:string,
|
|
439
|
+
id_fideicomiso:string,
|
|
440
|
+
codfid:string,
|
|
441
|
+
ficfid:string,
|
|
442
|
+
id_ctabanper:string,
|
|
443
|
+
fecingfid:string,
|
|
444
|
+
capfid:string,
|
|
445
|
+
capantcom:string,
|
|
446
|
+
fecconpreant:string,
|
|
447
|
+
conpreant:string,
|
|
448
|
+
porintcap:number,
|
|
449
|
+
scg_cuentafid:string,
|
|
450
|
+
scg_cuentaintfid:string,
|
|
451
|
+
calintfid:number,
|
|
452
|
+
id_ubifis:string,
|
|
453
|
+
denubifis?:string,
|
|
454
|
+
codubifis?:string,
|
|
455
|
+
ctabanper?:string,}
|
|
456
|
+
|
|
457
|
+
export interface IDeudaAnterior{
|
|
458
|
+
id_enterprise: string,
|
|
459
|
+
id_empresa:number,
|
|
460
|
+
id_personal:number,
|
|
461
|
+
feccordeu:string,
|
|
462
|
+
monpreant:string,
|
|
463
|
+
monint:number,
|
|
464
|
+
monant:number,
|
|
465
|
+
monantint:number,
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
export interface ISalarioHistorico {
|
|
469
|
+
id_enterprise: string,
|
|
470
|
+
id_empresa:number,
|
|
471
|
+
id_personal: string,
|
|
472
|
+
id_dedicacion: string,
|
|
473
|
+
id_tipopersonal: string,
|
|
474
|
+
id_dt_sueldoh:string,
|
|
475
|
+
fecsue: string,
|
|
476
|
+
suebas: string,
|
|
477
|
+
sueint: string,
|
|
478
|
+
sueprodia: string,
|
|
479
|
+
bonvac: string,
|
|
480
|
+
bonfianio: string,
|
|
481
|
+
otrasig: string,
|
|
482
|
+
confij: string,
|
|
483
|
+
convar: string,
|
|
484
|
+
alibonvac: string,
|
|
485
|
+
alibonfinanio: string,
|
|
486
|
+
dended:string,
|
|
487
|
+
dentipper:string,
|
|
488
|
+
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
export interface IBenefiaciario {
|
|
492
|
+
id_enterprise: string,
|
|
493
|
+
id_empresa:number,
|
|
494
|
+
id_personal:string,
|
|
495
|
+
id_familiar:string,
|
|
496
|
+
id_proveedor:string,
|
|
497
|
+
id_tipocta:string,
|
|
498
|
+
codben:string,
|
|
499
|
+
id_banco:string,
|
|
500
|
+
tipben:string,
|
|
501
|
+
porpagben:string,
|
|
502
|
+
monpagben:string,
|
|
503
|
+
ctabanben:string,
|
|
504
|
+
forpagben:string,
|
|
505
|
+
numexpben:string,
|
|
506
|
+
medact:string,
|
|
507
|
+
tribunal:string,
|
|
508
|
+
fecres:string,
|
|
509
|
+
numres:string,
|
|
510
|
+
cedpro:string,
|
|
511
|
+
nompro:string,
|
|
512
|
+
nomfam:string,
|
|
513
|
+
dirpro: string,
|
|
514
|
+
telpro: string,
|
|
515
|
+
codpai: string,
|
|
516
|
+
codest: string,
|
|
517
|
+
codmun: string,
|
|
518
|
+
codpar: string,
|
|
519
|
+
id_dt_ben:string,
|
|
520
|
+
rifpro:string,
|
|
521
|
+
sc_cuentarecdoc:string,
|
|
522
|
+
id_ctabcoprov:string,
|
|
523
|
+
despai?: string,
|
|
524
|
+
desest?: string,
|
|
525
|
+
desmun?: string,
|
|
526
|
+
despar?: string,
|
|
527
|
+
nomtipcta?:string,
|
|
528
|
+
nomban?:string,
|
|
529
|
+
apefam?:string,
|
|
530
|
+
cedfam?:string,
|
|
531
|
+
nexfam?:string,
|
|
532
|
+
dirfam?:string,
|
|
533
|
+
telfam?:string,
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
export interface IVacacionesPersonal {
|
|
540
|
+
id_enterprise: string,
|
|
541
|
+
id_empresa:number,
|
|
542
|
+
id_personal:string,
|
|
543
|
+
id_vacper:string,
|
|
544
|
+
codvac:string,
|
|
545
|
+
fecvenvac:string,
|
|
546
|
+
fecdisvac:string,
|
|
547
|
+
fecreivac:string,
|
|
548
|
+
stavac:string,
|
|
549
|
+
sueintvac:number,
|
|
550
|
+
sueintbonvac:number,
|
|
551
|
+
diavac:string,
|
|
552
|
+
diabonvac:string,
|
|
553
|
+
diapenvac:string,
|
|
554
|
+
persalvac:string,
|
|
555
|
+
peringvac:string,
|
|
556
|
+
dianorvac:string,
|
|
557
|
+
quisalvac:string,
|
|
558
|
+
quireivac:string,
|
|
559
|
+
diaadicvac:string,
|
|
560
|
+
diaadibon:string,
|
|
561
|
+
diafer:string,
|
|
562
|
+
diapag:string,
|
|
563
|
+
sabdom:string,
|
|
564
|
+
pagcan:string,
|
|
565
|
+
diapervac:string,
|
|
566
|
+
pagpersal:string,
|
|
567
|
+
calpagvac:string,
|
|
568
|
+
candiaadi:string,
|
|
569
|
+
obsvac:string,
|
|
570
|
+
codusu:string,
|
|
571
|
+
diavaccal:string,
|
|
572
|
+
diahab:string,
|
|
573
|
+
profueper:string,
|
|
574
|
+
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
export interface IAnticipoPrestacion {
|
|
578
|
+
id_enterprise: string,
|
|
579
|
+
id_empresa:number,
|
|
580
|
+
id_personal:number,
|
|
581
|
+
id_anticipops:number,
|
|
582
|
+
codant:string,
|
|
583
|
+
estant:number,
|
|
584
|
+
fecant:string,
|
|
585
|
+
monpreant:number,
|
|
586
|
+
monintant:number,
|
|
587
|
+
monantant:number,
|
|
588
|
+
monantint:number,
|
|
589
|
+
porant:number,
|
|
590
|
+
porint:number,
|
|
591
|
+
monant:number,
|
|
592
|
+
monint:number,
|
|
593
|
+
motant:string,
|
|
594
|
+
obsant:string,
|
|
595
|
+
codusu:string,
|
|
596
|
+
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
export interface IPersonalCuentasBancarias {
|
|
600
|
+
id_enterprise: string,
|
|
601
|
+
id_empresa:number,
|
|
602
|
+
id_personal:string,
|
|
603
|
+
id_ctabanper:string,
|
|
604
|
+
codctabanper:string,
|
|
605
|
+
denctabanper:string,
|
|
606
|
+
id_banco:string,
|
|
607
|
+
id_tipocta:string,
|
|
608
|
+
ctabanper:string,
|
|
609
|
+
estctabco:string,
|
|
610
|
+
tipctapri:string,
|
|
611
|
+
nomban?:string,
|
|
612
|
+
nomtipcta?:string,
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
export interface IPrestacionesAntiguedad {
|
|
616
|
+
id_enterprise: string,
|
|
617
|
+
id_empresa:number,
|
|
618
|
+
id_personal:string,
|
|
619
|
+
id_fideicomiso:string,
|
|
620
|
+
anocurper:string,
|
|
621
|
+
mescurper:string,
|
|
622
|
+
sueintper:number,
|
|
623
|
+
bonextper:number,
|
|
624
|
+
bonvacper:number,
|
|
625
|
+
bonfinper:number,
|
|
626
|
+
apoper:number,
|
|
627
|
+
diafid:number,
|
|
628
|
+
diaadi:number,
|
|
629
|
+
metodopre:string,
|
|
630
|
+
metodoadi:string,
|
|
631
|
+
bonvacadiper:number,
|
|
632
|
+
bonfinadiper:number,
|
|
633
|
+
sueintadiper:number,
|
|
634
|
+
apopreper:number,
|
|
635
|
+
apoadiper:number,
|
|
636
|
+
codusu:string,
|
|
637
|
+
id_dt_fideiperiodo:string,
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
export interface IFuenteFinanciamiento {
|
|
641
|
+
id_enterprise: string,
|
|
642
|
+
id_empresa:number,
|
|
643
|
+
id_fuefin: number;
|
|
644
|
+
denfuefin: string;
|
|
645
|
+
expfuefin: string;
|
|
646
|
+
codigoftefin: string;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
export interface IDialogData {
|
|
650
|
+
codigo: string;
|
|
651
|
+
denominacion: string;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
export interface ICargaFamiliar{
|
|
655
|
+
id_enterprise: string,
|
|
656
|
+
id_empresa:number,
|
|
657
|
+
id_concurso: string,
|
|
658
|
+
id_concursante: string,
|
|
659
|
+
id_familiacon: string,
|
|
660
|
+
codfam: string,
|
|
661
|
+
cedfam: string,
|
|
662
|
+
nomfam: string,
|
|
663
|
+
apefam: string,
|
|
664
|
+
sexfam: string,
|
|
665
|
+
nexfam: string,
|
|
666
|
+
fecnacfam: string
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
export interface IClasificacionObrero {
|
|
670
|
+
id_enterprise: string,
|
|
671
|
+
id_empresa:number,
|
|
672
|
+
id_claobr: string,
|
|
673
|
+
grado: string,
|
|
674
|
+
suemin: number,
|
|
675
|
+
suemax: number,
|
|
676
|
+
tipcla: string,
|
|
677
|
+
anovig: string,
|
|
678
|
+
numgac: string,
|
|
679
|
+
obscla: string
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
export interface ICampos{
|
|
683
|
+
valor:string
|
|
684
|
+
denominacion: string
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
export interface IFormacionAcademica{
|
|
690
|
+
id_enterprise: string,
|
|
691
|
+
id_empresa:number,
|
|
692
|
+
id_concurso: string,
|
|
693
|
+
id_concursante: string,
|
|
694
|
+
id_estudiocon: string,
|
|
695
|
+
codestrea: string,
|
|
696
|
+
insestper: string,
|
|
697
|
+
desestper: string,
|
|
698
|
+
fecinireaest: string,
|
|
699
|
+
fecfinestrea: string,
|
|
700
|
+
titestper: string,
|
|
701
|
+
anoaprestper: string
|
|
702
|
+
}
|
|
703
|
+
export interface IFormacionInformal{
|
|
704
|
+
id_enterprise: string,
|
|
705
|
+
id_empresa:number,
|
|
706
|
+
id_concurso: string,
|
|
707
|
+
id_concursante: string,
|
|
708
|
+
id_curso: string,
|
|
709
|
+
codcur: string,
|
|
710
|
+
desestrea: string,
|
|
711
|
+
horestrea: string,
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
export interface IRequisitosConcursante{
|
|
717
|
+
id_enterprise: string,
|
|
718
|
+
id_empresa:number,
|
|
719
|
+
id_concurso: string,
|
|
720
|
+
id_concursante: string,
|
|
721
|
+
id_reqcon: string,
|
|
722
|
+
codreqcon: string,
|
|
723
|
+
denreqcon: string,
|
|
724
|
+
cantreq: string,
|
|
725
|
+
entreqcon: string,
|
|
726
|
+
canentreqcon: string
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
export interface IRequisitosConcursos{
|
|
730
|
+
id_enterprise: string,
|
|
731
|
+
id_empresa:number,
|
|
732
|
+
id_concurso: string,
|
|
733
|
+
id_reqcon: string,
|
|
734
|
+
codreqcon: string,
|
|
735
|
+
denreqcon: string,
|
|
736
|
+
cantreq: string,
|
|
737
|
+
reqindcon: string,
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
export interface IRequisitosMinismos {
|
|
742
|
+
id_enterprise: string,
|
|
743
|
+
id_empresa:number,
|
|
744
|
+
id_concurso:string,
|
|
745
|
+
id_tipoeval:string,
|
|
746
|
+
id_reqmin:string,
|
|
747
|
+
id_concursante:string,
|
|
748
|
+
codper:string,
|
|
749
|
+
feceva:string,
|
|
750
|
+
punreqmin:string,
|
|
751
|
+
codtipeval:string,
|
|
752
|
+
dentipeval:string,
|
|
753
|
+
dencon:string,
|
|
754
|
+
codcon:string,
|
|
755
|
+
nomper:string,
|
|
756
|
+
apeper:string,
|
|
757
|
+
items:IDtRequisitosMinimos[],
|
|
758
|
+
eliminar_detalle:number[],
|
|
759
|
+
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
export interface IDtRequisitosMinimos {
|
|
763
|
+
id_enterprise: string,
|
|
764
|
+
id_empresa:number,
|
|
765
|
+
id_concurso:string,
|
|
766
|
+
id_tipoeval:string,
|
|
767
|
+
id_aspecto:string,
|
|
768
|
+
id_item:string,
|
|
769
|
+
id_dt_req:string,
|
|
770
|
+
id_reqmin:string,
|
|
771
|
+
id_concursante:string,
|
|
772
|
+
puntos:string,
|
|
773
|
+
codite:string,
|
|
774
|
+
denite:string,
|
|
775
|
+
valormax:string,
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
export interface ISolicitudEmpleo{
|
|
779
|
+
id_enterprise: string,
|
|
780
|
+
id_empresa:number,
|
|
781
|
+
id_solempleo: string,
|
|
782
|
+
nrosol: string,
|
|
783
|
+
cedsol: string,
|
|
784
|
+
fecsol: string,
|
|
785
|
+
apesol: string,
|
|
786
|
+
nomsol: string,
|
|
787
|
+
nomape: string,
|
|
788
|
+
sexsol: string,
|
|
789
|
+
fecnac: string,
|
|
790
|
+
telhab: string,
|
|
791
|
+
email: string,
|
|
792
|
+
id_profesion: string,
|
|
793
|
+
codpro: string,
|
|
794
|
+
denpro: string,
|
|
795
|
+
carfam: string,
|
|
796
|
+
id_nivsel: string,
|
|
797
|
+
codnivsel: string,
|
|
798
|
+
dennivsel: string,
|
|
799
|
+
nivacasol: string,
|
|
800
|
+
codpai: string,
|
|
801
|
+
despai: string,
|
|
802
|
+
codest: string,
|
|
803
|
+
desest: string,
|
|
804
|
+
codmun: string,
|
|
805
|
+
desmun: string,
|
|
806
|
+
codpar: string,
|
|
807
|
+
despar: string,
|
|
808
|
+
dirsol: string,
|
|
809
|
+
telmov: string,
|
|
810
|
+
estciv: string,
|
|
811
|
+
nacsol: string,
|
|
812
|
+
estasol: string,
|
|
813
|
+
pessol: string,
|
|
814
|
+
comsol: string
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
export interface IAcademico {
|
|
818
|
+
value: number;
|
|
819
|
+
descripcion: string;
|
|
820
|
+
};
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
export interface ITabulador {
|
|
824
|
+
id_enterprise: string,
|
|
825
|
+
id_empresa:number,
|
|
826
|
+
id_tabulador: string,
|
|
827
|
+
codtab: string,
|
|
828
|
+
destab: string,
|
|
829
|
+
maxpasgra: string,
|
|
830
|
+
tabmed: string,
|
|
831
|
+
detalles: IGrados[],
|
|
832
|
+
detalles_nomina: ITabuladorNomina[],
|
|
833
|
+
eliminar_grado:number[],
|
|
834
|
+
eliminar_nomina:number[],
|
|
835
|
+
eliminar_prima:number[],
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
export interface ITabuladorNomina {
|
|
839
|
+
id_enterprise: string,
|
|
840
|
+
id_empresa:number,
|
|
841
|
+
id_tabulador:string,
|
|
842
|
+
id_nomina:string,
|
|
843
|
+
id_dt_tabnom:string,
|
|
844
|
+
codnom?:string,
|
|
845
|
+
dennom?:string,
|
|
846
|
+
estnom?:string,
|
|
847
|
+
peractnom?:string,
|
|
848
|
+
id_periodoactual?:string,
|
|
849
|
+
racnom?:string,
|
|
850
|
+
despernom?:string,
|
|
851
|
+
prenomina?:string,
|
|
852
|
+
calculado?:string,
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
export interface IGrados {
|
|
856
|
+
id_enterprise: string,
|
|
857
|
+
id_empresa:number,
|
|
858
|
+
id_tabulador: string,
|
|
859
|
+
codgra: string,
|
|
860
|
+
codpas: string,
|
|
861
|
+
monsalgra: string,
|
|
862
|
+
moncomgra: string,
|
|
863
|
+
aniodes: string,
|
|
864
|
+
aniohas: string,
|
|
865
|
+
id_dt_grado: string,
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
export interface IPrimaGrados {
|
|
869
|
+
id_enterprise: string,
|
|
870
|
+
id_empresa:number,
|
|
871
|
+
id_tabulador: string,
|
|
872
|
+
codgra: string,
|
|
873
|
+
codpas: string,
|
|
874
|
+
codpri: string,
|
|
875
|
+
despri: string,
|
|
876
|
+
monpri: string,
|
|
877
|
+
id_dt_prima: string
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
export interface IDefinicionesBasicas{
|
|
881
|
+
id_enterprise: string,
|
|
882
|
+
id_empresa:number,
|
|
883
|
+
id:string,
|
|
884
|
+
coddef:string,
|
|
885
|
+
dendef:string,
|
|
886
|
+
tipo:string,
|
|
887
|
+
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
export interface IFeriados{
|
|
891
|
+
id_feriado:string,
|
|
892
|
+
diafer:string,
|
|
893
|
+
mesfer:string,
|
|
894
|
+
annofer:string,
|
|
895
|
+
nomfer:string,
|
|
896
|
+
tipfer:string,
|
|
897
|
+
codpai:string,
|
|
898
|
+
codest:string,
|
|
899
|
+
codmun:string,
|
|
900
|
+
codpar:string,
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
export interface IEscalaEvaluacion {
|
|
904
|
+
id_enterprise: string,
|
|
905
|
+
id_empresa:number,
|
|
906
|
+
id_escala : string,
|
|
907
|
+
codesc: string,
|
|
908
|
+
denesc: string,
|
|
909
|
+
valiniesc:number,
|
|
910
|
+
valfinesc:number,
|
|
911
|
+
detalles:IEscalaEvaluacionDt[],
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
export interface IEscalaEvaluacionDt {
|
|
915
|
+
id_enterprise: string,
|
|
916
|
+
id_empresa:number,
|
|
917
|
+
id_escala : string,
|
|
918
|
+
coddetesc: string,
|
|
919
|
+
dendetesc: string,
|
|
920
|
+
valinidetesc:number,
|
|
921
|
+
valfindetesc:number,
|
|
922
|
+
id_dt_escala:string,
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
export interface IDedicacion {
|
|
926
|
+
id_enterprise: string,
|
|
927
|
+
id_empresa:number,
|
|
928
|
+
id_dedicacion: string,
|
|
929
|
+
codded: string,
|
|
930
|
+
dended: string,
|
|
931
|
+
detalles: ITipoPersonal[],
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
export interface ITipoPersonal {
|
|
935
|
+
id_enterprise: string,
|
|
936
|
+
id_empresa:number,
|
|
937
|
+
id_tipopersonal: string,
|
|
938
|
+
id_dedicacion: string,
|
|
939
|
+
codtipper: string,
|
|
940
|
+
dentipper: string,
|
|
941
|
+
id_dt_tipopersonal: string,
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
export interface ITipoEvaluacion {
|
|
945
|
+
id_enterprise: string,
|
|
946
|
+
id_empresa:number,
|
|
947
|
+
id_tipoeval:string,
|
|
948
|
+
id_escala:string,
|
|
949
|
+
codtipeval:string,
|
|
950
|
+
dentipeval:string,
|
|
951
|
+
codesc: string,
|
|
952
|
+
denesc: string,
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
export interface ITipoEvaluacionAspectos {
|
|
956
|
+
id_enterprise: string,
|
|
957
|
+
id_empresa:number,
|
|
958
|
+
id_tipoeval:string,
|
|
959
|
+
id_escala:string,
|
|
960
|
+
codtipeval:string,
|
|
961
|
+
dentipeval:string,
|
|
962
|
+
codesc: string,
|
|
963
|
+
denesc: string,
|
|
964
|
+
aspecto:IAspectoEvaluacion[],
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
export interface IAspectoEvaluacion {
|
|
968
|
+
id_enterprise: string,
|
|
969
|
+
id_empresa:number,
|
|
970
|
+
id_tipoeval: string,
|
|
971
|
+
id_aspecto: string,
|
|
972
|
+
codasp: string,
|
|
973
|
+
denasp: string,
|
|
974
|
+
codtipeval:string,
|
|
975
|
+
dentipeval:string,
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
export interface IItemsEvaluacion {
|
|
979
|
+
id_enterprise: string,
|
|
980
|
+
id_empresa:number,
|
|
981
|
+
id_tipoeval: string,
|
|
982
|
+
id_aspecto: string,
|
|
983
|
+
id_item: string,
|
|
984
|
+
codite: string,
|
|
985
|
+
denite: string,
|
|
986
|
+
valormax: number,
|
|
987
|
+
codasp: string,
|
|
988
|
+
denasp: string,
|
|
989
|
+
codtipeval:string,
|
|
990
|
+
dentipeval:string,
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
export interface IComponente {
|
|
994
|
+
id_enterprise: string,
|
|
995
|
+
id_empresa:number,
|
|
996
|
+
id_componente:string,
|
|
997
|
+
codcom:string,
|
|
998
|
+
dencom:string,
|
|
999
|
+
nomabr:string,
|
|
1000
|
+
rangos:IRango[],
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
export interface IRango {
|
|
1004
|
+
id_enterprise: string,
|
|
1005
|
+
id_empresa:number,
|
|
1006
|
+
id_componente:string,
|
|
1007
|
+
id_rango:string,
|
|
1008
|
+
codran:string,
|
|
1009
|
+
denran:string,
|
|
1010
|
+
id_catrango:string,
|
|
1011
|
+
nomabr:string,
|
|
1012
|
+
codcatran:string,
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
export interface ITablaVacaciones{
|
|
1016
|
+
id_enterprise: string,
|
|
1017
|
+
id_empresa:number,
|
|
1018
|
+
id_tabvac: string,
|
|
1019
|
+
codtabvac: string,
|
|
1020
|
+
dentabvac: string,
|
|
1021
|
+
pertabvac: string,
|
|
1022
|
+
anoserpre: string,
|
|
1023
|
+
diavaccal: string,
|
|
1024
|
+
periodos: ITablaVacacionesPeriodo[],
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
export interface ITablaVacacionesPeriodo {
|
|
1028
|
+
id_enterprise: string,
|
|
1029
|
+
id_empresa:number,
|
|
1030
|
+
id_tabvac: string,
|
|
1031
|
+
lappervac: string,
|
|
1032
|
+
diadisvac: string,
|
|
1033
|
+
diabonvac: string,
|
|
1034
|
+
diaadidisvac: string,
|
|
1035
|
+
diaadibonvac: string,
|
|
1036
|
+
id_periodo: string,
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
export interface IArchivoTxt{
|
|
1041
|
+
id_enterprise: string,
|
|
1042
|
+
id_empresa:number,
|
|
1043
|
+
id_archivotxt:string,
|
|
1044
|
+
codarch:string,
|
|
1045
|
+
denarch :string,
|
|
1046
|
+
tiparch:string,
|
|
1047
|
+
acumon:string,
|
|
1048
|
+
campos: IArchivoTxtCampos[],
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
export interface IArchivoTxtCampos {
|
|
1052
|
+
id_enterprise: string,
|
|
1053
|
+
id_empresa:number,
|
|
1054
|
+
id_archivotxt:string,
|
|
1055
|
+
codcam: string,
|
|
1056
|
+
descam: string,
|
|
1057
|
+
inicam: string,
|
|
1058
|
+
loncam: string,
|
|
1059
|
+
edicam: string,
|
|
1060
|
+
clacam: string,
|
|
1061
|
+
actcam: string,
|
|
1062
|
+
cricam: string,
|
|
1063
|
+
tabrelcam: string,
|
|
1064
|
+
iterelcam: string,
|
|
1065
|
+
tipcam: string,
|
|
1066
|
+
id_dt_campo:string,
|
|
1067
|
+
}
|
|
1068
|
+
export interface IMetodoBanco {
|
|
1069
|
+
id_enterprise: string,
|
|
1070
|
+
id_empresa:number,
|
|
1071
|
+
id_metbco:string,
|
|
1072
|
+
codmet:string,
|
|
1073
|
+
denmet:string,
|
|
1074
|
+
tipmet:string,
|
|
1075
|
+
id_banco:string,
|
|
1076
|
+
codempnom:string,
|
|
1077
|
+
tipcuecrenom:string,
|
|
1078
|
+
tipcuedebnom:string,
|
|
1079
|
+
codofinom:string,
|
|
1080
|
+
pagtaqnom:string,
|
|
1081
|
+
nroref:string,
|
|
1082
|
+
activo:string,
|
|
1083
|
+
numconnom:string,
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
export interface IMetodos{
|
|
1087
|
+
id_enterprise: string,
|
|
1088
|
+
id_empresa:number,
|
|
1089
|
+
id_metodo:string,
|
|
1090
|
+
codmet:string,
|
|
1091
|
+
denmet:string,
|
|
1092
|
+
monmet:number,
|
|
1093
|
+
metcestic:string,
|
|
1094
|
+
codprod:string,
|
|
1095
|
+
mondesdia:number,
|
|
1096
|
+
nrotarjeta:string,
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
export interface IHorario{
|
|
1100
|
+
id_enterprise: string,
|
|
1101
|
+
id_empresa:number,
|
|
1102
|
+
id_hora:number,
|
|
1103
|
+
codhor:string,
|
|
1104
|
+
denhor:string,
|
|
1105
|
+
tiphor:string,
|
|
1106
|
+
horini:string,
|
|
1107
|
+
horfin:string,
|
|
1108
|
+
horlab:string,
|
|
1109
|
+
hordes:string,
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
export interface IConcursante{
|
|
1113
|
+
id_enterprise: string,
|
|
1114
|
+
id_empresa:number,
|
|
1115
|
+
id_concurso: string,
|
|
1116
|
+
codcon:string,
|
|
1117
|
+
id_concursante: string,
|
|
1118
|
+
cedper: string,
|
|
1119
|
+
id_profesion: string,
|
|
1120
|
+
profesion:string,
|
|
1121
|
+
nombre_profesion:string,
|
|
1122
|
+
fecreg: string,
|
|
1123
|
+
nomper: string,
|
|
1124
|
+
apeper: string,
|
|
1125
|
+
dirper: string,
|
|
1126
|
+
fecnacper: string,
|
|
1127
|
+
estcivper: string,
|
|
1128
|
+
codpai: string,
|
|
1129
|
+
nombre_pais:string,
|
|
1130
|
+
codest: string,
|
|
1131
|
+
nombre_estado:string,
|
|
1132
|
+
nacper: string,
|
|
1133
|
+
telhabper: string,
|
|
1134
|
+
telmovper: string,
|
|
1135
|
+
emaper: string,
|
|
1136
|
+
sexper: string,
|
|
1137
|
+
nivacaper: string,
|
|
1138
|
+
estconper:string
|
|
1139
|
+
|
|
1140
|
+
}
|
|
1141
|
+
export interface IConcurso{
|
|
1142
|
+
id_enterprise: string,
|
|
1143
|
+
id_empresa:number,
|
|
1144
|
+
id_concurso: string,
|
|
1145
|
+
codcon: string,
|
|
1146
|
+
dencon: string,
|
|
1147
|
+
fecapecon: string,
|
|
1148
|
+
fecciecon: string,
|
|
1149
|
+
id_carper: string,
|
|
1150
|
+
codcar: string,
|
|
1151
|
+
descar: string,
|
|
1152
|
+
tipo: string,
|
|
1153
|
+
cantcar: string,
|
|
1154
|
+
estcon: string,
|
|
1155
|
+
detalles_requisitos: IRequisitosConcursos[],
|
|
1156
|
+
eliminar_detalles: number[],
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
export interface IEstructuraOrganizativa{
|
|
1160
|
+
id_enterprise: string,
|
|
1161
|
+
id_empresa:number,
|
|
1162
|
+
id_organigrama: string,
|
|
1163
|
+
id_cencos:string,
|
|
1164
|
+
codestorg: string,
|
|
1165
|
+
denestorg: string,
|
|
1166
|
+
nivel: string,
|
|
1167
|
+
nivpad: string,
|
|
1168
|
+
codcencos: string,
|
|
1169
|
+
dencencos:string,
|
|
1170
|
+
id_ep1: string,
|
|
1171
|
+
id_ep2: string,
|
|
1172
|
+
id_ep3: string,
|
|
1173
|
+
id_ep4: string,
|
|
1174
|
+
id_ep5: string,
|
|
1175
|
+
estructura:string,
|
|
1176
|
+
codpadre: string,
|
|
1177
|
+
denpadre:string,
|
|
1178
|
+
codpai: string,
|
|
1179
|
+
despai: string,
|
|
1180
|
+
codest: string,
|
|
1181
|
+
desest: string,
|
|
1182
|
+
codmun: string,
|
|
1183
|
+
desmun: string,
|
|
1184
|
+
codpar: string,
|
|
1185
|
+
despar: string,
|
|
1186
|
+
estmpppe: number,
|
|
1187
|
+
ubibolivariana: number,
|
|
1188
|
+
ubifrontera: number,
|
|
1189
|
+
ubiindigena: number,
|
|
1190
|
+
ubiinsular: number,
|
|
1191
|
+
ubimarginal: number,
|
|
1192
|
+
ubinocturno: number,
|
|
1193
|
+
ubiplanta: number,
|
|
1194
|
+
ubirobinson: number,
|
|
1195
|
+
ubizona: number,
|
|
1196
|
+
ubinoaplica : number,
|
|
1197
|
+
id_uniadm:string,
|
|
1198
|
+
coduniadm?:string,
|
|
1199
|
+
denuniadm?:string,
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
export interface INivel {
|
|
1203
|
+
value: number;
|
|
1204
|
+
descripcion: string;
|
|
1205
|
+
};
|
|
1206
|
+
|
|
1207
|
+
export interface ITiposEnfermedad {
|
|
1208
|
+
id_enterprise: string,
|
|
1209
|
+
id_empresa:number,
|
|
1210
|
+
id_enfermedad: string,
|
|
1211
|
+
codenf: string,
|
|
1212
|
+
denenf: string,
|
|
1213
|
+
riecon: string,
|
|
1214
|
+
rielet: string,
|
|
1215
|
+
obsenf: string
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
export interface IUbicacionFisica{
|
|
1219
|
+
id_enterprise: string,
|
|
1220
|
+
id_empresa:number,
|
|
1221
|
+
id_ubifis: string,
|
|
1222
|
+
codubifis: string,
|
|
1223
|
+
denubifis: string,
|
|
1224
|
+
codpai: string,
|
|
1225
|
+
despai: string,
|
|
1226
|
+
codest: string,
|
|
1227
|
+
desest: string,
|
|
1228
|
+
codmun: string,
|
|
1229
|
+
desmun: string,
|
|
1230
|
+
codpar: string,
|
|
1231
|
+
despar: string,
|
|
1232
|
+
dirubifis: string,
|
|
1233
|
+
tietras: string
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
export interface IPersonalJubilado {
|
|
1237
|
+
id_enterprise: string,
|
|
1238
|
+
id_empresa:number,
|
|
1239
|
+
id_personal:string,
|
|
1240
|
+
id_jubilado:string,
|
|
1241
|
+
prirem:string,
|
|
1242
|
+
subtot:string,
|
|
1243
|
+
porpen:string,
|
|
1244
|
+
monpen:string,
|
|
1245
|
+
ultrem:string,
|
|
1246
|
+
fecvida:string,
|
|
1247
|
+
tipjub:string,
|
|
1248
|
+
fecres:string,
|
|
1249
|
+
numres:string,
|
|
1250
|
+
pordis:string,
|
|
1251
|
+
id_perper?:string,
|
|
1252
|
+
codperper?:string,
|
|
1253
|
+
denperper?:string,
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
export interface IFideicomisoInteres{
|
|
1257
|
+
id_enterprise: string,
|
|
1258
|
+
id_empresa:number,
|
|
1259
|
+
id_intfide:string,
|
|
1260
|
+
mesint:string,
|
|
1261
|
+
anoint:string,
|
|
1262
|
+
nrogacint:string,
|
|
1263
|
+
fecviggacint:string,
|
|
1264
|
+
montasint:string,
|
|
1265
|
+
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
export interface IConfiguracionFideicomiso{
|
|
1269
|
+
id_enterprise: string,
|
|
1270
|
+
id_empresa:number,
|
|
1271
|
+
id_fidconfig:string,
|
|
1272
|
+
id_dedicacion:string,
|
|
1273
|
+
id_tipopersonal:string,
|
|
1274
|
+
anocurfid:string,
|
|
1275
|
+
diabonvacfid:string,
|
|
1276
|
+
diabonfinfid:string,
|
|
1277
|
+
cuefid:string,
|
|
1278
|
+
forfid:string,
|
|
1279
|
+
codded?:string,
|
|
1280
|
+
dended?:string,
|
|
1281
|
+
codtipper?:string,
|
|
1282
|
+
dentipper?:string,
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
export interface ICalculoPrestacion{
|
|
1286
|
+
id_enterprise: string,
|
|
1287
|
+
id_empresa:number,
|
|
1288
|
+
mes:string,
|
|
1289
|
+
anio:string,
|
|
1290
|
+
cedula_desde:string,
|
|
1291
|
+
cedula_hasta:string,
|
|
1292
|
+
mescal?:string,
|
|
1293
|
+
aniocal?:string,
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
export interface IFideicomisoPeriodo{
|
|
1297
|
+
id_enterprise: string,
|
|
1298
|
+
id_empresa:number,
|
|
1299
|
+
id_personal:string,
|
|
1300
|
+
id_fideicomiso:string,
|
|
1301
|
+
id_nomina:string,
|
|
1302
|
+
codnom:string,
|
|
1303
|
+
anocurper:string,
|
|
1304
|
+
mescurper:string,
|
|
1305
|
+
sueintper:string,
|
|
1306
|
+
bonextper:string,
|
|
1307
|
+
bonvacper:string,
|
|
1308
|
+
bonfinper:string,
|
|
1309
|
+
apoper:string,
|
|
1310
|
+
diafid:string,
|
|
1311
|
+
diaadi:string,
|
|
1312
|
+
metodopre:string,
|
|
1313
|
+
metodoadi:string,
|
|
1314
|
+
bonvacadiper:string,
|
|
1315
|
+
bonfinadiper:string,
|
|
1316
|
+
sueintadiper:string,
|
|
1317
|
+
apopreper:string,
|
|
1318
|
+
apoadiper:string,
|
|
1319
|
+
codusu:string,
|
|
1320
|
+
id_dt_fideiperiodo:string,
|
|
1321
|
+
cedper:string,
|
|
1322
|
+
codper:string,
|
|
1323
|
+
nomper:string,
|
|
1324
|
+
apeper:string,
|
|
1325
|
+
fecingper:string,
|
|
1326
|
+
estper:string,
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
export interface IFideicomisoPeriodoInteresCatalogo{
|
|
1330
|
+
id_enterprise: string,
|
|
1331
|
+
id_empresa:number,
|
|
1332
|
+
id_personal:string,
|
|
1333
|
+
codper:string,
|
|
1334
|
+
cedper:string,
|
|
1335
|
+
nomper:string,
|
|
1336
|
+
apeper:string,
|
|
1337
|
+
fecingper:string,
|
|
1338
|
+
estper:string;
|
|
1339
|
+
intereses:IFideicomisoPeriodoInteres[],
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
export interface IFideicomisoPeriodoInteres{
|
|
1343
|
+
id_enterprise: string,
|
|
1344
|
+
id_empresa:number,
|
|
1345
|
+
id_personal:string,
|
|
1346
|
+
id_nomina:string,
|
|
1347
|
+
mesint:string,
|
|
1348
|
+
anoint:string,
|
|
1349
|
+
monantacu:string,
|
|
1350
|
+
monant:string,
|
|
1351
|
+
porint:string,
|
|
1352
|
+
monint:string,
|
|
1353
|
+
moncap:string,
|
|
1354
|
+
antpre:string,
|
|
1355
|
+
id_dt_fidperint:string,
|
|
1356
|
+
cedper:string,
|
|
1357
|
+
codper:string,
|
|
1358
|
+
nomper:string,
|
|
1359
|
+
apeper:string,
|
|
1360
|
+
fecingper:string,
|
|
1361
|
+
estper:string,
|
|
1362
|
+
capital:string,
|
|
1363
|
+
codnom:string,
|
|
1364
|
+
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
export interface IPermisos {
|
|
1368
|
+
id_enterprise: string,
|
|
1369
|
+
id_empresa:number,
|
|
1370
|
+
id_personal:number,
|
|
1371
|
+
id_permiso:number,
|
|
1372
|
+
feciniper:string,
|
|
1373
|
+
fecfinper:string,
|
|
1374
|
+
numdiapero:number,
|
|
1375
|
+
afevacper:number,
|
|
1376
|
+
tipper:number,
|
|
1377
|
+
obsper:string,
|
|
1378
|
+
remper:number,
|
|
1379
|
+
tothorper:number,
|
|
1380
|
+
desvacper:number,
|
|
1381
|
+
codpermiso:string,
|
|
1382
|
+
id_enfermedad:string,
|
|
1383
|
+
denenf:string,
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
export interface IConstancias{
|
|
1387
|
+
id_constancia: number,
|
|
1388
|
+
codconstra: string,
|
|
1389
|
+
desconstra: string,
|
|
1390
|
+
plantilla_rtf: string,
|
|
1391
|
+
archivo: string
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
export interface ITrabajosConcursantes{
|
|
1395
|
+
id_enterprise: string,
|
|
1396
|
+
id_empresa:number,
|
|
1397
|
+
id_concurso: string,
|
|
1398
|
+
id_concursante: string,
|
|
1399
|
+
id_trabajocon: string,
|
|
1400
|
+
codtraper: string,
|
|
1401
|
+
emptraper: string,
|
|
1402
|
+
cartraant: string,
|
|
1403
|
+
fecingtraant: string,
|
|
1404
|
+
fecrettraant: string
|
|
1405
|
+
}
|
|
1406
|
+
//Nuevos
|
|
1407
|
+
export interface IEstudiosConcursantes{
|
|
1408
|
+
id_enterprise: string,
|
|
1409
|
+
id_empresa:number,
|
|
1410
|
+
id_concurso: string,
|
|
1411
|
+
id_concursante: string,
|
|
1412
|
+
id_estudiocon: string,
|
|
1413
|
+
codestrea: string,
|
|
1414
|
+
insestper: string,
|
|
1415
|
+
desestper: string,
|
|
1416
|
+
fecinireaest: string,
|
|
1417
|
+
fecfinestrea: string,
|
|
1418
|
+
titestper: string,
|
|
1419
|
+
anoaprestper: string,
|
|
1420
|
+
horestrea: string,
|
|
1421
|
+
}
|
|
1422
|
+
export interface IExperienciaLaboral{
|
|
1423
|
+
id_empresa: string,
|
|
1424
|
+
id_concurso: string,
|
|
1425
|
+
id_concursante: string,
|
|
1426
|
+
id_trabajocon: string,
|
|
1427
|
+
codtra: string,
|
|
1428
|
+
emptraper: string,
|
|
1429
|
+
cartraant: string,
|
|
1430
|
+
fecingtraant: string,
|
|
1431
|
+
fecrettraant: string
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
export interface IFamiliaConcursante{
|
|
1435
|
+
id_enterprise: string,
|
|
1436
|
+
id_empresa:number,
|
|
1437
|
+
id_concurso: string,
|
|
1438
|
+
id_concursante: string,
|
|
1439
|
+
id_familiacon: string,
|
|
1440
|
+
codfam: string,
|
|
1441
|
+
cedfam: string,
|
|
1442
|
+
nomfam: string,
|
|
1443
|
+
apefam: string,
|
|
1444
|
+
sexfam: string,
|
|
1445
|
+
nexfam: string,
|
|
1446
|
+
fecnacfam: string,
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
export interface IPrestamo {
|
|
1450
|
+
id_enterprise: string,
|
|
1451
|
+
id_empresa:number,
|
|
1452
|
+
id_personal:number,
|
|
1453
|
+
id_prestamo:number,
|
|
1454
|
+
numpre:number,
|
|
1455
|
+
id_tipoprestamo:number,
|
|
1456
|
+
id_nomina:number,
|
|
1457
|
+
id_concepto:number,
|
|
1458
|
+
monpre:number,
|
|
1459
|
+
numcuopre:number,
|
|
1460
|
+
id_periodo:number,
|
|
1461
|
+
monamopre:number,
|
|
1462
|
+
estpre:number,
|
|
1463
|
+
fecpre:string,
|
|
1464
|
+
obsrecpre:string,
|
|
1465
|
+
obssuspre:string,
|
|
1466
|
+
tipcuopre:string,
|
|
1467
|
+
dennom:string,
|
|
1468
|
+
codnom:string,
|
|
1469
|
+
numpernom:number,
|
|
1470
|
+
destippre:string,
|
|
1471
|
+
codtippre:string,
|
|
1472
|
+
codconc:string,
|
|
1473
|
+
nomcon:string,
|
|
1474
|
+
codperi:string,
|
|
1475
|
+
fechasper:string,
|
|
1476
|
+
periodos:IPrestamoPeriodo[];
|
|
1477
|
+
amortizacion:IPrestamoAmortizacion[];
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
export interface IPrestamoPeriodo {
|
|
1481
|
+
id_enterprise: string,
|
|
1482
|
+
id_empresa:number,
|
|
1483
|
+
id_personal:number,
|
|
1484
|
+
id_prestamo:number,
|
|
1485
|
+
numcuo:number,
|
|
1486
|
+
id_periodocob:number,
|
|
1487
|
+
feciniper:string,
|
|
1488
|
+
fecfinper:string,
|
|
1489
|
+
moncuo:number,
|
|
1490
|
+
estcuo:number,
|
|
1491
|
+
codperipre:string,
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
export interface IPrestamoAmortizacion {
|
|
1495
|
+
id_enterprise: string,
|
|
1496
|
+
id_empresa:number,
|
|
1497
|
+
id_personal:number,
|
|
1498
|
+
id_prestamo:number,
|
|
1499
|
+
numamo:number,
|
|
1500
|
+
id_periodoamo:number,
|
|
1501
|
+
fecamo:string,
|
|
1502
|
+
monamo:number,
|
|
1503
|
+
desamo:string,
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
export interface IPrevioEvaluacionDt {
|
|
1507
|
+
id_enterprise: string,
|
|
1508
|
+
id_empresa:number,
|
|
1509
|
+
id_previo: string,
|
|
1510
|
+
id_tipoeval: string,
|
|
1511
|
+
id_aspecto: string,
|
|
1512
|
+
id_item: string,
|
|
1513
|
+
codite: string,
|
|
1514
|
+
denite: string,
|
|
1515
|
+
puntos: string,
|
|
1516
|
+
valormax: string,
|
|
1517
|
+
id_dt_previo: string,
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
export interface IPrevioEvaluacion {
|
|
1521
|
+
id_enterprise: string,
|
|
1522
|
+
id_empresa:number,
|
|
1523
|
+
id_previo:string,
|
|
1524
|
+
proceso:string,
|
|
1525
|
+
id_concurso:string,
|
|
1526
|
+
codcon:string,
|
|
1527
|
+
dencon:string,
|
|
1528
|
+
id_concursante:string,
|
|
1529
|
+
cedper: string,
|
|
1530
|
+
nomper: string,
|
|
1531
|
+
id_tipoeval:string,
|
|
1532
|
+
codtipeval: string,
|
|
1533
|
+
dentipeval: string,
|
|
1534
|
+
fecha:string,
|
|
1535
|
+
punreqmin:string,
|
|
1536
|
+
usuario:string,
|
|
1537
|
+
hora:string,
|
|
1538
|
+
estatus:string,
|
|
1539
|
+
tipo:string,
|
|
1540
|
+
detalles:IPrevioEvaluacionDt[],
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
export interface IRListadoPersonal {
|
|
1544
|
+
id_nominaDes: number,
|
|
1545
|
+
id_nominaHas: number,
|
|
1546
|
+
codnomDes: string,
|
|
1547
|
+
codnomHas: string,
|
|
1548
|
+
dennomDes: string,
|
|
1549
|
+
dennomHas: string,
|
|
1550
|
+
id_personalDes: number,
|
|
1551
|
+
id_personalHas: number,
|
|
1552
|
+
codperDes: string,
|
|
1553
|
+
codperHas: string,
|
|
1554
|
+
nomperDes: string,
|
|
1555
|
+
nomperHas: string,
|
|
1556
|
+
estper: number,
|
|
1557
|
+
cauegrper: string,
|
|
1558
|
+
sexper: string,
|
|
1559
|
+
codpai: string,
|
|
1560
|
+
codest: string,
|
|
1561
|
+
codmun: string,
|
|
1562
|
+
codpar: string,
|
|
1563
|
+
despai: string,
|
|
1564
|
+
desest: string,
|
|
1565
|
+
desmun: string,
|
|
1566
|
+
despar: string,
|
|
1567
|
+
staper: string, //estatus de nomina
|
|
1568
|
+
fechaDes:string,
|
|
1569
|
+
fechaHas:string,
|
|
1570
|
+
orden: string,
|
|
1571
|
+
reporte: string
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
export interface IRListadoTipoPersonal {
|
|
1575
|
+
id_ubifis: number,
|
|
1576
|
+
codubifis: string,
|
|
1577
|
+
denubifis: string,
|
|
1578
|
+
codpai: string,
|
|
1579
|
+
despai: string,
|
|
1580
|
+
codest: string,
|
|
1581
|
+
desest: string,
|
|
1582
|
+
codmun: string,
|
|
1583
|
+
desmun: string,
|
|
1584
|
+
codpar: string,
|
|
1585
|
+
despar: string,
|
|
1586
|
+
estper:string,
|
|
1587
|
+
id_organigrama:number,
|
|
1588
|
+
codestorg:string,
|
|
1589
|
+
denestorg:string,
|
|
1590
|
+
reporte:string,
|
|
1591
|
+
orden: string,
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
export interface IRConsolidadoConceptos {
|
|
1596
|
+
id_nominaDes: number,
|
|
1597
|
+
id_nominaHas: number,
|
|
1598
|
+
codnomDes: string,
|
|
1599
|
+
codnomHas: string,
|
|
1600
|
+
id_personalDes: number,
|
|
1601
|
+
id_personalHas: number,
|
|
1602
|
+
codperDes: string,
|
|
1603
|
+
codperHas: string,
|
|
1604
|
+
ordenDesde: number,
|
|
1605
|
+
ordenHasta: number,
|
|
1606
|
+
id_conceptoDes: number,
|
|
1607
|
+
id_conceptoHas: number,
|
|
1608
|
+
codconcDes: string,
|
|
1609
|
+
codconcHas: string,
|
|
1610
|
+
tipconc: string,
|
|
1611
|
+
id_periodoDes: number,
|
|
1612
|
+
id_periodoHas: number,
|
|
1613
|
+
codperiDes: string,
|
|
1614
|
+
codperiHas: string,
|
|
1615
|
+
anocur: number,
|
|
1616
|
+
orden: string,
|
|
1617
|
+
reporte: string
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
export interface IRPeriodo{
|
|
1621
|
+
id_periodo:string,
|
|
1622
|
+
codperi:string,
|
|
1623
|
+
fecdesper:string,
|
|
1624
|
+
fechasper:string,
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
export interface IRConstanciaTrabajo{
|
|
1628
|
+
id_constancia: number,
|
|
1629
|
+
codconstra: string,
|
|
1630
|
+
plantilla_rtf: string,
|
|
1631
|
+
archivo: string,
|
|
1632
|
+
id_nomina: number,
|
|
1633
|
+
codnom: string,
|
|
1634
|
+
id_personalDes: number,
|
|
1635
|
+
id_personalHas: number,
|
|
1636
|
+
codperDes: string,
|
|
1637
|
+
codperHas: string,
|
|
1638
|
+
orden
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
export interface IRSindicatos{
|
|
1642
|
+
id_sindicatoDes:number,
|
|
1643
|
+
id_sindicatoHas:number,
|
|
1644
|
+
codSindicatoDes:string,
|
|
1645
|
+
codSindicatoHas:string,
|
|
1646
|
+
reporte: string,
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
export interface IRRetenciones{
|
|
1650
|
+
id_nomina: number,
|
|
1651
|
+
codnom: string,
|
|
1652
|
+
id_personalDes: number,
|
|
1653
|
+
id_personalHas: number,
|
|
1654
|
+
codperDes: string,
|
|
1655
|
+
codperHas: string,
|
|
1656
|
+
annocurso: string,
|
|
1657
|
+
reporte: string
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
export interface IResultadosEvaluacion {
|
|
1661
|
+
id_enterprise: string,
|
|
1662
|
+
id_empresa:number,
|
|
1663
|
+
id_evaluacion:string,
|
|
1664
|
+
id_concurso:string,
|
|
1665
|
+
codcon:string,
|
|
1666
|
+
dencon:string,
|
|
1667
|
+
id_concursante:string,
|
|
1668
|
+
cedper: string,
|
|
1669
|
+
nomper: string,
|
|
1670
|
+
fecha:string,
|
|
1671
|
+
observacion:string,
|
|
1672
|
+
usuario:string,
|
|
1673
|
+
resultado_rqm:string,
|
|
1674
|
+
resultado_psi:string,
|
|
1675
|
+
resultado_tec:string,
|
|
1676
|
+
resultado_total: string,
|
|
1677
|
+
conclusion: string
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
export interface ISueldoMinimo{
|
|
1681
|
+
id_enterprise: string,
|
|
1682
|
+
id_empresa:number,
|
|
1683
|
+
id_sueldominimo: string;
|
|
1684
|
+
codsuemin: string;
|
|
1685
|
+
anosuemin: string;
|
|
1686
|
+
gacsuemin: string;
|
|
1687
|
+
fecvigsuemin: string;
|
|
1688
|
+
monsuemin: number;
|
|
1689
|
+
obssuemin: string;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
|
|
1693
|
+
export interface IPlanHorario {
|
|
1694
|
+
id_enterprise: string,
|
|
1695
|
+
id_empresa:number,
|
|
1696
|
+
id_planhor:number,
|
|
1697
|
+
id_nomina: number,
|
|
1698
|
+
anoplanhor:string,
|
|
1699
|
+
codplanhor:string,
|
|
1700
|
+
denplanhor:string,
|
|
1701
|
+
feciniplan:string,
|
|
1702
|
+
periodos:IPeriodosPlan[],
|
|
1703
|
+
tipnom?:number,
|
|
1704
|
+
codnom?:string,
|
|
1705
|
+
tippernom?: string,
|
|
1706
|
+
dennom?:string,
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
export interface IPeriodosPlan {
|
|
1710
|
+
id_enterprise: string,
|
|
1711
|
+
id_empresa:number,
|
|
1712
|
+
id_planhor:number,
|
|
1713
|
+
id_perplan:number,
|
|
1714
|
+
denperplan:string,
|
|
1715
|
+
fecperplan:string,
|
|
1716
|
+
id_periodo:number,
|
|
1717
|
+
id_hora:number,
|
|
1718
|
+
incidencias:string,
|
|
1719
|
+
codperi?:string,
|
|
1720
|
+
tipfer:string,
|
|
1721
|
+
deshor?:string,
|
|
1722
|
+
codhor?:string,
|
|
1723
|
+
denhor?:string,
|
|
1724
|
+
horini?:string,
|
|
1725
|
+
horfin?:string,
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
export interface IHorariosPeriodosPlan {
|
|
1729
|
+
id_enterprise: string,
|
|
1730
|
+
id_empresa:number,
|
|
1731
|
+
id_planhor:number,
|
|
1732
|
+
id_perplan:number,
|
|
1733
|
+
id_hora:number,
|
|
1734
|
+
incidencias:string,
|
|
1735
|
+
id_dt_horperplan:number,
|
|
1736
|
+
deshor?:string,
|
|
1737
|
+
codhor?:string,
|
|
1738
|
+
denhor?:string,
|
|
1739
|
+
horini?:string,
|
|
1740
|
+
horfin?:string,
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
|