sigesp 1.1.56-20250722 → 1.1.58-20250723
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/esm2020/lib/app/app.component.mjs +14 -0
- package/esm2020/lib/app/app.module.mjs +34 -0
- package/esm2020/lib/core/interfaces/Auditoria.mjs +49 -0
- package/esm2020/lib/core/interfaces/Banco.mjs +2 -0
- package/esm2020/lib/core/interfaces/Catalogo.mjs +2 -0
- package/esm2020/lib/core/interfaces/CentroCosto.mjs +2 -0
- package/esm2020/lib/core/interfaces/Clasificacion.mjs +2 -0
- package/esm2020/lib/core/interfaces/Cliente.mjs +2 -0
- package/esm2020/lib/core/interfaces/ComprobantePresupuestario.mjs +2 -0
- package/esm2020/lib/core/interfaces/Comunidad.mjs +2 -0
- package/esm2020/lib/core/interfaces/Configuracion.mjs +2 -0
- package/esm2020/lib/core/interfaces/ConfiguracionRPC.mjs +2 -0
- package/esm2020/lib/core/interfaces/ConfiguracionSCG.mjs +2 -0
- package/esm2020/lib/core/interfaces/ConfigurationSPG.mjs +2 -0
- package/esm2020/lib/core/interfaces/Constantes.mjs +369 -0
- package/esm2020/lib/core/interfaces/CuentaEgresos.mjs +2 -0
- package/esm2020/lib/core/interfaces/CuentaIngreso.mjs +2 -0
- package/esm2020/lib/core/interfaces/CuentaIngresoEstructura.mjs +2 -0
- package/esm2020/lib/core/interfaces/CuentaInstitucional.mjs +2 -0
- package/esm2020/lib/core/interfaces/CuentaPresupuesto.mjs +2 -0
- package/esm2020/lib/core/interfaces/CuentasPorPagar.mjs +2 -0
- package/esm2020/lib/core/interfaces/Documento.mjs +2 -0
- package/esm2020/lib/core/interfaces/EntradaSuministro.mjs +2 -0
- package/esm2020/lib/core/interfaces/Especialidad.mjs +2 -0
- package/esm2020/lib/core/interfaces/EstructuraPresupuestaria.mjs +2 -0
- package/esm2020/lib/core/interfaces/FuenteFinanciamiento.mjs +2 -0
- package/esm2020/lib/core/interfaces/IBancoCuentasPorPagar.mjs +2 -0
- package/esm2020/lib/core/interfaces/ITipoDepositos.mjs +2 -0
- package/esm2020/lib/core/interfaces/Integracion.mjs +2 -0
- package/esm2020/lib/core/interfaces/Lugares.mjs +2 -0
- package/esm2020/lib/core/interfaces/Moneda.mjs +2 -0
- package/esm2020/lib/core/interfaces/Nomina.mjs +29 -0
- package/esm2020/lib/core/interfaces/PlanUnicoCuenta.mjs +2 -0
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +2 -0
- package/esm2020/lib/core/interfaces/Proveedor.mjs +2 -0
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +4 -0
- package/esm2020/lib/core/interfaces/Request.mjs +2 -0
- package/esm2020/lib/core/interfaces/Response.mjs +2 -0
- package/esm2020/lib/core/interfaces/Seguridad.mjs +2 -0
- package/esm2020/lib/core/interfaces/Servicios.mjs +2 -0
- package/esm2020/lib/core/interfaces/Sistema.mjs +2 -0
- package/esm2020/lib/core/interfaces/Tributos.mjs +2 -0
- package/esm2020/lib/core/interfaces/UnidadTributaria.mjs +2 -0
- package/esm2020/lib/core/interfaces/Usuario.mjs +2 -0
- package/esm2020/lib/core/interfaces/UsuarioPrefijo.mjs +2 -0
- package/esm2020/lib/core/models/CFG/Empresa.model.mjs +115 -0
- package/esm2020/lib/core/models/CFG/Enterprise.model.mjs +70 -0
- package/esm2020/lib/core/models/CFG/MPrefijo.model.mjs +67 -0
- package/esm2020/lib/core/models/CFG/Procede.model.mjs +31 -0
- package/esm2020/lib/core/models/CFG/TasaCambio.model.mjs +40 -0
- package/esm2020/lib/core/models/CFG/comunidad.model.mjs +22 -0
- package/esm2020/lib/core/models/CFG/locations.model.mjs +170 -0
- package/esm2020/lib/core/models/CFG/moneda.model.mjs +72 -0
- package/esm2020/lib/core/models/CFG/userPrefix.model.mjs +49 -0
- package/esm2020/lib/core/models/CXP/MConceptosCXP.model.mjs +34 -0
- package/esm2020/lib/core/models/CXP/MTipoDocumentoCXP.model.mjs +44 -0
- package/esm2020/lib/core/models/RPC/clasification.model.mjs +16 -0
- package/esm2020/lib/core/models/RPC/configuracionRPC.model.mjs +23 -0
- package/esm2020/lib/core/models/RPC/document.model.mjs +16 -0
- package/esm2020/lib/core/models/RPC/proveedores.model.mjs +9 -0
- package/esm2020/lib/core/models/RPC/providerBeneficiary.model.mjs +285 -0
- package/esm2020/lib/core/models/RPC/specialty.model.mjs +12 -0
- package/esm2020/lib/core/models/SCB/bank.model.mjs +181 -0
- package/esm2020/lib/core/models/SCG/IncomeAccount.mjs +127 -0
- package/esm2020/lib/core/models/SCG/accountMarriage.model.mjs +29 -0
- package/esm2020/lib/core/models/SCG/centroCosto.model.mjs +75 -0
- package/esm2020/lib/core/models/SCG/configuracionSCG.model.mjs +161 -0
- package/esm2020/lib/core/models/SCG/cuentaInstitucional.model.mjs +95 -0
- package/esm2020/lib/core/models/SCG/planUnicoCuenta.model.mjs +17 -0
- package/esm2020/lib/core/models/SFV/MClienteModel.mjs +116 -0
- package/esm2020/lib/core/models/SIV/MDetaContable.model.mjs +62 -0
- package/esm2020/lib/core/models/SIV/MDetaEntrada.model.mjs +94 -0
- package/esm2020/lib/core/models/SIV/MEntradaSuministro.model.mjs +132 -0
- package/esm2020/lib/core/models/SIV/MTipoDepositos.model.mjs +103 -0
- package/esm2020/lib/core/models/SNO/MAnticipoPrestaciones.model.mjs +100 -0
- package/esm2020/lib/core/models/SNO/MArchivoTxtCampo.model.mjs +61 -0
- package/esm2020/lib/core/models/SNO/MArchivosTxt.model.mjs +41 -0
- package/esm2020/lib/core/models/SNO/MAsignacionCargo.model.mjs +221 -0
- package/esm2020/lib/core/models/SNO/MAspectoEvaluacion.model.mjs +90 -0
- package/esm2020/lib/core/models/SNO/MAuditoria.model.mjs +61 -0
- package/esm2020/lib/core/models/SNO/MBeneficiario.model.mjs +137 -0
- package/esm2020/lib/core/models/SNO/MCargaFamiliar.model.mjs +52 -0
- package/esm2020/lib/core/models/SNO/MCargaMasiva.model.mjs +34 -0
- package/esm2020/lib/core/models/SNO/MCargosPersonal.model.mjs +116 -0
- package/esm2020/lib/core/models/SNO/MClasificacionObrero.mdel.mjs +46 -0
- package/esm2020/lib/core/models/SNO/MCodigoUnicoRac.model.mjs +39 -0
- package/esm2020/lib/core/models/SNO/MComponete.model.mjs +38 -0
- package/esm2020/lib/core/models/SNO/MConceptoVacaciones.model.mjs +85 -0
- package/esm2020/lib/core/models/SNO/MConceptosNomina.model.mjs +241 -0
- package/esm2020/lib/core/models/SNO/MConceptosPersonalNomina.model.mjs +97 -0
- package/esm2020/lib/core/models/SNO/MConcursante.model.mjs +317 -0
- package/esm2020/lib/core/models/SNO/MConcurso.model.mjs +246 -0
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +416 -0
- package/esm2020/lib/core/models/SNO/MConstanteNomina.model.mjs +70 -0
- package/esm2020/lib/core/models/SNO/MConstantePersonalNomina.model.mjs +79 -0
- package/esm2020/lib/core/models/SNO/MDedicacion.model.mjs +35 -0
- package/esm2020/lib/core/models/SNO/MDefinicionNomina.model.mjs +304 -0
- package/esm2020/lib/core/models/SNO/MDefinicionesBasicas.model.mjs +72 -0
- package/esm2020/lib/core/models/SNO/MDeudaAnterior.model.mjs +40 -0
- package/esm2020/lib/core/models/SNO/MEncargaduria.model.mjs +138 -0
- package/esm2020/lib/core/models/SNO/MEscalaEvaluacion.model.mjs +38 -0
- package/esm2020/lib/core/models/SNO/MEscalaEvaluacionDt.model.mjs +37 -0
- package/esm2020/lib/core/models/SNO/MEstructuraOrganizativa.model.mjs +130 -0
- package/esm2020/lib/core/models/SNO/MFamiliares.model.mjs +86 -0
- package/esm2020/lib/core/models/SNO/MFeriados.model.mjs +43 -0
- package/esm2020/lib/core/models/SNO/MFideicomiso.model.mjs +406 -0
- package/esm2020/lib/core/models/SNO/MFormacionAcademica.model.mjs +49 -0
- package/esm2020/lib/core/models/SNO/MGrado.model.mjs +44 -0
- package/esm2020/lib/core/models/SNO/MHojaTiempo.model.mjs +117 -0
- package/esm2020/lib/core/models/SNO/MImpuestoSobreRenta.model.mjs +73 -0
- package/esm2020/lib/core/models/SNO/MMetodoBanco.model.mjs +105 -0
- package/esm2020/lib/core/models/SNO/MNominaSimple.model.mjs +79 -0
- package/esm2020/lib/core/models/SNO/MPeriodoNomina.model.mjs +201 -0
- package/esm2020/lib/core/models/SNO/MPermisos.model.mjs +68 -0
- package/esm2020/lib/core/models/SNO/MPersonal.model.mjs +638 -0
- package/esm2020/lib/core/models/SNO/MPersonalJubilado.model.mjs +64 -0
- package/esm2020/lib/core/models/SNO/MPersonalNomina.model.mjs +315 -0
- package/esm2020/lib/core/models/SNO/MPlanHorario.model.mjs +117 -0
- package/esm2020/lib/core/models/SNO/MPlantillaConstancia.model.mjs +31 -0
- package/esm2020/lib/core/models/SNO/MPrestamo.model.mjs +221 -0
- package/esm2020/lib/core/models/SNO/MPrimaGrados.model.mjs +43 -0
- package/esm2020/lib/core/models/SNO/MPrimasConcepto.model.mjs +43 -0
- package/esm2020/lib/core/models/SNO/MRango.model.mjs +43 -0
- package/esm2020/lib/core/models/SNO/MReportesRRHH.mjs +402 -0
- package/esm2020/lib/core/models/SNO/MRequisitosConcursante.model.mjs +46 -0
- package/esm2020/lib/core/models/SNO/MRequisitosConcursos.model.mjs +37 -0
- package/esm2020/lib/core/models/SNO/MRequisitosMinimos.model.mjs +113 -0
- package/esm2020/lib/core/models/SNO/MSalarioHistorico.model.mjs +70 -0
- package/esm2020/lib/core/models/SNO/MSolicitudEmpleo.model.mjs +121 -0
- package/esm2020/lib/core/models/SNO/MTablaVacaciones.model.mjs +57 -0
- package/esm2020/lib/core/models/SNO/MTablaVacacionesPeriodo.model.mjs +40 -0
- package/esm2020/lib/core/models/SNO/MTabulador.model.mjs +96 -0
- package/esm2020/lib/core/models/SNO/MTipoEvaluacion.model.mjs +75 -0
- package/esm2020/lib/core/models/SNO/MTipoPersonal.model.mjs +34 -0
- package/esm2020/lib/core/models/SNO/MTiposEnfermedad.model.mjs +37 -0
- package/esm2020/lib/core/models/SNO/MTrabajoAnterior.model.mjs +65 -0
- package/esm2020/lib/core/models/SNO/MUbicacionFisica.model.mjs +61 -0
- package/esm2020/lib/core/models/SNO/MVacacionesPersonal.model.mjs +115 -0
- package/esm2020/lib/core/models/SOC/charge.model.mjs +69 -0
- package/esm2020/lib/core/models/SOC/clause.model.mjs +34 -0
- package/esm2020/lib/core/models/SOC/clauseModality.model.mjs +38 -0
- package/esm2020/lib/core/models/SOC/configuracionSOC.model.mjs +65 -0
- package/esm2020/lib/core/models/SOC/service.model.mjs +49 -0
- package/esm2020/lib/core/models/SOC/serviceCharge.model.mjs +40 -0
- package/esm2020/lib/core/models/SOC/serviceType.model.mjs +34 -0
- package/esm2020/lib/core/models/SPG/UnidadAdministradoraCentral.mjs +46 -0
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +143 -0
- package/esm2020/lib/core/models/SPG/comprobantePresupuestario.model.mjs +101 -0
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +120 -0
- package/esm2020/lib/core/models/SPG/cuentaPresupuesto.model.mjs +184 -0
- package/esm2020/lib/core/models/SPG/estructuraPresupuestaria.model.mjs +186 -0
- package/esm2020/lib/core/models/SPG/expensiveAccount.model.mjs +100 -0
- package/esm2020/lib/core/models/SPG/fuenteFinanciamiento.model.mjs +52 -0
- package/esm2020/lib/core/models/SPG/incomeStructureAccount.model.mjs +85 -0
- package/esm2020/lib/core/models/SPG/organizationType.model.mjs +12 -0
- package/esm2020/lib/core/models/SSS/component.model.mjs +44 -0
- package/esm2020/lib/core/models/SSS/group.model.mjs +30 -0
- package/esm2020/lib/core/models/SSS/log.model.mjs +29 -0
- package/esm2020/lib/core/models/SSS/securityConfiguration.model.mjs +20 -0
- package/esm2020/lib/core/models/SSS/sistema.mjs +73 -0
- package/esm2020/lib/core/models/SSS/user.model.mjs +32 -0
- package/esm2020/lib/core/models/SSS/userDetail.model.mjs +79 -0
- package/esm2020/lib/core/models/SSS/userPermit.model.mjs +47 -0
- package/esm2020/lib/core/models/SSS/userRights.model.mjs +104 -0
- package/esm2020/lib/core/models/STB/MCargosAdicionales.mjs +87 -0
- package/esm2020/lib/core/models/STB/deduction.model.mjs +90 -0
- package/esm2020/lib/core/models/STB/deductionType.model.mjs +20 -0
- package/esm2020/lib/core/models/STB/unidadTributaria.model.mjs +14 -0
- package/esm2020/lib/core/models/basic-model.model.mjs +8 -0
- package/esm2020/lib/shared/components/catalogo/catalogo.component.mjs +76 -0
- package/esm2020/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.mjs +87 -0
- package/esm2020/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.mjs +74 -0
- package/esm2020/lib/shared/components/confirm/confirm.component.mjs +35 -0
- package/esm2020/lib/shared/components/icon/icon.component.mjs +22 -0
- package/esm2020/lib/shared/components/table-select/table-select.component.mjs +99 -0
- package/esm2020/lib/shared/material/customPaginator.mjs +24 -0
- package/esm2020/lib/shared/material/material.module.mjs +322 -0
- package/esm2020/lib/shared/pipes/iso-currency.pipe.mjs +43 -0
- package/esm2020/lib/shared/shared.module.mjs +66 -0
- package/esm2020/lib/sigesp.service.mjs +1829 -0
- package/esm2020/lib/validation.service.mjs +131 -0
- package/esm2020/public-api.mjs +156 -0
- package/esm2020/sigesp.mjs +5 -0
- package/fesm2015/sigesp.mjs +14901 -0
- package/fesm2015/sigesp.mjs.map +1 -0
- package/fesm2020/sigesp.mjs +14864 -0
- package/fesm2020/sigesp.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/app/app.component.d.ts +8 -0
- package/lib/app/app.module.d.ts +10 -0
- package/lib/core/interfaces/Auditoria.d.ts +19 -0
- package/lib/core/interfaces/Banco.d.ts +599 -0
- package/lib/core/interfaces/Catalogo.d.ts +13 -0
- package/lib/core/interfaces/CentroCosto.d.ts +21 -0
- package/lib/core/interfaces/Clasificacion.d.ts +6 -0
- package/lib/core/interfaces/Cliente.d.ts +36 -0
- package/lib/core/interfaces/ComprobantePresupuestario.d.ts +51 -0
- package/lib/core/interfaces/Comunidad.d.ts +12 -0
- package/lib/core/interfaces/Configuracion.d.ts +91 -0
- package/lib/core/interfaces/ConfiguracionRPC.d.ts +10 -0
- package/lib/core/interfaces/ConfiguracionSCG.d.ts +52 -0
- package/lib/core/interfaces/ConfigurationSPG.d.ts +49 -0
- package/lib/core/interfaces/Constantes.d.ts +85 -0
- package/lib/core/interfaces/CuentaEgresos.d.ts +158 -0
- package/lib/core/interfaces/CuentaIngreso.d.ts +38 -0
- package/lib/core/interfaces/CuentaIngresoEstructura.d.ts +26 -0
- package/lib/core/interfaces/CuentaInstitucional.d.ts +28 -0
- package/lib/core/interfaces/CuentaPresupuesto.d.ts +9 -0
- package/lib/core/interfaces/CuentasPorPagar.d.ts +37 -0
- package/lib/core/interfaces/Documento.d.ts +6 -0
- package/lib/core/interfaces/EntradaSuministro.d.ts +87 -0
- package/lib/core/interfaces/Especialidad.d.ts +4 -0
- package/lib/core/interfaces/EstructuraPresupuestaria.d.ts +83 -0
- package/lib/core/interfaces/FuenteFinanciamiento.d.ts +14 -0
- package/lib/core/interfaces/IBancoCuentasPorPagar.d.ts +190 -0
- package/lib/core/interfaces/ITipoDepositos.d.ts +31 -0
- package/lib/core/interfaces/Integracion.d.ts +6 -0
- package/lib/core/interfaces/Lugares.d.ts +40 -0
- package/lib/core/interfaces/Moneda.d.ts +20 -0
- package/lib/core/interfaces/Nomina.d.ts +554 -0
- package/lib/core/interfaces/PlanUnicoCuenta.d.ts +4 -0
- package/lib/core/interfaces/Presupuesto.d.ts +134 -0
- package/{projects/sigesp/src/lib/core/interfaces/Proveedor.ts → lib/core/interfaces/Proveedor.d.ts} +22 -26
- package/lib/core/interfaces/RecursosHumanos.d.ts +1627 -0
- package/{projects/sigesp/src/lib/core/interfaces/Request.ts → lib/core/interfaces/Request.d.ts} +3 -4
- package/lib/core/interfaces/Response.d.ts +7 -0
- package/lib/core/interfaces/Seguridad.d.ts +112 -0
- package/lib/core/interfaces/Servicios.d.ts +64 -0
- package/lib/core/interfaces/Sistema.d.ts +19 -0
- package/lib/core/interfaces/Tributos.d.ts +75 -0
- package/lib/core/interfaces/UnidadTributaria.d.ts +11 -0
- package/lib/core/interfaces/Usuario.d.ts +52 -0
- package/lib/core/interfaces/UsuarioPrefijo.d.ts +13 -0
- package/lib/core/models/CFG/Empresa.model.d.ts +39 -0
- package/lib/core/models/CFG/Enterprise.model.d.ts +24 -0
- package/lib/core/models/CFG/MPrefijo.model.d.ts +23 -0
- package/lib/core/models/CFG/Procede.model.d.ts +11 -0
- package/lib/core/models/CFG/TasaCambio.model.d.ts +14 -0
- package/lib/core/models/CFG/comunidad.model.d.ts +15 -0
- package/lib/core/models/CFG/locations.model.d.ts +54 -0
- package/lib/core/models/CFG/moneda.model.d.ts +26 -0
- package/lib/core/models/CFG/userPrefix.model.d.ts +17 -0
- package/lib/core/models/CXP/MConceptosCXP.model.d.ts +12 -0
- package/lib/core/models/CXP/MTipoDocumentoCXP.model.d.ts +16 -0
- package/lib/core/models/RPC/clasification.model.d.ts +11 -0
- package/lib/core/models/RPC/configuracionRPC.model.d.ts +12 -0
- package/lib/core/models/RPC/document.model.d.ts +11 -0
- package/lib/core/models/RPC/proveedores.model.d.ts +8 -0
- package/lib/core/models/RPC/providerBeneficiary.model.d.ts +116 -0
- package/lib/core/models/RPC/specialty.model.d.ts +9 -0
- package/lib/core/models/SCB/bank.model.d.ts +63 -0
- package/lib/core/models/SCG/IncomeAccount.d.ts +45 -0
- package/lib/core/models/SCG/accountMarriage.model.d.ts +11 -0
- package/lib/core/models/SCG/centroCosto.model.d.ts +27 -0
- package/lib/core/models/SCG/configuracionSCG.model.d.ts +56 -0
- package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +34 -0
- package/lib/core/models/SCG/planUnicoCuenta.model.d.ts +8 -0
- package/lib/core/models/SFV/MClienteModel.d.ts +40 -0
- package/lib/core/models/SIV/MDetaContable.model.d.ts +21 -0
- package/lib/core/models/SIV/MDetaEntrada.model.d.ts +33 -0
- package/lib/core/models/SIV/MEntradaSuministro.model.d.ts +47 -0
- package/lib/core/models/SIV/MTipoDepositos.model.d.ts +35 -0
- package/lib/core/models/SNO/MAnticipoPrestaciones.model.d.ts +32 -0
- package/lib/core/models/SNO/MArchivoTxtCampo.model.d.ts +21 -0
- package/lib/core/models/SNO/MArchivosTxt.model.d.ts +15 -0
- package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +87 -0
- package/lib/core/models/SNO/MAspectoEvaluacion.model.d.ts +30 -0
- package/lib/core/models/SNO/MAuditoria.model.d.ts +21 -0
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +48 -0
- package/lib/core/models/SNO/MCargaFamiliar.model.d.ts +18 -0
- package/lib/core/models/SNO/MCargaMasiva.model.d.ts +12 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +48 -0
- package/lib/core/models/SNO/MClasificacionObrero.mdel.d.ts +16 -0
- package/lib/core/models/SNO/MCodigoUnicoRac.model.d.ts +14 -0
- package/lib/core/models/SNO/MComponete.model.d.ts +14 -0
- package/lib/core/models/SNO/MConceptoVacaciones.model.d.ts +30 -0
- package/lib/core/models/SNO/MConceptosNomina.model.d.ts +84 -0
- package/lib/core/models/SNO/MConceptosPersonalNomina.model.d.ts +34 -0
- package/lib/core/models/SNO/MConcursante.model.d.ts +104 -0
- package/lib/core/models/SNO/MConcurso.model.d.ts +83 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +140 -0
- package/lib/core/models/SNO/MConstanteNomina.model.d.ts +24 -0
- package/lib/core/models/SNO/MConstantePersonalNomina.model.d.ts +27 -0
- package/lib/core/models/SNO/MDedicacion.model.d.ts +13 -0
- package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +115 -0
- package/lib/core/models/SNO/MDefinicionesBasicas.model.d.ts +25 -0
- package/lib/core/models/SNO/MDeudaAnterior.model.d.ts +14 -0
- package/lib/core/models/SNO/MEncargaduria.model.d.ts +47 -0
- package/lib/core/models/SNO/MEscalaEvaluacion.model.d.ts +15 -0
- package/lib/core/models/SNO/MEscalaEvaluacionDt.model.d.ts +14 -0
- package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +46 -0
- package/lib/core/models/SNO/MFamiliares.model.d.ts +31 -0
- package/lib/core/models/SNO/MFeriados.model.d.ts +16 -0
- package/lib/core/models/SNO/MFideicomiso.model.d.ts +143 -0
- package/lib/core/models/SNO/MFormacionAcademica.model.d.ts +18 -0
- package/lib/core/models/SNO/MGrado.model.d.ts +18 -0
- package/lib/core/models/SNO/MHojaTiempo.model.d.ts +40 -0
- package/lib/core/models/SNO/MImpuestoSobreRenta.model.d.ts +25 -0
- package/lib/core/models/SNO/MMetodoBanco.model.d.ts +35 -0
- package/lib/core/models/SNO/MNominaSimple.model.d.ts +34 -0
- package/lib/core/models/SNO/MPeriodoNomina.model.d.ts +57 -0
- package/lib/core/models/SNO/MPermisos.model.d.ts +24 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +219 -0
- package/lib/core/models/SNO/MPersonalJubilado.model.d.ts +23 -0
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +102 -0
- package/lib/core/models/SNO/MPlanHorario.model.d.ts +41 -0
- package/lib/core/models/SNO/MPlantillaConstancia.model.d.ts +11 -0
- package/lib/core/models/SNO/MPrestamo.model.d.ts +69 -0
- package/lib/core/models/SNO/MPrimaGrados.model.d.ts +15 -0
- package/lib/core/models/SNO/MPrimasConcepto.model.d.ts +15 -0
- package/lib/core/models/SNO/MRango.model.d.ts +15 -0
- package/lib/core/models/SNO/MReportesRRHH.d.ts +130 -0
- package/lib/core/models/SNO/MRequisitosConcursante.model.d.ts +16 -0
- package/lib/core/models/SNO/MRequisitosConcursos.model.d.ts +14 -0
- package/lib/core/models/SNO/MRequisitosMinimos.model.d.ts +39 -0
- package/lib/core/models/SNO/MSalarioHistorico.model.d.ts +25 -0
- package/lib/core/models/SNO/MSolicitudEmpleo.model.d.ts +42 -0
- package/lib/core/models/SNO/MTablaVacaciones.model.d.ts +15 -0
- package/lib/core/models/SNO/MTablaVacacionesPeriodo.model.d.ts +15 -0
- package/lib/core/models/SNO/MTabulador.model.d.ts +39 -0
- package/lib/core/models/SNO/MTipoEvaluacion.model.d.ts +28 -0
- package/lib/core/models/SNO/MTipoPersonal.model.d.ts +13 -0
- package/lib/core/models/SNO/MTiposEnfermedad.model.d.ts +14 -0
- package/lib/core/models/SNO/MTrabajoAnterior.model.d.ts +24 -0
- package/lib/core/models/SNO/MUbicacionFisica.model.d.ts +21 -0
- package/lib/core/models/SNO/MVacacionesPersonal.model.d.ts +40 -0
- package/lib/core/models/SOC/charge.model.d.ts +25 -0
- package/lib/core/models/SOC/clause.model.d.ts +12 -0
- package/lib/core/models/SOC/clauseModality.model.d.ts +14 -0
- package/lib/core/models/SOC/configuracionSOC.model.d.ts +21 -0
- package/lib/core/models/SOC/service.model.d.ts +17 -0
- package/lib/core/models/SOC/serviceCharge.model.d.ts +14 -0
- package/lib/core/models/SOC/serviceType.model.d.ts +12 -0
- package/lib/core/models/SPG/UnidadAdministradoraCentral.d.ts +16 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +69 -0
- package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +56 -0
- package/lib/core/models/SPG/configurationSPG.model.d.ts +46 -0
- package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +65 -0
- package/lib/core/models/SPG/estructuraPresupuestaria.model.d.ts +119 -0
- package/lib/core/models/SPG/expensiveAccount.model.d.ts +50 -0
- package/lib/core/models/SPG/fuenteFinanciamiento.model.d.ts +18 -0
- package/lib/core/models/SPG/incomeStructureAccount.model.d.ts +40 -0
- package/lib/core/models/SPG/organizationType.model.d.ts +9 -0
- package/lib/core/models/SSS/component.model.d.ts +16 -0
- package/lib/core/models/SSS/group.model.d.ts +16 -0
- package/lib/core/models/SSS/log.model.d.ts +15 -0
- package/lib/core/models/SSS/securityConfiguration.model.d.ts +9 -0
- package/lib/core/models/SSS/sistema.d.ts +25 -0
- package/lib/core/models/SSS/user.model.d.ts +22 -0
- package/lib/core/models/SSS/userDetail.model.d.ts +28 -0
- package/lib/core/models/SSS/userPermit.model.d.ts +18 -0
- package/lib/core/models/SSS/userRights.model.d.ts +35 -0
- package/lib/core/models/STB/MCargosAdicionales.d.ts +33 -0
- package/lib/core/models/STB/deduction.model.d.ts +30 -0
- package/lib/core/models/STB/deductionType.model.d.ts +9 -0
- package/lib/core/models/STB/unidadTributaria.model.d.ts +13 -0
- package/lib/core/models/basic-model.model.d.ts +6 -0
- package/lib/shared/components/catalogo/catalogo.component.d.ts +35 -0
- package/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.d.ts +39 -0
- package/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.d.ts +38 -0
- package/lib/shared/components/confirm/confirm.component.d.ts +21 -0
- package/lib/shared/components/icon/icon.component.d.ts +11 -0
- package/lib/shared/components/table-select/table-select.component.d.ts +39 -0
- package/lib/shared/material/customPaginator.d.ts +9 -0
- package/lib/shared/material/material.module.d.ts +48 -0
- package/lib/shared/pipes/iso-currency.pipe.d.ts +13 -0
- package/lib/shared/shared.module.d.ts +16 -0
- package/lib/sigesp.service.d.ts +901 -0
- package/lib/validation.service.d.ts +15 -0
- package/package.json +31 -73
- package/public-api.d.ts +164 -0
- package/.browserslistrc +0 -12
- package/.editorconfig +0 -13
- package/angular.json +0 -161
- package/e2e/protractor.conf.js +0 -32
- package/e2e/src/app.e2e-spec.ts +0 -23
- package/e2e/src/app.po.ts +0 -11
- package/e2e/tsconfig.json +0 -13
- package/karma.conf.js +0 -32
- package/lib +0 -0
- package/projects/sigesp/README.md +0 -24
- package/projects/sigesp/karma.conf.js +0 -32
- package/projects/sigesp/ng-package.json +0 -7
- package/projects/sigesp/package.json +0 -11
- package/projects/sigesp/src/lib/app/app.component.html +0 -1
- package/projects/sigesp/src/lib/app/app.component.scss +0 -0
- package/projects/sigesp/src/lib/app/app.component.ts +0 -15
- package/projects/sigesp/src/lib/app/app.module.ts +0 -21
- package/projects/sigesp/src/lib/core/interfaces/Auditoria.ts +0 -72
- package/projects/sigesp/src/lib/core/interfaces/Banco.ts +0 -639
- package/projects/sigesp/src/lib/core/interfaces/Catalogo.ts +0 -15
- package/projects/sigesp/src/lib/core/interfaces/CentroCosto.ts +0 -22
- package/projects/sigesp/src/lib/core/interfaces/Clasificacion.ts +0 -6
- package/projects/sigesp/src/lib/core/interfaces/Cliente.ts +0 -36
- package/projects/sigesp/src/lib/core/interfaces/ComprobantePresupuestario.ts +0 -52
- package/projects/sigesp/src/lib/core/interfaces/Comunidad.ts +0 -12
- package/projects/sigesp/src/lib/core/interfaces/Configuracion.ts +0 -100
- package/projects/sigesp/src/lib/core/interfaces/ConfiguracionRPC.ts +0 -10
- package/projects/sigesp/src/lib/core/interfaces/ConfiguracionSCG.ts +0 -53
- package/projects/sigesp/src/lib/core/interfaces/ConfigurationSPG.ts +0 -51
- package/projects/sigesp/src/lib/core/interfaces/Constantes.ts +0 -468
- package/projects/sigesp/src/lib/core/interfaces/CuentaEgresos.ts +0 -164
- package/projects/sigesp/src/lib/core/interfaces/CuentaIngreso.ts +0 -38
- package/projects/sigesp/src/lib/core/interfaces/CuentaIngresoEstructura.ts +0 -27
- package/projects/sigesp/src/lib/core/interfaces/CuentaInstitucional.ts +0 -28
- package/projects/sigesp/src/lib/core/interfaces/CuentaPresupuesto.ts +0 -10
- package/projects/sigesp/src/lib/core/interfaces/CuentasPorPagar.ts +0 -40
- package/projects/sigesp/src/lib/core/interfaces/Documento.ts +0 -6
- package/projects/sigesp/src/lib/core/interfaces/EntradaSuministro.ts +0 -93
- package/projects/sigesp/src/lib/core/interfaces/Especialidad.ts +0 -4
- package/projects/sigesp/src/lib/core/interfaces/EstructuraPresupuestaria.ts +0 -90
- package/projects/sigesp/src/lib/core/interfaces/FuenteFinanciamiento.ts +0 -14
- package/projects/sigesp/src/lib/core/interfaces/IBancoCuentasPorPagar.ts +0 -196
- package/projects/sigesp/src/lib/core/interfaces/ITipoDepositos.ts +0 -32
- package/projects/sigesp/src/lib/core/interfaces/Integracion.ts +0 -6
- package/projects/sigesp/src/lib/core/interfaces/Lugares.ts +0 -45
- package/projects/sigesp/src/lib/core/interfaces/Moneda.ts +0 -22
- package/projects/sigesp/src/lib/core/interfaces/Nomina.ts +0 -614
- package/projects/sigesp/src/lib/core/interfaces/PlanUnicoCuenta.ts +0 -4
- package/projects/sigesp/src/lib/core/interfaces/Presupuesto.ts +0 -145
- package/projects/sigesp/src/lib/core/interfaces/RecursosHumanos.ts +0 -1743
- package/projects/sigesp/src/lib/core/interfaces/Response.ts +0 -7
- package/projects/sigesp/src/lib/core/interfaces/Seguridad.ts +0 -120
- package/projects/sigesp/src/lib/core/interfaces/Servicios.ts +0 -70
- package/projects/sigesp/src/lib/core/interfaces/Sistema.ts +0 -21
- package/projects/sigesp/src/lib/core/interfaces/Tributos.ts +0 -80
- package/projects/sigesp/src/lib/core/interfaces/UnidadTributaria.ts +0 -11
- package/projects/sigesp/src/lib/core/interfaces/Usuario.ts +0 -57
- package/projects/sigesp/src/lib/core/interfaces/UsuarioPrefijo.ts +0 -13
- package/projects/sigesp/src/lib/core/models/CFG/Empresa.model.ts +0 -121
- package/projects/sigesp/src/lib/core/models/CFG/Enterprise.model.ts +0 -74
- package/projects/sigesp/src/lib/core/models/CFG/MPrefijo.model.ts +0 -69
- package/projects/sigesp/src/lib/core/models/CFG/Procede.model.ts +0 -34
- package/projects/sigesp/src/lib/core/models/CFG/TasaCambio.model.ts +0 -43
- package/projects/sigesp/src/lib/core/models/CFG/comunidad.model.ts +0 -34
- package/projects/sigesp/src/lib/core/models/CFG/locations.model.ts +0 -189
- package/projects/sigesp/src/lib/core/models/CFG/moneda.model.ts +0 -82
- package/projects/sigesp/src/lib/core/models/CFG/userPrefix.model.ts +0 -51
- package/projects/sigesp/src/lib/core/models/CXP/MConceptosCXP.model.ts +0 -36
- package/projects/sigesp/src/lib/core/models/CXP/MTipoDocumentoCXP.model.ts +0 -49
- package/projects/sigesp/src/lib/core/models/RPC/clasification.model.ts +0 -22
- package/projects/sigesp/src/lib/core/models/RPC/configuracionRPC.model.ts +0 -27
- package/projects/sigesp/src/lib/core/models/RPC/document.model.ts +0 -20
- package/projects/sigesp/src/lib/core/models/RPC/proveedores.model.ts +0 -15
- package/projects/sigesp/src/lib/core/models/RPC/providerBeneficiary.model.ts +0 -316
- package/projects/sigesp/src/lib/core/models/RPC/specialty.model.ts +0 -14
- package/projects/sigesp/src/lib/core/models/SCB/bank.model.ts +0 -205
- package/projects/sigesp/src/lib/core/models/SCG/IncomeAccount.ts +0 -134
- package/projects/sigesp/src/lib/core/models/SCG/accountMarriage.model.ts +0 -33
- package/projects/sigesp/src/lib/core/models/SCG/centroCosto.model.ts +0 -83
- package/projects/sigesp/src/lib/core/models/SCG/configuracionSCG.model.ts +0 -166
- package/projects/sigesp/src/lib/core/models/SCG/cuentaInstitucional.model.ts +0 -97
- package/projects/sigesp/src/lib/core/models/SCG/planUnicoCuenta.model.ts +0 -22
- package/projects/sigesp/src/lib/core/models/SFV/MClienteModel.ts +0 -119
- package/projects/sigesp/src/lib/core/models/SIV/MDetaContable.model.ts +0 -65
- package/projects/sigesp/src/lib/core/models/SIV/MDetaEntrada.model.ts +0 -98
- package/projects/sigesp/src/lib/core/models/SIV/MEntradaSuministro.model.ts +0 -135
- package/projects/sigesp/src/lib/core/models/SIV/MTipoDepositos.model.ts +0 -109
- package/projects/sigesp/src/lib/core/models/SNO/MAnticipoPrestaciones.model.ts +0 -112
- package/projects/sigesp/src/lib/core/models/SNO/MArchivoTxtCampo.model.ts +0 -63
- package/projects/sigesp/src/lib/core/models/SNO/MArchivosTxt.model.ts +0 -53
- package/projects/sigesp/src/lib/core/models/SNO/MAsignacionCargo.model.ts +0 -235
- package/projects/sigesp/src/lib/core/models/SNO/MAspectoEvaluacion.model.ts +0 -97
- package/projects/sigesp/src/lib/core/models/SNO/MAuditoria.model.ts +0 -67
- package/projects/sigesp/src/lib/core/models/SNO/MBeneficiario.model.ts +0 -139
- package/projects/sigesp/src/lib/core/models/SNO/MCargaFamiliar.model.ts +0 -54
- package/projects/sigesp/src/lib/core/models/SNO/MCargaMasiva.model.ts +0 -37
- package/projects/sigesp/src/lib/core/models/SNO/MCargosPersonal.model.ts +0 -123
- package/projects/sigesp/src/lib/core/models/SNO/MClasificacionObrero.mdel.ts +0 -48
- package/projects/sigesp/src/lib/core/models/SNO/MCodigoUnicoRac.model.ts +0 -41
- package/projects/sigesp/src/lib/core/models/SNO/MComponete.model.ts +0 -40
- package/projects/sigesp/src/lib/core/models/SNO/MConceptoVacaciones.model.ts +0 -94
- package/projects/sigesp/src/lib/core/models/SNO/MConceptosNomina.model.ts +0 -246
- package/projects/sigesp/src/lib/core/models/SNO/MConceptosPersonalNomina.model.ts +0 -103
- package/projects/sigesp/src/lib/core/models/SNO/MConcursante.model.ts +0 -333
- package/projects/sigesp/src/lib/core/models/SNO/MConcurso.model.ts +0 -267
- package/projects/sigesp/src/lib/core/models/SNO/MConfiguracionSNO.model.ts +0 -422
- package/projects/sigesp/src/lib/core/models/SNO/MConstanteNomina.model.ts +0 -76
- package/projects/sigesp/src/lib/core/models/SNO/MConstantePersonalNomina.model.ts +0 -85
- package/projects/sigesp/src/lib/core/models/SNO/MDedicacion.model.ts +0 -37
- package/projects/sigesp/src/lib/core/models/SNO/MDefinicionNomina.model.ts +0 -320
- package/projects/sigesp/src/lib/core/models/SNO/MDefinicionesBasicas.model.ts +0 -82
- package/projects/sigesp/src/lib/core/models/SNO/MDeudaAnterior.model.ts +0 -42
- package/projects/sigesp/src/lib/core/models/SNO/MEncargaduria.model.ts +0 -142
- package/projects/sigesp/src/lib/core/models/SNO/MEscalaEvaluacion.model.ts +0 -43
- package/projects/sigesp/src/lib/core/models/SNO/MEscalaEvaluacionDt.model.ts +0 -40
- package/projects/sigesp/src/lib/core/models/SNO/MEstructuraOrganizativa.model.ts +0 -136
- package/projects/sigesp/src/lib/core/models/SNO/MFamiliares.model.ts +0 -91
- package/projects/sigesp/src/lib/core/models/SNO/MFeriados.model.ts +0 -46
- package/projects/sigesp/src/lib/core/models/SNO/MFideicomiso.model.ts +0 -423
- package/projects/sigesp/src/lib/core/models/SNO/MFormacionAcademica.model.ts +0 -52
- package/projects/sigesp/src/lib/core/models/SNO/MGrado.model.ts +0 -50
- package/projects/sigesp/src/lib/core/models/SNO/MHojaTiempo.model.ts +0 -128
- package/projects/sigesp/src/lib/core/models/SNO/MImpuestoSobreRenta.model.ts +0 -77
- package/projects/sigesp/src/lib/core/models/SNO/MMetodoBanco.model.ts +0 -113
- package/projects/sigesp/src/lib/core/models/SNO/MNominaSimple.model.ts +0 -86
- package/projects/sigesp/src/lib/core/models/SNO/MPeriodoNomina.model.ts +0 -205
- package/projects/sigesp/src/lib/core/models/SNO/MPermisos.model.ts +0 -70
- package/projects/sigesp/src/lib/core/models/SNO/MPersonal.model.ts +0 -659
- package/projects/sigesp/src/lib/core/models/SNO/MPersonalJubilado.model.ts +0 -71
- package/projects/sigesp/src/lib/core/models/SNO/MPersonalNomina.model.ts +0 -323
- package/projects/sigesp/src/lib/core/models/SNO/MPlanHorario.model.ts +0 -134
- package/projects/sigesp/src/lib/core/models/SNO/MPlantillaConstancia.model.ts +0 -33
- package/projects/sigesp/src/lib/core/models/SNO/MPrestamo.model.ts +0 -242
- package/projects/sigesp/src/lib/core/models/SNO/MPrimaGrados.model.ts +0 -46
- package/projects/sigesp/src/lib/core/models/SNO/MPrimasConcepto.model.ts +0 -45
- package/projects/sigesp/src/lib/core/models/SNO/MRango.model.ts +0 -45
- package/projects/sigesp/src/lib/core/models/SNO/MReportesRRHH.ts +0 -425
- package/projects/sigesp/src/lib/core/models/SNO/MRequisitosConcursante.model.ts +0 -48
- package/projects/sigesp/src/lib/core/models/SNO/MRequisitosConcursos.model.ts +0 -41
- package/projects/sigesp/src/lib/core/models/SNO/MRequisitosMinimos.model.ts +0 -123
- package/projects/sigesp/src/lib/core/models/SNO/MSalarioHistorico.model.ts +0 -75
- package/projects/sigesp/src/lib/core/models/SNO/MSolicitudEmpleo.model.ts +0 -125
- package/projects/sigesp/src/lib/core/models/SNO/MTablaVacaciones.model.ts +0 -61
- package/projects/sigesp/src/lib/core/models/SNO/MTablaVacacionesPeriodo.model.ts +0 -45
- package/projects/sigesp/src/lib/core/models/SNO/MTabulador.model.ts +0 -108
- package/projects/sigesp/src/lib/core/models/SNO/MTipoEvaluacion.model.ts +0 -85
- package/projects/sigesp/src/lib/core/models/SNO/MTipoPersonal.model.ts +0 -37
- package/projects/sigesp/src/lib/core/models/SNO/MTiposEnfermedad.model.ts +0 -40
- package/projects/sigesp/src/lib/core/models/SNO/MTrabajoAnterior.model.ts +0 -70
- package/projects/sigesp/src/lib/core/models/SNO/MUbicacionFisica.model.ts +0 -63
- package/projects/sigesp/src/lib/core/models/SNO/MVacacionesPersonal.model.ts +0 -119
- package/projects/sigesp/src/lib/core/models/SOC/charge.model.ts +0 -81
- package/projects/sigesp/src/lib/core/models/SOC/clause.model.ts +0 -39
- package/projects/sigesp/src/lib/core/models/SOC/clauseModality.model.ts +0 -43
- package/projects/sigesp/src/lib/core/models/SOC/configuracionSOC.model.ts +0 -71
- package/projects/sigesp/src/lib/core/models/SOC/service.model.ts +0 -53
- package/projects/sigesp/src/lib/core/models/SOC/serviceCharge.model.ts +0 -42
- package/projects/sigesp/src/lib/core/models/SOC/serviceType.model.ts +0 -39
- package/projects/sigesp/src/lib/core/models/SPG/UnidadAdministradoraCentral.ts +0 -50
- package/projects/sigesp/src/lib/core/models/SPG/administrativeUnit.model.ts +0 -185
- package/projects/sigesp/src/lib/core/models/SPG/comprobantePresupuestario.model.ts +0 -148
- package/projects/sigesp/src/lib/core/models/SPG/configurationSPG.model.ts +0 -140
- package/projects/sigesp/src/lib/core/models/SPG/cuentaPresupuesto.model.ts +0 -194
- package/projects/sigesp/src/lib/core/models/SPG/estructuraPresupuestaria.model.ts +0 -261
- package/projects/sigesp/src/lib/core/models/SPG/expensiveAccount.model.ts +0 -104
- package/projects/sigesp/src/lib/core/models/SPG/fuenteFinanciamiento.model.ts +0 -54
- package/projects/sigesp/src/lib/core/models/SPG/incomeStructureAccount.model.ts +0 -88
- package/projects/sigesp/src/lib/core/models/SPG/organizationType.model.ts +0 -16
- package/projects/sigesp/src/lib/core/models/SSS/component.model.ts +0 -51
- package/projects/sigesp/src/lib/core/models/SSS/group.model.ts +0 -39
- package/projects/sigesp/src/lib/core/models/SSS/log.model.ts +0 -36
- package/projects/sigesp/src/lib/core/models/SSS/securityConfiguration.model.ts +0 -26
- package/projects/sigesp/src/lib/core/models/SSS/sistema.ts +0 -87
- package/projects/sigesp/src/lib/core/models/SSS/user.model.ts +0 -52
- package/projects/sigesp/src/lib/core/models/SSS/userDetail.model.ts +0 -84
- package/projects/sigesp/src/lib/core/models/SSS/userPermit.model.ts +0 -61
- package/projects/sigesp/src/lib/core/models/SSS/userRights.model.ts +0 -113
- package/projects/sigesp/src/lib/core/models/STB/MCargosAdicionales.ts +0 -97
- package/projects/sigesp/src/lib/core/models/STB/deduction.model.ts +0 -100
- package/projects/sigesp/src/lib/core/models/STB/deductionType.model.ts +0 -23
- package/projects/sigesp/src/lib/core/models/STB/unidadTributaria.model.ts +0 -25
- package/projects/sigesp/src/lib/core/models/basic-model.model.ts +0 -9
- package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.html +0 -45
- package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.scss +0 -82
- package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.ts +0 -71
- package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.html +0 -57
- package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.scss +0 -82
- package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.ts +0 -80
- package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.html +0 -121
- package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.scss +0 -81
- package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.ts +0 -68
- package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.html +0 -15
- package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.scss +0 -37
- package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.ts +0 -32
- 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 +0 -6
- package/projects/sigesp/src/lib/shared/components/icon/icon.component.scss +0 -22
- package/projects/sigesp/src/lib/shared/components/icon/icon.component.ts +0 -19
- package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.html +0 -73
- package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.scss +0 -86
- package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.ts +0 -102
- package/projects/sigesp/src/lib/shared/material/customPaginator.ts +0 -22
- package/projects/sigesp/src/lib/shared/material/material.module.ts +0 -144
- package/projects/sigesp/src/lib/shared/pipes/iso-currency.pipe.ts +0 -44
- package/projects/sigesp/src/lib/shared/shared.module.ts +0 -41
- package/projects/sigesp/src/lib/sigesp.service.ts +0 -2446
- package/projects/sigesp/src/lib/validation.service.ts +0 -172
- package/projects/sigesp/src/public-api.ts +0 -488
- package/projects/sigesp/src/test.ts +0 -23
- package/projects/sigesp/tsconfig.lib.json +0 -27
- package/projects/sigesp/tsconfig.lib.prod.json +0 -6
- package/projects/sigesp/tsconfig.spec.json +0 -17
- package/projects/sigesp/tslint.json +0 -17
- package/src/app/app.component.html +0 -11
- package/src/app/app.component.scss +0 -0
- package/src/app/app.component.ts +0 -110
- package/src/app/app.module.ts +0 -22
- package/src/assets/.gitkeep +0 -0
- package/src/assets/icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 +0 -0
- package/src/environments/environment.prod.ts +0 -3
- package/src/environments/environment.ts +0 -16
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -15
- package/src/main.ts +0 -13
- package/src/polyfills.ts +0 -53
- package/src/styles.scss +0 -101
- package/src/test.ts +0 -22
- package/tsconfig.app.json +0 -18
- package/tsconfig.json +0 -36
- package/tsconfig.spec.json +0 -18
- package/tslint.json +0 -155
|
@@ -1,659 +0,0 @@
|
|
|
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
|
-
|