sigesp 1.1.53-20250619 → 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 -130
- 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 -14888
- package/fesm2015/sigesp.mjs.map +0 -1
- package/fesm2020/sigesp.mjs +0 -14851
- 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 -128
- 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 -64
- 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,659 @@
|
|
|
1
|
+
import { EstatusEstudio, EstatusPersonal, Estudios, SituacionPersonal } from '../../interfaces/Constantes';
|
|
2
|
+
import { ICambioEstatusPersonal, IEstudioRealizado, IPersonal, IPersonalCuentasBancarias, IPrestacionesAntiguedad } from '../../interfaces/RecursosHumanos';
|
|
3
|
+
import { MBasicModel } from '../basic-model.model';
|
|
4
|
+
|
|
5
|
+
export class MPersonal extends MBasicModel {
|
|
6
|
+
public idEmpresa:number=0;
|
|
7
|
+
public idEnterprise:number=0;
|
|
8
|
+
public idPersonal: number=0;
|
|
9
|
+
public codigoPersonal: string='';//10
|
|
10
|
+
public cedulaPersonal: string= ''; //10
|
|
11
|
+
public rifPersonal: string='';//15
|
|
12
|
+
public nombrePersonal: string='';//60
|
|
13
|
+
public apellidoPersonal: string='';
|
|
14
|
+
public fechaNacimientoPersonal: string='1900-01-01';
|
|
15
|
+
public codigoPaisNacimiento:string ='--';
|
|
16
|
+
public codigoEstadoNacimiento:string ='---';
|
|
17
|
+
public codigoMunicipioNacimiento:string ='---';
|
|
18
|
+
public codigoParroquiaNacimiento:string ='---';
|
|
19
|
+
public nacionalidadPersonal:string='';
|
|
20
|
+
public estadoCivilPersonal:string='S';
|
|
21
|
+
public telefonoHabitacionPersonal:string=''; //15
|
|
22
|
+
public telefonoMovilPersobal:string=''; //15
|
|
23
|
+
public correoElectronicoPersonal:string=''; //60
|
|
24
|
+
public direccionPersonal:string=''; //255
|
|
25
|
+
public codigoPais:string='--';
|
|
26
|
+
public codigoEstado:string='--';
|
|
27
|
+
public codigoMunicipio:string='---';
|
|
28
|
+
public codigoParroquia:string='---';
|
|
29
|
+
public sexoPersonal:string='';
|
|
30
|
+
public numeroHijo:number=0;
|
|
31
|
+
public conyugueTrabaja:number=0;
|
|
32
|
+
public cedulaBeneficiarioPersonal:string='';
|
|
33
|
+
public estatura: number=0;
|
|
34
|
+
public peso: number=0;
|
|
35
|
+
public tallaCamisa:string='';
|
|
36
|
+
public tallaPantalon:string='';
|
|
37
|
+
public tallaZapato:string='';
|
|
38
|
+
public idProfesion:number=0;
|
|
39
|
+
public nivelAcademicoPersonal:string=''; //1
|
|
40
|
+
public idComponente: number=0;
|
|
41
|
+
public idRango: number=0;
|
|
42
|
+
public fotoPersonal:string='';
|
|
43
|
+
public observacionPersonal:string='';
|
|
44
|
+
public estatusPersonal:string='1';
|
|
45
|
+
public idClasificacionPersonal: number=0;
|
|
46
|
+
public centroMedicoIVVS:string=''; //155
|
|
47
|
+
public turnoPersonal:string=''; //1
|
|
48
|
+
public horarioPersonal:string=''; //10
|
|
49
|
+
public estatusHCMPersonal:number=0;
|
|
50
|
+
public tipoSangrePersonal:string='';//10
|
|
51
|
+
public numeroExpedientePersonal:string=''; //20
|
|
52
|
+
public cargoOriginalPersonal:string=''; //100
|
|
53
|
+
public tipoViviendaPersonal:number=0; //ojo
|
|
54
|
+
public tenenciaViviendaPersonal:string=''; //40/ojo
|
|
55
|
+
public montoPagadoViviendaPersonal:number =0;
|
|
56
|
+
public estatusCajaAhorro:number=0;
|
|
57
|
+
public cuentaCajaAhorroPersonal:string=''; //25
|
|
58
|
+
public porcentajeCajaAhorro:number=0;
|
|
59
|
+
public cuetaLeyPoliticaHabitacionaPersonal:string=''; //25
|
|
60
|
+
public cuentaFideicomiso:string=''; //25
|
|
61
|
+
public estatusSindicato: number=0;
|
|
62
|
+
public fechaIngresoAdministracionPublica:string='1900-01-01';
|
|
63
|
+
public anoServicioPrevioFijoAP:number=0; //integer
|
|
64
|
+
public anoServicioPrevioContratadoAP:number=0; //integer
|
|
65
|
+
public anoPersonalObrero:number=0; //integer
|
|
66
|
+
public anoServicioPrevioPersonal:number=0; //integer
|
|
67
|
+
public mesesServicioPrevioPersonal:number=0; //integer
|
|
68
|
+
public diasServicioPrevioPersonal:number=0; //integer
|
|
69
|
+
public fechaIngerosPersonal:string='1900-01-01';
|
|
70
|
+
public fechaReingresoPersonal:string='1900-01-01';
|
|
71
|
+
public fechajubilacionPersonal:string='1900-01-01';
|
|
72
|
+
public fechaEgresoPersonal:string='1900-01-01';
|
|
73
|
+
public causaEgresoPersonal:string='N'; //1
|
|
74
|
+
public observacionEgresoPersonal:string=''; //254
|
|
75
|
+
public preaviso:string='0'; //1
|
|
76
|
+
public fechaLOSFAN:string='1900-01-01';
|
|
77
|
+
public situacion:string='N'; //1
|
|
78
|
+
public fechaSituacion:string='1900-01-01';
|
|
79
|
+
public idCausales: number =0;
|
|
80
|
+
public fechaRegistroSistema:string='1900-01-01';
|
|
81
|
+
public codidoUsuario:string='';
|
|
82
|
+
public observacion: string ='';
|
|
83
|
+
public idCentroMedico: number=0;
|
|
84
|
+
public idTipoPersonal:number=0;
|
|
85
|
+
public codigoComponente: string ='';
|
|
86
|
+
public denominacionComponente: string ='';
|
|
87
|
+
public codigoRango: string ='';
|
|
88
|
+
public denominacionRango: string ='';
|
|
89
|
+
public codigoCentroMedico: string ='';
|
|
90
|
+
public denominacionCentroMedico: string ='';
|
|
91
|
+
public codigoTipoPersonal: string ='';
|
|
92
|
+
public denominacionTipoPersonal: string ='';
|
|
93
|
+
public codigoCausaRetiro:string='';
|
|
94
|
+
public denominacionCausaRetiro: string='';
|
|
95
|
+
public idProveedorBeneficiario:number=0;
|
|
96
|
+
public denominacionEstatus:string='';
|
|
97
|
+
public conapdis:boolean=false;
|
|
98
|
+
public idSindicato:number=0;
|
|
99
|
+
public codigoSindicato:string='00000';
|
|
100
|
+
public denominacionSindicato:string='';
|
|
101
|
+
public nombrePais:string='';
|
|
102
|
+
public nombreEstado:string='';
|
|
103
|
+
public nombreMunicipio:string='';
|
|
104
|
+
public nombreParroquia:string='';
|
|
105
|
+
public nombrePaisNacimiento:string='';
|
|
106
|
+
public nombreEstadoNacimiento:string='';
|
|
107
|
+
public nombreMunicipioNacimiento:string='';
|
|
108
|
+
public nombreParroquiaNacimiento:string='';
|
|
109
|
+
public codigoProfesion: string='';
|
|
110
|
+
public denominacionProfesion: string='';
|
|
111
|
+
public montoPension:number=0;
|
|
112
|
+
public idPlanHorario:number=0;
|
|
113
|
+
public idHora:number=0;
|
|
114
|
+
public descripcionPlanHorario:string='';
|
|
115
|
+
public codigoPlanHorario:string='--';
|
|
116
|
+
public idPuestoTrabajo:number=0;
|
|
117
|
+
public descripcionPuestoTrabajo:string='';
|
|
118
|
+
public codigoPuestoTrabajo:string='--';
|
|
119
|
+
public descripcionHorario:string='';
|
|
120
|
+
public fechaDefuncion:string='1900-01-01'; ;
|
|
121
|
+
public fechaActaDefuncion:string='1900-01-01'; ;
|
|
122
|
+
public numeroActaDefuncion:string='';
|
|
123
|
+
public denominacionSituacion:string='';
|
|
124
|
+
public codigoClasificadorPersonal:string='';
|
|
125
|
+
public denominacionClasificadorPersonal:string='';
|
|
126
|
+
public idPermisoPersonal:number=0;
|
|
127
|
+
public codigoPermisoPersonal:string='';
|
|
128
|
+
public denominacionPermisoPersonal:string='';
|
|
129
|
+
public idRuta:number=0;
|
|
130
|
+
public denominacionRuta:string='';
|
|
131
|
+
public centoVotacion:string='';
|
|
132
|
+
public puntoReferencia:string='';
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
constructor (p:IPersonal=null){
|
|
136
|
+
super()
|
|
137
|
+
if (p){
|
|
138
|
+
this.idEnterprise=+p.id_enterprise;
|
|
139
|
+
this.idEmpresa=p.id_empresa;
|
|
140
|
+
this.idPersonal= +p.id_personal;
|
|
141
|
+
this.codigoPersonal= p.codper;
|
|
142
|
+
this.cedulaPersonal= p.cedper;
|
|
143
|
+
this.rifPersonal= p.rifper;
|
|
144
|
+
this.nombrePersonal= p.nomper;
|
|
145
|
+
this.apellidoPersonal= p.apeper;
|
|
146
|
+
this.fechaNacimientoPersonal= p.fecnacper;
|
|
147
|
+
this.codigoPaisNacimiento= p.codpainac;
|
|
148
|
+
this.codigoEstadoNacimiento= p.codestnac;
|
|
149
|
+
this.codigoMunicipioNacimiento= p.codmunnac;
|
|
150
|
+
this.codigoParroquiaNacimiento= p.codparnac;
|
|
151
|
+
this.nacionalidadPersonal= p.nacper;
|
|
152
|
+
this.estadoCivilPersonal= p.estcivper;
|
|
153
|
+
this.telefonoHabitacionPersonal= p.telhabper;
|
|
154
|
+
this.telefonoMovilPersobal= p.telmovper;
|
|
155
|
+
this.correoElectronicoPersonal= p.coreleper;
|
|
156
|
+
this.direccionPersonal= p.dirper;
|
|
157
|
+
this.codigoPais= p.codpai;
|
|
158
|
+
this.codigoEstado= p.codest;
|
|
159
|
+
this.codigoMunicipio= p.codmun;
|
|
160
|
+
this.codigoParroquia= p.codpar;
|
|
161
|
+
this.sexoPersonal= p.sexper;
|
|
162
|
+
this.numeroHijo=+p.numhijper;
|
|
163
|
+
this.conyugueTrabaja= +p.contra;
|
|
164
|
+
this.cedulaBeneficiarioPersonal= p.cedbenper;
|
|
165
|
+
this.estatura=+p.estatura;
|
|
166
|
+
this.peso=+p.peso;
|
|
167
|
+
this.tallaCamisa= p.tallcam
|
|
168
|
+
this.tallaPantalon=p.tallpan;1
|
|
169
|
+
this.tallaZapato= p.tallzap;
|
|
170
|
+
this.idProfesion= +p.id_profesion;
|
|
171
|
+
this.nivelAcademicoPersonal= p.nivacaper;
|
|
172
|
+
this.idComponente=+p.id_componente;
|
|
173
|
+
this.idRango=+p.id_rango;
|
|
174
|
+
this.fotoPersonal= p.fotper;
|
|
175
|
+
this.observacionPersonal= p.obsegrper;
|
|
176
|
+
this.estatusPersonal= p.estper;
|
|
177
|
+
this.idClasificacionPersonal=+p.id_claper;
|
|
178
|
+
this.turnoPersonal= p.turper;
|
|
179
|
+
this.horarioPersonal= p.horper;
|
|
180
|
+
this.estatusHCMPersonal= +p.hcmper;
|
|
181
|
+
this.tipoSangrePersonal= p.tipsanper;
|
|
182
|
+
this.numeroExpedientePersonal= p.numexpper;
|
|
183
|
+
this.cargoOriginalPersonal= p.caroriper;
|
|
184
|
+
this.tipoViviendaPersonal= +p.tipvivper;
|
|
185
|
+
this.tenenciaViviendaPersonal= p.tenvivper;
|
|
186
|
+
this.montoPagadoViviendaPersonal= +p.monpagvivper;
|
|
187
|
+
this.estatusCajaAhorro= +p.estcajaho;
|
|
188
|
+
this.cuentaCajaAhorroPersonal= p.cuecajahoper;
|
|
189
|
+
this.porcentajeCajaAhorro= +p.porcajaho;
|
|
190
|
+
this.cuetaLeyPoliticaHabitacionaPersonal= p.cuelphper;
|
|
191
|
+
this.cuentaFideicomiso= p.cuefidper;1
|
|
192
|
+
this.estatusSindicato=+p.estsindicato;
|
|
193
|
+
this.fechaIngresoAdministracionPublica= p.fecingadmpubper;
|
|
194
|
+
this.anoServicioPrevioFijoAP= +p.anoservprefijo;
|
|
195
|
+
this.anoServicioPrevioContratadoAP= +p.anoservprecont;
|
|
196
|
+
this.anoPersonalObrero= +p.anoperobr;
|
|
197
|
+
this.anoServicioPrevioPersonal= +p.anoservpreper;
|
|
198
|
+
this.mesesServicioPrevioPersonal= +p.messervpreper;
|
|
199
|
+
this.diasServicioPrevioPersonal= +p.diaservpreper;
|
|
200
|
+
this.fechaIngerosPersonal= p.fecingper;
|
|
201
|
+
this.fechaReingresoPersonal= p.fecreingper;
|
|
202
|
+
this.fechajubilacionPersonal= p.fecjubper;
|
|
203
|
+
this.fechaEgresoPersonal= p.fecegrper;
|
|
204
|
+
this.causaEgresoPersonal= p.cauegrper;
|
|
205
|
+
this.observacionEgresoPersonal= p.obsegrper;
|
|
206
|
+
this.preaviso= p.preaviso;
|
|
207
|
+
this.fechaLOSFAN= p.feclossfan;
|
|
208
|
+
this.situacion= p.situacion;
|
|
209
|
+
this.fechaSituacion= p.fecsitu;
|
|
210
|
+
this.idCausales= +p.id_causales;
|
|
211
|
+
this.fechaRegistroSistema= p.fecregsis;
|
|
212
|
+
this.codidoUsuario= p.codusu;
|
|
213
|
+
this.observacion =p.observacion;
|
|
214
|
+
this.idCentroMedico= p.id_cenmedss,
|
|
215
|
+
this.idTipoPersonal= p.id_tipopersonal,
|
|
216
|
+
this.codigoComponente=p.codcom;
|
|
217
|
+
this.denominacionComponente=p.dencom;
|
|
218
|
+
this.codigoRango=p.codran;
|
|
219
|
+
this.denominacionRango=p.denran;
|
|
220
|
+
this.codigoCentroMedico=p.codcenmedss;
|
|
221
|
+
this.denominacionCentroMedico=p.dencenmedss;
|
|
222
|
+
this.codigoTipoPersonal=p.codtipper;
|
|
223
|
+
this.denominacionTipoPersonal=p.dentipper;
|
|
224
|
+
this.codigoCausaRetiro=p.dencau;
|
|
225
|
+
this.denominacionCausaRetiro=p.codcau;
|
|
226
|
+
this.idProveedorBeneficiario=parseInt(p.id_proveedorbeneficiario);
|
|
227
|
+
this.idSindicato=parseInt(p.id_sindicato);
|
|
228
|
+
this.codigoSindicato=p.codsin;
|
|
229
|
+
this.denominacionSindicato=p.densin;
|
|
230
|
+
this.denominacionEstatus= (EstatusPersonal.find(e=>e.value==p.estper).denominacion).toUpperCase();
|
|
231
|
+
this.conapdis=p.conapdis=='1'? true:false;
|
|
232
|
+
this.idSindicato= parseInt(p.id_sindicato);
|
|
233
|
+
this.codigoSindicato=p.codsin;
|
|
234
|
+
this.denominacionSindicato=p.densin;
|
|
235
|
+
this.nombrePais=p.despai;
|
|
236
|
+
this.nombreEstado=p.desest;
|
|
237
|
+
this.nombreMunicipio=p.desmun;
|
|
238
|
+
this.nombreParroquia=p.despar;
|
|
239
|
+
this.nombreEstadoNacimiento=p.desest_nac;
|
|
240
|
+
this.nombrePaisNacimiento=p.despai_nac;
|
|
241
|
+
this.codigoProfesion=p.codpro;
|
|
242
|
+
this.denominacionProfesion=p.denpro;
|
|
243
|
+
this.montoPension=+p.monpen;
|
|
244
|
+
this.idPlanHorario=+p.id_planhor;
|
|
245
|
+
this.idHora=+p.id_hora;
|
|
246
|
+
this.fechaDefuncion=p.fecdef;
|
|
247
|
+
this.fechaActaDefuncion=p.fecactdef;
|
|
248
|
+
this.numeroActaDefuncion=p.numactdef;
|
|
249
|
+
if(this.idPlanHorario>0){
|
|
250
|
+
this.codigoPlanHorario=p.codplanhor;
|
|
251
|
+
this.descripcionPlanHorario=p.denplanhor;
|
|
252
|
+
} else if(this.idHora>0){
|
|
253
|
+
this.descripcionHorario=p.horini+'-'+p.horfin;
|
|
254
|
+
}
|
|
255
|
+
this.descripcionPuestoTrabajo=p.despuetra;
|
|
256
|
+
this.codigoPuestoTrabajo=p.codpuetra;
|
|
257
|
+
this.denominacionSituacion= (SituacionPersonal.find(e=>e.value==p.situacion).denominacion).toLocaleUpperCase();
|
|
258
|
+
this.codigoClasificadorPersonal=p.codclaper;
|
|
259
|
+
this.denominacionClasificadorPersonal=p.denclaper;
|
|
260
|
+
this.idPermisoPersonal= + p.id_perper;
|
|
261
|
+
this.denominacionPermisoPersonal=p.denperper;
|
|
262
|
+
this.codigoPermisoPersonal=p.codperper;
|
|
263
|
+
this.idRuta=+p.id_ruta
|
|
264
|
+
this.denominacionRuta=p.denrut;
|
|
265
|
+
this.centoVotacion=p.cenvot;
|
|
266
|
+
this.puntoReferencia=p.punref;
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
} else {
|
|
270
|
+
this.isNew=true;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
public dataInterface():IPersonal {
|
|
275
|
+
return {
|
|
276
|
+
id_empresa:this.idEmpresa,
|
|
277
|
+
id_enterprise:this.idEnterprise.toString(),
|
|
278
|
+
id_personal:+this.idPersonal,
|
|
279
|
+
codper:this.codigoPersonal,
|
|
280
|
+
cedper:this.cedulaPersonal,
|
|
281
|
+
rifper:this.rifPersonal,
|
|
282
|
+
nomper:this.nombrePersonal,
|
|
283
|
+
apeper:this.apellidoPersonal,
|
|
284
|
+
fecnacper:this.fechaNacimientoPersonal,
|
|
285
|
+
codpainac:this.codigoPaisNacimiento,
|
|
286
|
+
codestnac:this.codigoEstadoNacimiento,
|
|
287
|
+
codmunnac:this.codigoMunicipioNacimiento,
|
|
288
|
+
codparnac:this.codigoParroquiaNacimiento,
|
|
289
|
+
nacper:this.nacionalidadPersonal,
|
|
290
|
+
estcivper:this.estadoCivilPersonal,
|
|
291
|
+
telhabper:this.telefonoHabitacionPersonal,
|
|
292
|
+
telmovper:this.telefonoMovilPersobal,
|
|
293
|
+
coreleper:this.correoElectronicoPersonal,
|
|
294
|
+
dirper:this.direccionPersonal,
|
|
295
|
+
codpai:this.codigoPais,
|
|
296
|
+
codest:this.codigoEstado,
|
|
297
|
+
codmun:this.codigoMunicipio,
|
|
298
|
+
codpar:this.codigoParroquia,
|
|
299
|
+
sexper:this.sexoPersonal,
|
|
300
|
+
numhijper:+this.numeroHijo,
|
|
301
|
+
contra:+this.conyugueTrabaja,
|
|
302
|
+
cedbenper:this.cedulaBeneficiarioPersonal,
|
|
303
|
+
estatura:this.estatura,
|
|
304
|
+
peso:this.peso,
|
|
305
|
+
tallcam:this.tallaCamisa,
|
|
306
|
+
tallpan:this.tallaPantalon,
|
|
307
|
+
tallzap:this.tallaZapato,
|
|
308
|
+
id_profesion:this.idProfesion,
|
|
309
|
+
nivacaper:this.nivelAcademicoPersonal,
|
|
310
|
+
id_componente:+this.idComponente,
|
|
311
|
+
id_rango:+this.idRango,
|
|
312
|
+
fotper:this.fotoPersonal,
|
|
313
|
+
obsper:this.observacionPersonal,
|
|
314
|
+
estper:this.estatusPersonal,
|
|
315
|
+
id_claper:+this.idClasificacionPersonal,
|
|
316
|
+
turper:this.turnoPersonal,
|
|
317
|
+
horper:this.horarioPersonal,
|
|
318
|
+
hcmper:this.estatusHCMPersonal,
|
|
319
|
+
tipsanper:this.tipoSangrePersonal,
|
|
320
|
+
numexpper:this.numeroExpedientePersonal,
|
|
321
|
+
caroriper:this.cargoOriginalPersonal,
|
|
322
|
+
tipvivper:this.tipoViviendaPersonal,
|
|
323
|
+
tenvivper:this.tenenciaViviendaPersonal,
|
|
324
|
+
monpagvivper:this.montoPagadoViviendaPersonal,
|
|
325
|
+
estcajaho:this.estatusCajaAhorro,
|
|
326
|
+
cuecajahoper:this.cuentaCajaAhorroPersonal,
|
|
327
|
+
porcajaho:this.porcentajeCajaAhorro,
|
|
328
|
+
cuelphper:this.cuetaLeyPoliticaHabitacionaPersonal,
|
|
329
|
+
cuefidper:this.cuentaFideicomiso,
|
|
330
|
+
estsindicato:this.estatusSindicato,
|
|
331
|
+
fecingadmpubper:this.fechaIngresoAdministracionPublica,
|
|
332
|
+
anoservprefijo:this.anoServicioPrevioFijoAP,
|
|
333
|
+
anoservprecont:this.anoServicioPrevioContratadoAP,
|
|
334
|
+
anoperobr:this.anoPersonalObrero,
|
|
335
|
+
anoservpreper:this.anoServicioPrevioPersonal,
|
|
336
|
+
messervpreper:this.mesesServicioPrevioPersonal,
|
|
337
|
+
diaservpreper:this.diasServicioPrevioPersonal,
|
|
338
|
+
fecingper:this.fechaIngerosPersonal,
|
|
339
|
+
fecreingper:this.fechaReingresoPersonal,
|
|
340
|
+
fecjubper:this.fechajubilacionPersonal,
|
|
341
|
+
fecegrper:this.fechaEgresoPersonal,
|
|
342
|
+
cauegrper:this.causaEgresoPersonal,
|
|
343
|
+
obsegrper:this.observacionEgresoPersonal,
|
|
344
|
+
preaviso:this.preaviso,
|
|
345
|
+
feclossfan:this.fechaLOSFAN,
|
|
346
|
+
situacion:this.situacion,
|
|
347
|
+
fecsitu:this.fechaSituacion,
|
|
348
|
+
id_causales:+this.idCausales,
|
|
349
|
+
fecregsis:this.fechaRegistroSistema,
|
|
350
|
+
codusu:this.codidoUsuario,
|
|
351
|
+
observacion:this.observacion,
|
|
352
|
+
id_cenmedss:+this.idCentroMedico,
|
|
353
|
+
id_tipopersonal:+this.idTipoPersonal,
|
|
354
|
+
codcom:this.codigoComponente,
|
|
355
|
+
dencom:this.denominacionComponente,
|
|
356
|
+
codran:this.codigoRango,
|
|
357
|
+
denran:this.denominacionRango,
|
|
358
|
+
codcenmedss:this.codigoCentroMedico,
|
|
359
|
+
dencenmedss:this.denominacionCentroMedico,
|
|
360
|
+
codtipper:this.codigoTipoPersonal,
|
|
361
|
+
dentipper:this.denominacionTipoPersonal,
|
|
362
|
+
codcau:this.codigoCausaRetiro,
|
|
363
|
+
dencau:this.denominacionCausaRetiro,
|
|
364
|
+
id_proveedorbeneficiario:this.idProveedorBeneficiario.toString(),
|
|
365
|
+
id_sindicato:this.idSindicato.toString(),
|
|
366
|
+
codsin:this.codigoSindicato,
|
|
367
|
+
densin:this.denominacionSindicato,
|
|
368
|
+
conapdis:this.conapdis? '1':'0',
|
|
369
|
+
despai:this.nombrePais,
|
|
370
|
+
desest:this.nombreEstado,
|
|
371
|
+
desmun:this.nombreMunicipio,
|
|
372
|
+
despar:this.nombreParroquia,
|
|
373
|
+
desest_nac:this.nombreEstadoNacimiento,
|
|
374
|
+
despai_nac:this.nombrePaisNacimiento,
|
|
375
|
+
id_planhor:this.idPlanHorario.toString(),
|
|
376
|
+
id_hora:this.idHora.toString(),
|
|
377
|
+
id_puetra:this.idPuestoTrabajo.toString(),
|
|
378
|
+
fecdef:this.fechaDefuncion,
|
|
379
|
+
fecactdef:this.fechaActaDefuncion,
|
|
380
|
+
numactdef:this.numeroActaDefuncion,
|
|
381
|
+
id_perper: this.idPermisoPersonal.toString(),
|
|
382
|
+
denperper: this.denominacionPermisoPersonal,
|
|
383
|
+
codperper: this.codigoPermisoPersonal,
|
|
384
|
+
id_ruta:this.idRuta.toString(),
|
|
385
|
+
denrut:this.denominacionRuta,
|
|
386
|
+
cenvot:this.centoVotacion,
|
|
387
|
+
punref:this.puntoReferencia,
|
|
388
|
+
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export class MCambioEstatusPersonal extends MBasicModel{
|
|
395
|
+
public idEmpresa:number=0;
|
|
396
|
+
public idEnterprise:number=0;
|
|
397
|
+
public idPersonal: number=0;
|
|
398
|
+
public codigoPersonal: string='';
|
|
399
|
+
public estatusActual: string='2';
|
|
400
|
+
public estatusNuevo: string='2';
|
|
401
|
+
public fechaEgreso: string='';
|
|
402
|
+
public causaEgreso: string='';
|
|
403
|
+
public preaviso: string='1';
|
|
404
|
+
public idCausales: number=0;
|
|
405
|
+
public observacion: string='';
|
|
406
|
+
public fechaReingreso:string='1900-01-01';
|
|
407
|
+
|
|
408
|
+
constructor (e:ICambioEstatusPersonal=null) {
|
|
409
|
+
super();
|
|
410
|
+
if(e){
|
|
411
|
+
this.idEnterprise=+e.id_enterprise;
|
|
412
|
+
this.idEmpresa=e.id_empresa;
|
|
413
|
+
this.idPersonal = e.idPersonal;
|
|
414
|
+
this.codigoPersonal = e.codigoPersonal;
|
|
415
|
+
this.estatusActual = e.estatusActual;
|
|
416
|
+
this.estatusNuevo = e.estatusNuevo;
|
|
417
|
+
this.fechaEgreso = e.fechaEgreso;
|
|
418
|
+
this.causaEgreso = e.causaEgreso;
|
|
419
|
+
this.preaviso = e.preaviso;
|
|
420
|
+
this.idCausales= e.idCausales;
|
|
421
|
+
this.observacion = e.observacion;
|
|
422
|
+
this.fechaReingreso= e.fechaReingreso;
|
|
423
|
+
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
public dataInterface():ICambioEstatusPersonal{
|
|
427
|
+
return {
|
|
428
|
+
id_empresa:this.idEmpresa,
|
|
429
|
+
id_enterprise:this.idEnterprise.toString(),
|
|
430
|
+
idPersonal: this.idPersonal,
|
|
431
|
+
codigoPersonal: this.codigoPersonal,
|
|
432
|
+
estatusActual: this.estatusActual,
|
|
433
|
+
estatusNuevo: this.estatusNuevo,
|
|
434
|
+
fechaEgreso: this.fechaEgreso,
|
|
435
|
+
causaEgreso: this.causaEgreso,
|
|
436
|
+
preaviso: this.preaviso,
|
|
437
|
+
idCausales: this.idCausales,
|
|
438
|
+
observacion: this.observacion,
|
|
439
|
+
fechaReingreso:this.fechaReingreso,
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export class MPersonalCuentaBanco extends MBasicModel {
|
|
447
|
+
public idEmpresa:number=0;
|
|
448
|
+
public idEnterprise:number=0;
|
|
449
|
+
public idPersonal:number=0;
|
|
450
|
+
public idCuentaBancoPersonal:number=-1;
|
|
451
|
+
public codigoCuentaBancoPersonal:string='';
|
|
452
|
+
public denominacionCuentaBancoPersonal:string='';
|
|
453
|
+
public idBanco:number=0;
|
|
454
|
+
public idTipoCuentaBanco:number=0;
|
|
455
|
+
public cuentaBancoPersonal:string='';
|
|
456
|
+
public estatusCuentaBanco:boolean=true;
|
|
457
|
+
public tipoCuentaPrincipal:boolean=false;
|
|
458
|
+
public codigoBanco:string='';
|
|
459
|
+
public cuentaReducida:string='';
|
|
460
|
+
public nombreBanco:string='';
|
|
461
|
+
public nombreTipoCuentaBanco:string='';
|
|
462
|
+
|
|
463
|
+
constructor(e?:IPersonalCuentasBancarias){
|
|
464
|
+
super();
|
|
465
|
+
if (e){
|
|
466
|
+
this.idEnterprise=+e.id_enterprise;
|
|
467
|
+
this.idEmpresa=e.id_empresa;
|
|
468
|
+
this.idPersonal=parseInt(e.id_personal);
|
|
469
|
+
this.idCuentaBancoPersonal=parseInt(e.id_ctabanper);
|
|
470
|
+
this.codigoCuentaBancoPersonal=e.codctabanper;
|
|
471
|
+
this.denominacionCuentaBancoPersonal=e.denctabanper;
|
|
472
|
+
this.idBanco=parseInt(e.id_banco);
|
|
473
|
+
this.idTipoCuentaBanco=parseInt(e.id_tipocta);
|
|
474
|
+
this.cuentaBancoPersonal=e.ctabanper;
|
|
475
|
+
this.estatusCuentaBanco=e.estctabco=='1'? true:false;
|
|
476
|
+
this.tipoCuentaPrincipal=e.tipctapri=='1'? true:false;
|
|
477
|
+
this.codigoBanco=this.cuentaBancoPersonal.substring(0,4);
|
|
478
|
+
this.cuentaReducida=this.cuentaBancoPersonal.slice(4)
|
|
479
|
+
this.nombreBanco=e.nomban;
|
|
480
|
+
this.nombreTipoCuentaBanco=e.nomtipcta;
|
|
481
|
+
} else {
|
|
482
|
+
this.isNew=true;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
dataInterface():IPersonalCuentasBancarias{
|
|
487
|
+
return {
|
|
488
|
+
id_enterprise:this.idEnterprise.toString(),
|
|
489
|
+
id_empresa:this.idEmpresa,
|
|
490
|
+
id_personal:this.idPersonal.toString(),
|
|
491
|
+
id_ctabanper:this.idCuentaBancoPersonal.toString(),
|
|
492
|
+
codctabanper:this.codigoCuentaBancoPersonal,
|
|
493
|
+
denctabanper:this.denominacionCuentaBancoPersonal,
|
|
494
|
+
id_banco:this.idBanco.toString(),
|
|
495
|
+
id_tipocta:this.idTipoCuentaBanco.toString(),
|
|
496
|
+
ctabanper:this.cuentaBancoPersonal,
|
|
497
|
+
estctabco:this.estatusCuentaBanco? '1':'0',
|
|
498
|
+
tipctapri:this.tipoCuentaPrincipal? '1':'0',
|
|
499
|
+
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
export class MEstudiosRealizados {
|
|
507
|
+
public idEmpresa:number=0;
|
|
508
|
+
public idEnterprise:number=0;
|
|
509
|
+
public idPersonal:number=0;
|
|
510
|
+
public idEstudio:number=0;
|
|
511
|
+
public codigoEstudioRealizado:string='';
|
|
512
|
+
public tipoEstudioRealizado:string='1';
|
|
513
|
+
public denominacionEstudioRealizado:string='1';
|
|
514
|
+
public institutoEstudioRealizado:string='';
|
|
515
|
+
public descripcionEstudioRealizado:string='';
|
|
516
|
+
public tituloEstudioRealizado:string='';
|
|
517
|
+
public calificacionEstudioRealizado:number=0;
|
|
518
|
+
public escalaValores:string='';
|
|
519
|
+
public fechaInicioEstudioRealizado:string='1900-01-01';
|
|
520
|
+
public fechaFinEstudioRealizado:string='1900-01-01';
|
|
521
|
+
public fechaGradoEstudioRealizado:string='1900-01-01';
|
|
522
|
+
public aprobacionEstudioRealizado:string='1';
|
|
523
|
+
public denominacionAprobacionEstudioRealizado:string;
|
|
524
|
+
public anoAprobacionEstudioRealizado:number=0;
|
|
525
|
+
public horasEstudioRealizado:number=0;
|
|
526
|
+
public TipoEstudio=Estudios
|
|
527
|
+
public Aprobado=EstatusEstudio
|
|
528
|
+
|
|
529
|
+
constructor (e:IEstudioRealizado= null){
|
|
530
|
+
if(e){
|
|
531
|
+
this.idEmpresa= e.id_empresa;
|
|
532
|
+
this.idEnterprise=+e.id_enterprise;
|
|
533
|
+
this.idPersonal= parseInt(e.id_personal);
|
|
534
|
+
this.idEstudio= parseInt(e.id_estudio);
|
|
535
|
+
this.codigoEstudioRealizado= e.codestrea;
|
|
536
|
+
this.tipoEstudioRealizado= e.tipestrea;
|
|
537
|
+
this.institutoEstudioRealizado= e.insestrea;
|
|
538
|
+
this.descripcionEstudioRealizado= e.desestrea;
|
|
539
|
+
this.tituloEstudioRealizado= e.titestrea;
|
|
540
|
+
this.calificacionEstudioRealizado= +e.calestrea;
|
|
541
|
+
this.escalaValores= e.escval;
|
|
542
|
+
this.fechaInicioEstudioRealizado= e.fecinireaest;
|
|
543
|
+
this.fechaFinEstudioRealizado= e.fecfinestrea;
|
|
544
|
+
this.fechaGradoEstudioRealizado= e.fecgraestrea;
|
|
545
|
+
this.aprobacionEstudioRealizado= e.aprestrea;
|
|
546
|
+
this.anoAprobacionEstudioRealizado= parseInt(e.anoaprestrea);
|
|
547
|
+
this.horasEstudioRealizado= parseInt(e.horestrea);
|
|
548
|
+
this.denominacionEstudioRealizado=this.TipoEstudio.find(e=>e.value==this.tipoEstudioRealizado).denominacion
|
|
549
|
+
this.denominacionAprobacionEstudioRealizado=this.Aprobado.find(e=>e.value==this.aprobacionEstudioRealizado).denominacion
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
public dataInterface():IEstudioRealizado{
|
|
554
|
+
return {
|
|
555
|
+
id_empresa:this.idEmpresa,
|
|
556
|
+
id_enterprise:this.idEnterprise.toString(),
|
|
557
|
+
id_personal:this.idPersonal.toString(),
|
|
558
|
+
id_estudio:this.idEstudio.toString(),
|
|
559
|
+
codestrea:this.codigoEstudioRealizado,
|
|
560
|
+
tipestrea:this.tipoEstudioRealizado,
|
|
561
|
+
insestrea:this.institutoEstudioRealizado,
|
|
562
|
+
desestrea:this.descripcionEstudioRealizado,
|
|
563
|
+
titestrea:this.tituloEstudioRealizado,
|
|
564
|
+
calestrea:this.calificacionEstudioRealizado,
|
|
565
|
+
escval:this.escalaValores,
|
|
566
|
+
fecinireaest:this.fechaInicioEstudioRealizado,
|
|
567
|
+
fecfinestrea:this.fechaFinEstudioRealizado,
|
|
568
|
+
fecgraestrea:this.fechaGradoEstudioRealizado,
|
|
569
|
+
aprestrea:this.aprobacionEstudioRealizado,
|
|
570
|
+
anoaprestrea:this.anoAprobacionEstudioRealizado.toString(),
|
|
571
|
+
horestrea:this.horasEstudioRealizado.toString(),
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
export class MPrestacionesAntiguedad extends MBasicModel{
|
|
577
|
+
public idEmpresa:number=0;
|
|
578
|
+
public idEnterprice:number=0;
|
|
579
|
+
public idPersonal:number=0;
|
|
580
|
+
public idFideicomiso:number=0;
|
|
581
|
+
public anoCurPeriodo:number=0;
|
|
582
|
+
public mesCurPeriodo:number=0;
|
|
583
|
+
public sueldoIntegralPersonal:number=0;
|
|
584
|
+
public bonoExtraPersonal:number=0;
|
|
585
|
+
public bonoVacacionesPersonal:number=0;
|
|
586
|
+
public bonoFinAnnoPersonal:number=0;
|
|
587
|
+
public aportePersonal:number=0;
|
|
588
|
+
public diaFideicomiso:number=0
|
|
589
|
+
public diaAdicional:number=0;
|
|
590
|
+
public metodoPresatciones:string='';
|
|
591
|
+
public metodoDiasAdicionales:string='';
|
|
592
|
+
public bonoVacacionalDiasAdicionalesPersonal:number=0;
|
|
593
|
+
public bonoFinAnnoDiasAdicionalesPersonal:number=0;
|
|
594
|
+
public sueldoIntegralDiasAdicionalesPersonal:number=0;
|
|
595
|
+
public aportePrestacionesPersonal:number=0;
|
|
596
|
+
public aporteAdicionalPersonal:number=0;
|
|
597
|
+
public codigoUsuario:string='';
|
|
598
|
+
public idDtFideicomisoPeriodo:number=0;
|
|
599
|
+
|
|
600
|
+
constructor(e:IPrestacionesAntiguedad=null){
|
|
601
|
+
super();
|
|
602
|
+
if (e) {
|
|
603
|
+
this.idEmpresa=e.id_empresa;
|
|
604
|
+
this.idEmpresa=+e.id_enterprise
|
|
605
|
+
this.idPersonal=parseInt(e.id_personal);
|
|
606
|
+
this.idFideicomiso=parseInt(e.id_fideicomiso);
|
|
607
|
+
this.anoCurPeriodo=parseInt(e.anocurper);
|
|
608
|
+
this.mesCurPeriodo=parseInt(e.mescurper);
|
|
609
|
+
this.sueldoIntegralPersonal=+e.sueintper;
|
|
610
|
+
this.bonoExtraPersonal=+e.bonextper;
|
|
611
|
+
this.bonoVacacionesPersonal=+e.bonvacper;
|
|
612
|
+
this.bonoFinAnnoPersonal=+e.bonfinper;
|
|
613
|
+
this.aportePersonal=+e.apoper;
|
|
614
|
+
this.diaFideicomiso=+e.diafid;
|
|
615
|
+
this.diaAdicional=+e.diaadi;
|
|
616
|
+
this.metodoPresatciones=e.metodopre;
|
|
617
|
+
this.metodoDiasAdicionales=e.metodoadi;
|
|
618
|
+
this.bonoVacacionalDiasAdicionalesPersonal=+e.bonvacadiper;
|
|
619
|
+
this.bonoFinAnnoDiasAdicionalesPersonal=+e.bonfinadiper;
|
|
620
|
+
this.sueldoIntegralDiasAdicionalesPersonal=+e.sueintadiper;
|
|
621
|
+
this.aportePrestacionesPersonal=+e.apopreper;
|
|
622
|
+
this.aporteAdicionalPersonal=+e.apoadiper;
|
|
623
|
+
this.codigoUsuario=e.codusu;
|
|
624
|
+
this.idDtFideicomisoPeriodo=parseInt(e.id_dt_fideiperiodo);
|
|
625
|
+
} else {
|
|
626
|
+
this.isNew=true;
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
public dataInterface():IPrestacionesAntiguedad{
|
|
631
|
+
return{
|
|
632
|
+
id_empresa:this.idEmpresa,
|
|
633
|
+
id_enterprise:this.idEnterprice.toString(),
|
|
634
|
+
id_personal:this.idPersonal.toString(),
|
|
635
|
+
id_fideicomiso:this.idFideicomiso.toString(),
|
|
636
|
+
anocurper:this.anoCurPeriodo.toString(),
|
|
637
|
+
mescurper:this.mesCurPeriodo.toString(),
|
|
638
|
+
sueintper:this.sueldoIntegralPersonal,
|
|
639
|
+
bonextper:this.bonoExtraPersonal,
|
|
640
|
+
bonvacper:this.bonoVacacionesPersonal,
|
|
641
|
+
bonfinper:this.bonoFinAnnoPersonal,
|
|
642
|
+
apoper:this.aportePersonal,
|
|
643
|
+
diafid:this.diaFideicomiso,
|
|
644
|
+
diaadi:this.diaAdicional,
|
|
645
|
+
metodopre:this.metodoPresatciones,
|
|
646
|
+
metodoadi:this.metodoDiasAdicionales,
|
|
647
|
+
bonvacadiper:this.bonoVacacionalDiasAdicionalesPersonal,
|
|
648
|
+
bonfinadiper:this.bonoFinAnnoDiasAdicionalesPersonal,
|
|
649
|
+
sueintadiper:this.sueldoIntegralDiasAdicionalesPersonal,
|
|
650
|
+
apopreper:this.aportePrestacionesPersonal,
|
|
651
|
+
apoadiper:this.aporteAdicionalPersonal,
|
|
652
|
+
codusu:this.codigoUsuario,
|
|
653
|
+
id_dt_fideiperiodo:this.idDtFideicomisoPeriodo.toString(),
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
}
|
|
659
|
+
|