sigesp 1.0.18-20240821 → 1.0.19-20240821
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/LICENSE +21 -0
- package/README.md +12 -9
- 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 +365 -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 +27 -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 +151 -0
- package/esm2020/lib/core/models/CFG/Enterprise.model.mjs +70 -0
- package/esm2020/lib/core/models/CFG/MPrefijo.model.mjs +64 -0
- package/esm2020/lib/core/models/CFG/Procede.model.mjs +31 -0
- package/esm2020/lib/core/models/CFG/TasaCambio.model.mjs +34 -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 +46 -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 +164 -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 +83 -0
- package/esm2020/lib/core/models/SCG/accountMarriage.model.mjs +29 -0
- package/esm2020/lib/core/models/SCG/centroCosto.model.mjs +65 -0
- package/esm2020/lib/core/models/SCG/configuracionSCG.model.mjs +169 -0
- package/esm2020/lib/core/models/SCG/cuentaInstitucional.model.mjs +89 -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 +61 -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 +205 -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 +101 -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 +234 -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 +410 -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 +313 -0
- package/esm2020/lib/core/models/SNO/MDefinicionesBasicas.model.mjs +84 -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 +119 -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 +47 -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 +86 -0
- package/esm2020/lib/core/models/SNO/MPeriodoNomina.model.mjs +184 -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 +313 -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 +66 -0
- package/esm2020/lib/core/models/SOC/clause.model.mjs +31 -0
- package/esm2020/lib/core/models/SOC/clauseModality.model.mjs +35 -0
- package/esm2020/lib/core/models/SOC/configuracionSOC.model.mjs +62 -0
- package/esm2020/lib/core/models/SOC/service.model.mjs +46 -0
- package/esm2020/lib/core/models/SOC/serviceCharge.model.mjs +37 -0
- package/esm2020/lib/core/models/SOC/serviceType.model.mjs +31 -0
- package/esm2020/lib/core/models/SPG/UnidadAdministradoraCentral.mjs +43 -0
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +112 -0
- package/esm2020/lib/core/models/SPG/comprobantePresupuestario.model.mjs +51 -0
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +59 -0
- package/esm2020/lib/core/models/SPG/cuentaPresupuesto.model.mjs +120 -0
- package/esm2020/lib/core/models/SPG/estructuraPresupuestaria.model.mjs +176 -0
- package/esm2020/lib/core/models/SPG/expensiveAccount.model.mjs +108 -0
- package/esm2020/lib/core/models/SPG/fuenteFinanciamiento.model.mjs +31 -0
- package/esm2020/lib/core/models/SPG/incomeStructureAccount.model.mjs +81 -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 +71 -0
- package/esm2020/lib/core/models/SSS/user.model.mjs +32 -0
- package/esm2020/lib/core/models/SSS/userDetail.model.mjs +73 -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 +84 -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 +2064 -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 +14629 -0
- package/fesm2015/sigesp.mjs.map +1 -0
- package/fesm2020/sigesp.mjs +14588 -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 +593 -0
- package/lib/core/interfaces/Catalogo.d.ts +13 -0
- package/lib/core/interfaces/CentroCosto.d.ts +18 -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 +42 -0
- package/lib/core/interfaces/Comunidad.d.ts +12 -0
- package/lib/core/interfaces/Configuracion.d.ts +101 -0
- package/lib/core/interfaces/ConfiguracionRPC.d.ts +10 -0
- package/lib/core/interfaces/ConfiguracionSCG.d.ts +54 -0
- package/lib/core/interfaces/ConfigurationSPG.d.ts +42 -0
- package/lib/core/interfaces/Constantes.d.ts +84 -0
- package/lib/core/interfaces/CuentaEgresos.d.ts +153 -0
- package/lib/core/interfaces/CuentaIngreso.d.ts +37 -0
- package/lib/core/interfaces/CuentaIngresoEstructura.d.ts +24 -0
- package/lib/core/interfaces/CuentaInstitucional.d.ts +26 -0
- package/lib/core/interfaces/CuentaPresupuesto.d.ts +6 -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 +89 -0
- package/lib/core/interfaces/FuenteFinanciamiento.d.ts +7 -0
- package/lib/core/interfaces/IBancoCuentasPorPagar.d.ts +186 -0
- package/lib/core/interfaces/ITipoDepositos.d.ts +17 -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 +550 -0
- package/lib/core/interfaces/PlanUnicoCuenta.d.ts +4 -0
- package/lib/core/interfaces/Presupuesto.d.ts +122 -0
- package/lib/core/interfaces/Proveedor.d.ts +75 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +1616 -0
- package/{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 +110 -0
- package/lib/core/interfaces/Servicios.d.ts +58 -0
- package/lib/core/interfaces/Sistema.d.ts +19 -0
- package/lib/core/interfaces/Tributos.d.ts +73 -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 +12 -0
- package/lib/core/models/CFG/Empresa.model.d.ts +52 -0
- package/lib/core/models/CFG/Enterprise.model.d.ts +24 -0
- package/lib/core/models/CFG/MPrefijo.model.d.ts +22 -0
- package/lib/core/models/CFG/Procede.model.d.ts +11 -0
- package/lib/core/models/CFG/TasaCambio.model.d.ts +12 -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 +16 -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 +75 -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 +43 -0
- package/lib/core/models/SCG/accountMarriage.model.d.ts +11 -0
- package/lib/core/models/SCG/centroCosto.model.d.ts +23 -0
- package/lib/core/models/SCG/configuracionSCG.model.d.ts +58 -0
- package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +32 -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 +21 -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 +79 -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 +40 -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 +78 -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 +138 -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 +119 -0
- package/lib/core/models/SNO/MDefinicionesBasicas.model.d.ts +26 -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 +42 -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 +36 -0
- package/lib/core/models/SNO/MPeriodoNomina.model.d.ts +58 -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 +100 -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 +24 -0
- package/lib/core/models/SOC/clause.model.d.ts +11 -0
- package/lib/core/models/SOC/clauseModality.model.d.ts +13 -0
- package/lib/core/models/SOC/configuracionSOC.model.d.ts +20 -0
- package/lib/core/models/SOC/service.model.d.ts +16 -0
- package/lib/core/models/SOC/serviceCharge.model.d.ts +13 -0
- package/lib/core/models/SOC/serviceType.model.d.ts +11 -0
- package/lib/core/models/SPG/UnidadAdministradoraCentral.d.ts +15 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +58 -0
- package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +46 -0
- package/lib/core/models/SPG/configurationSPG.model.d.ts +37 -0
- package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +57 -0
- package/lib/core/models/SPG/estructuraPresupuestaria.model.d.ts +123 -0
- package/lib/core/models/SPG/expensiveAccount.model.d.ts +49 -0
- package/lib/core/models/SPG/fuenteFinanciamiento.model.d.ts +11 -0
- package/lib/core/models/SPG/incomeStructureAccount.model.d.ts +38 -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 +26 -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 +31 -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 +1060 -0
- package/lib/validation.service.d.ts +15 -0
- package/package.json +31 -11
- package/public-api.d.ts +164 -0
- package/karma.conf.js +0 -32
- package/ng-package.json +0 -7
- package/src/lib/app/app.component.html +0 -1
- package/src/lib/app/app.component.scss +0 -0
- package/src/lib/app/app.component.ts +0 -15
- package/src/lib/app/app.module.ts +0 -21
- package/src/lib/core/interfaces/Auditoria.ts +0 -72
- package/src/lib/core/interfaces/Banco.ts +0 -633
- package/src/lib/core/interfaces/Catalogo.ts +0 -15
- package/src/lib/core/interfaces/CentroCosto.ts +0 -20
- package/src/lib/core/interfaces/Clasificacion.ts +0 -6
- package/src/lib/core/interfaces/Cliente.ts +0 -36
- package/src/lib/core/interfaces/ComprobantePresupuestario.ts +0 -43
- package/src/lib/core/interfaces/Comunidad.ts +0 -12
- package/src/lib/core/interfaces/Configuracion.ts +0 -110
- package/src/lib/core/interfaces/ConfiguracionRPC.ts +0 -10
- package/src/lib/core/interfaces/ConfiguracionSCG.ts +0 -54
- package/src/lib/core/interfaces/ConfigurationSPG.ts +0 -43
- package/src/lib/core/interfaces/Constantes.ts +0 -463
- package/src/lib/core/interfaces/CuentaEgresos.ts +0 -159
- package/src/lib/core/interfaces/CuentaIngreso.ts +0 -37
- package/src/lib/core/interfaces/CuentaIngresoEstructura.ts +0 -25
- package/src/lib/core/interfaces/CuentaInstitucional.ts +0 -26
- package/src/lib/core/interfaces/CuentaPresupuesto.ts +0 -7
- package/src/lib/core/interfaces/CuentasPorPagar.ts +0 -40
- package/src/lib/core/interfaces/Documento.ts +0 -6
- package/src/lib/core/interfaces/EntradaSuministro.ts +0 -93
- package/src/lib/core/interfaces/Especialidad.ts +0 -4
- package/src/lib/core/interfaces/EstructuraPresupuestaria.ts +0 -96
- package/src/lib/core/interfaces/FuenteFinanciamiento.ts +0 -7
- package/src/lib/core/interfaces/IBancoCuentasPorPagar.ts +0 -192
- package/src/lib/core/interfaces/ITipoDepositos.ts +0 -17
- package/src/lib/core/interfaces/Integracion.ts +0 -6
- package/src/lib/core/interfaces/Lugares.ts +0 -45
- package/src/lib/core/interfaces/Moneda.ts +0 -22
- package/src/lib/core/interfaces/Nomina.ts +0 -607
- package/src/lib/core/interfaces/PlanUnicoCuenta.ts +0 -4
- package/src/lib/core/interfaces/Presupuesto.ts +0 -132
- package/src/lib/core/interfaces/Proveedor.ts +0 -79
- package/src/lib/core/interfaces/RecursosHumanos.ts +0 -1728
- package/src/lib/core/interfaces/Response.ts +0 -7
- package/src/lib/core/interfaces/Seguridad.ts +0 -118
- package/src/lib/core/interfaces/Servicios.ts +0 -64
- package/src/lib/core/interfaces/Sistema.ts +0 -21
- package/src/lib/core/interfaces/Tributos.ts +0 -78
- package/src/lib/core/interfaces/UnidadTributaria.ts +0 -11
- package/src/lib/core/interfaces/Usuario.ts +0 -57
- package/src/lib/core/interfaces/UsuarioPrefijo.ts +0 -12
- package/src/lib/core/models/CFG/Empresa.model.ts +0 -155
- package/src/lib/core/models/CFG/Enterprise.model.ts +0 -74
- package/src/lib/core/models/CFG/MPrefijo.model.ts +0 -66
- package/src/lib/core/models/CFG/Procede.model.ts +0 -34
- package/src/lib/core/models/CFG/TasaCambio.model.ts +0 -37
- package/src/lib/core/models/CFG/comunidad.model.ts +0 -34
- package/src/lib/core/models/CFG/locations.model.ts +0 -189
- package/src/lib/core/models/CFG/moneda.model.ts +0 -82
- package/src/lib/core/models/CFG/userPrefix.model.ts +0 -48
- package/src/lib/core/models/CXP/MConceptosCXP.model.ts +0 -36
- package/src/lib/core/models/CXP/MTipoDocumentoCXP.model.ts +0 -49
- package/src/lib/core/models/RPC/clasification.model.ts +0 -22
- package/src/lib/core/models/RPC/configuracionRPC.model.ts +0 -27
- package/src/lib/core/models/RPC/document.model.ts +0 -20
- package/src/lib/core/models/RPC/proveedores.model.ts +0 -15
- package/src/lib/core/models/RPC/providerBeneficiary.model.ts +0 -164
- package/src/lib/core/models/RPC/specialty.model.ts +0 -14
- package/src/lib/core/models/SCB/bank.model.ts +0 -205
- package/src/lib/core/models/SCG/IncomeAccount.ts +0 -87
- package/src/lib/core/models/SCG/accountMarriage.model.ts +0 -33
- package/src/lib/core/models/SCG/centroCosto.model.ts +0 -72
- package/src/lib/core/models/SCG/configuracionSCG.model.ts +0 -172
- package/src/lib/core/models/SCG/cuentaInstitucional.model.ts +0 -91
- package/src/lib/core/models/SCG/planUnicoCuenta.model.ts +0 -22
- package/src/lib/core/models/SFV/MClienteModel.ts +0 -119
- package/src/lib/core/models/SIV/MDetaContable.model.ts +0 -65
- package/src/lib/core/models/SIV/MDetaEntrada.model.ts +0 -98
- package/src/lib/core/models/SIV/MEntradaSuministro.model.ts +0 -135
- package/src/lib/core/models/SIV/MTipoDepositos.model.ts +0 -65
- package/src/lib/core/models/SNO/MAnticipoPrestaciones.model.ts +0 -112
- package/src/lib/core/models/SNO/MArchivoTxtCampo.model.ts +0 -63
- package/src/lib/core/models/SNO/MArchivosTxt.model.ts +0 -53
- package/src/lib/core/models/SNO/MAsignacionCargo.model.ts +0 -218
- package/src/lib/core/models/SNO/MAspectoEvaluacion.model.ts +0 -97
- package/src/lib/core/models/SNO/MAuditoria.model.ts +0 -67
- package/src/lib/core/models/SNO/MBeneficiario.model.ts +0 -139
- package/src/lib/core/models/SNO/MCargaFamiliar.model.ts +0 -54
- package/src/lib/core/models/SNO/MCargaMasiva.model.ts +0 -37
- package/src/lib/core/models/SNO/MCargosPersonal.model.ts +0 -108
- package/src/lib/core/models/SNO/MClasificacionObrero.mdel.ts +0 -48
- package/src/lib/core/models/SNO/MCodigoUnicoRac.model.ts +0 -41
- package/src/lib/core/models/SNO/MComponete.model.ts +0 -40
- package/src/lib/core/models/SNO/MConceptoVacaciones.model.ts +0 -94
- package/src/lib/core/models/SNO/MConceptosNomina.model.ts +0 -240
- package/src/lib/core/models/SNO/MConceptosPersonalNomina.model.ts +0 -103
- package/src/lib/core/models/SNO/MConcursante.model.ts +0 -333
- package/src/lib/core/models/SNO/MConcurso.model.ts +0 -267
- package/src/lib/core/models/SNO/MConfiguracionSNO.model.ts +0 -412
- package/src/lib/core/models/SNO/MConstanteNomina.model.ts +0 -76
- package/src/lib/core/models/SNO/MConstantePersonalNomina.model.ts +0 -85
- package/src/lib/core/models/SNO/MDedicacion.model.ts +0 -37
- package/src/lib/core/models/SNO/MDefinicionNomina.model.ts +0 -330
- package/src/lib/core/models/SNO/MDefinicionesBasicas.model.ts +0 -94
- package/src/lib/core/models/SNO/MDeudaAnterior.model.ts +0 -42
- package/src/lib/core/models/SNO/MEncargaduria.model.ts +0 -142
- package/src/lib/core/models/SNO/MEscalaEvaluacion.model.ts +0 -43
- package/src/lib/core/models/SNO/MEscalaEvaluacionDt.model.ts +0 -40
- package/src/lib/core/models/SNO/MEstructuraOrganizativa.model.ts +0 -125
- package/src/lib/core/models/SNO/MFamiliares.model.ts +0 -91
- package/src/lib/core/models/SNO/MFeriados.model.ts +0 -46
- package/src/lib/core/models/SNO/MFideicomiso.model.ts +0 -423
- package/src/lib/core/models/SNO/MFormacionAcademica.model.ts +0 -52
- package/src/lib/core/models/SNO/MGrado.model.ts +0 -50
- package/src/lib/core/models/SNO/MHojaTiempo.model.ts +0 -128
- package/src/lib/core/models/SNO/MImpuestoSobreRenta.model.ts +0 -77
- package/src/lib/core/models/SNO/MMetodoBanco.model.ts +0 -113
- package/src/lib/core/models/SNO/MNominaSimple.model.ts +0 -93
- package/src/lib/core/models/SNO/MPeriodoNomina.model.ts +0 -196
- package/src/lib/core/models/SNO/MPermisos.model.ts +0 -70
- package/src/lib/core/models/SNO/MPersonal.model.ts +0 -659
- package/src/lib/core/models/SNO/MPersonalJubilado.model.ts +0 -71
- package/src/lib/core/models/SNO/MPersonalNomina.model.ts +0 -328
- package/src/lib/core/models/SNO/MPlanHorario.model.ts +0 -134
- package/src/lib/core/models/SNO/MPlantillaConstancia.model.ts +0 -33
- package/src/lib/core/models/SNO/MPrestamo.model.ts +0 -242
- package/src/lib/core/models/SNO/MPrimaGrados.model.ts +0 -46
- package/src/lib/core/models/SNO/MPrimasConcepto.model.ts +0 -45
- package/src/lib/core/models/SNO/MRango.model.ts +0 -45
- package/src/lib/core/models/SNO/MReportesRRHH.ts +0 -425
- package/src/lib/core/models/SNO/MRequisitosConcursante.model.ts +0 -48
- package/src/lib/core/models/SNO/MRequisitosConcursos.model.ts +0 -41
- package/src/lib/core/models/SNO/MRequisitosMinimos.model.ts +0 -123
- package/src/lib/core/models/SNO/MSalarioHistorico.model.ts +0 -75
- package/src/lib/core/models/SNO/MSolicitudEmpleo.model.ts +0 -125
- package/src/lib/core/models/SNO/MTablaVacaciones.model.ts +0 -61
- package/src/lib/core/models/SNO/MTablaVacacionesPeriodo.model.ts +0 -45
- package/src/lib/core/models/SNO/MTabulador.model.ts +0 -108
- package/src/lib/core/models/SNO/MTipoEvaluacion.model.ts +0 -85
- package/src/lib/core/models/SNO/MTipoPersonal.model.ts +0 -37
- package/src/lib/core/models/SNO/MTiposEnfermedad.model.ts +0 -40
- package/src/lib/core/models/SNO/MTrabajoAnterior.model.ts +0 -70
- package/src/lib/core/models/SNO/MUbicacionFisica.model.ts +0 -63
- package/src/lib/core/models/SNO/MVacacionesPersonal.model.ts +0 -119
- package/src/lib/core/models/SOC/charge.model.ts +0 -78
- package/src/lib/core/models/SOC/clause.model.ts +0 -36
- package/src/lib/core/models/SOC/clauseModality.model.ts +0 -40
- package/src/lib/core/models/SOC/configuracionSOC.model.ts +0 -68
- package/src/lib/core/models/SOC/service.model.ts +0 -50
- package/src/lib/core/models/SOC/serviceCharge.model.ts +0 -39
- package/src/lib/core/models/SOC/serviceType.model.ts +0 -36
- package/src/lib/core/models/SPG/UnidadAdministradoraCentral.ts +0 -47
- package/src/lib/core/models/SPG/administrativeUnit.model.ts +0 -153
- package/src/lib/core/models/SPG/comprobantePresupuestario.model.ts +0 -93
- package/src/lib/core/models/SPG/configurationSPG.model.ts +0 -88
- package/src/lib/core/models/SPG/cuentaPresupuesto.model.ts +0 -131
- package/src/lib/core/models/SPG/estructuraPresupuestaria.model.ts +0 -280
- package/src/lib/core/models/SPG/expensiveAccount.model.ts +0 -114
- package/src/lib/core/models/SPG/fuenteFinanciamiento.model.ts +0 -33
- package/src/lib/core/models/SPG/incomeStructureAccount.model.ts +0 -84
- package/src/lib/core/models/SPG/organizationType.model.ts +0 -16
- package/src/lib/core/models/SSS/component.model.ts +0 -51
- package/src/lib/core/models/SSS/group.model.ts +0 -39
- package/src/lib/core/models/SSS/log.model.ts +0 -36
- package/src/lib/core/models/SSS/securityConfiguration.model.ts +0 -26
- package/src/lib/core/models/SSS/sistema.ts +0 -85
- package/src/lib/core/models/SSS/user.model.ts +0 -52
- package/src/lib/core/models/SSS/userDetail.model.ts +0 -78
- package/src/lib/core/models/SSS/userPermit.model.ts +0 -61
- package/src/lib/core/models/SSS/userRights.model.ts +0 -113
- package/src/lib/core/models/STB/MCargosAdicionales.ts +0 -93
- package/src/lib/core/models/STB/deduction.model.ts +0 -100
- package/src/lib/core/models/STB/deductionType.model.ts +0 -23
- package/src/lib/core/models/STB/unidadTributaria.model.ts +0 -25
- package/src/lib/core/models/basic-model.model.ts +0 -9
- package/src/lib/shared/components/catalogo/catalogo.component.html +0 -45
- package/src/lib/shared/components/catalogo/catalogo.component.scss +0 -82
- package/src/lib/shared/components/catalogo/catalogo.component.ts +0 -71
- package/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.html +0 -57
- package/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.scss +0 -82
- package/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.ts +0 -80
- package/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.html +0 -121
- package/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.scss +0 -81
- package/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.ts +0 -68
- package/src/lib/shared/components/confirm/confirm.component.html +0 -15
- package/src/lib/shared/components/confirm/confirm.component.scss +0 -37
- package/src/lib/shared/components/confirm/confirm.component.ts +0 -32
- package/src/lib/shared/components/icon/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 +0 -0
- package/src/lib/shared/components/icon/icon.component.html +0 -6
- package/src/lib/shared/components/icon/icon.component.scss +0 -22
- package/src/lib/shared/components/icon/icon.component.ts +0 -19
- package/src/lib/shared/components/table-select/table-select.component.html +0 -73
- package/src/lib/shared/components/table-select/table-select.component.scss +0 -86
- package/src/lib/shared/components/table-select/table-select.component.ts +0 -102
- package/src/lib/shared/material/customPaginator.ts +0 -22
- package/src/lib/shared/material/material.module.ts +0 -144
- package/src/lib/shared/pipes/iso-currency.pipe.ts +0 -44
- package/src/lib/shared/shared.module.ts +0 -41
- package/src/lib/sigesp.service.ts +0 -2770
- package/src/lib/validation.service.ts +0 -172
- package/src/public-api.ts +0 -489
- package/src/test.ts +0 -23
- package/tsconfig.lib.json +0 -27
- package/tsconfig.lib.prod.json +0 -6
- package/tsconfig.spec.json +0 -17
- package/tslint.json +0 -17
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { ICuentasSpSc, IEstructuras, IUnitAdministrative } from '../../interfaces/Presupuesto';
|
|
3
|
+
import { MFuenteFinanciamiento } from './fuenteFinanciamiento.model';
|
|
4
|
+
export declare class MAdministrativeUnit extends MBasicModel {
|
|
5
|
+
idEmpresa: number;
|
|
6
|
+
idEnterprise: number;
|
|
7
|
+
codigo: string;
|
|
8
|
+
denominacion: string;
|
|
9
|
+
unidadCentral: number;
|
|
10
|
+
emiteRequisicion: boolean;
|
|
11
|
+
centroCosto: string;
|
|
12
|
+
id: number;
|
|
13
|
+
denominacionUnidadCentral: string;
|
|
14
|
+
codigoUnidadCentral: string;
|
|
15
|
+
denominacionCentroCosto: string;
|
|
16
|
+
estructuras: MEstructuras[];
|
|
17
|
+
constructor(unidad?: IUnitAdministrative);
|
|
18
|
+
dataInterface(): IUnitAdministrative;
|
|
19
|
+
}
|
|
20
|
+
export declare class MEstructuras extends MBasicModel {
|
|
21
|
+
cuentaContable: string;
|
|
22
|
+
cuentaPresupuestaria: string;
|
|
23
|
+
denominacion: string;
|
|
24
|
+
estructura: string;
|
|
25
|
+
idEp1: number;
|
|
26
|
+
idEp2: number;
|
|
27
|
+
idEp3: number;
|
|
28
|
+
idEp4: number;
|
|
29
|
+
idEp5: number;
|
|
30
|
+
monto: number;
|
|
31
|
+
estatus: string;
|
|
32
|
+
codigoEep1: string;
|
|
33
|
+
codigoEep2: string;
|
|
34
|
+
codigoEep3: string;
|
|
35
|
+
codigoEep4: string;
|
|
36
|
+
codigoEep5: string;
|
|
37
|
+
denominacionEstructura: string;
|
|
38
|
+
denominacion5: string;
|
|
39
|
+
denominacion3: string;
|
|
40
|
+
idDtUni: number;
|
|
41
|
+
idUnidadAdministrativa: number;
|
|
42
|
+
fuentes: MFuenteFinanciamiento[];
|
|
43
|
+
constructor(dt?: IEstructuras);
|
|
44
|
+
dataInterface(): IEstructuras;
|
|
45
|
+
}
|
|
46
|
+
export declare class MCuentasSpSC extends MBasicModel {
|
|
47
|
+
codioCentroCosto: string;
|
|
48
|
+
codigoFFMostrar: string;
|
|
49
|
+
codigoUnidadAdministradora: string;
|
|
50
|
+
denominacionCuenta: string;
|
|
51
|
+
estructura: string;
|
|
52
|
+
cuentaContable: string;
|
|
53
|
+
cuentaPresupuestaria: string;
|
|
54
|
+
estatusClasificacion: string;
|
|
55
|
+
denominacionEstatusClasificacion: string;
|
|
56
|
+
tipo: string;
|
|
57
|
+
constructor(dt: ICuentasSpSc);
|
|
58
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { IComprobantePresupuestarioEgresos, IComprobantePresupuestarioIngresos } from '../../interfaces/ComprobantePresupuestario';
|
|
2
|
+
export declare class MComprobantePresupuestarioEgresos {
|
|
3
|
+
idEmpresa: number;
|
|
4
|
+
idEnterprise: number;
|
|
5
|
+
idComprobante: number;
|
|
6
|
+
idEp1: number;
|
|
7
|
+
idEp2: number;
|
|
8
|
+
idEp3: number;
|
|
9
|
+
idEp4: number;
|
|
10
|
+
idEp5: number;
|
|
11
|
+
SPGCuenta: number;
|
|
12
|
+
operacion: string;
|
|
13
|
+
codigoFuenteFinanciamiento: number;
|
|
14
|
+
procede_DOC: string;
|
|
15
|
+
documento: string;
|
|
16
|
+
codigoCentroCosto: string;
|
|
17
|
+
fechaComprobante: string;
|
|
18
|
+
decripcionComprobante: string;
|
|
19
|
+
montoComprobante: number;
|
|
20
|
+
orden: string;
|
|
21
|
+
numeroCompromiso: string;
|
|
22
|
+
idDetalle: number;
|
|
23
|
+
constructor(comprobante: IComprobantePresupuestarioEgresos);
|
|
24
|
+
}
|
|
25
|
+
export declare class MComprobantePresupuestarioIngresos {
|
|
26
|
+
idEmpresa: number;
|
|
27
|
+
idEnterprise: number;
|
|
28
|
+
idComprobante: number;
|
|
29
|
+
idEp1: number;
|
|
30
|
+
idEp2: number;
|
|
31
|
+
idEp3: number;
|
|
32
|
+
idEp4: number;
|
|
33
|
+
idEp5: number;
|
|
34
|
+
cuenta: number;
|
|
35
|
+
operacion: string;
|
|
36
|
+
centroCosto: string;
|
|
37
|
+
procede: string;
|
|
38
|
+
documento: string;
|
|
39
|
+
fecha: string;
|
|
40
|
+
decripcion: string;
|
|
41
|
+
monto: number;
|
|
42
|
+
orden: string;
|
|
43
|
+
numeroCompromiso: string;
|
|
44
|
+
id: number;
|
|
45
|
+
constructor(comprobante: IComprobantePresupuestarioIngresos);
|
|
46
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { IConfigurationSPG } from '../../interfaces/ConfigurationSPG';
|
|
2
|
+
import { MMonedaConfig } from '../CFG/moneda.model';
|
|
3
|
+
export declare class MConfigurationSPG {
|
|
4
|
+
cuentasPresupuestoCedentes: string;
|
|
5
|
+
cunetasPresupuestoRecaudadores: string;
|
|
6
|
+
estatusAnticipoPresupuestario: string;
|
|
7
|
+
estatusCierrePresupuestoGasto: string;
|
|
8
|
+
estatusCierrePresupuestoIngreso: string;
|
|
9
|
+
estatusIntegracionCredito: string;
|
|
10
|
+
estatusModoEstructuraPresupuestaria: string;
|
|
11
|
+
estatusPresupuestoIngreso: string;
|
|
12
|
+
estatusDecimalesPresupuestoGasto: string;
|
|
13
|
+
estatusDecimalesPresupuestoIngreso: string;
|
|
14
|
+
estatusValidacionPresupuestoGasto: string;
|
|
15
|
+
estatusVariacionPartidas: string;
|
|
16
|
+
formatoPresupuestoGasto: string;
|
|
17
|
+
formatoPresupuestoIngreso: string;
|
|
18
|
+
digitosCuentasPresupuestoContabilidadGeneralParaGastos: string;
|
|
19
|
+
idEmpresa: string;
|
|
20
|
+
IdSPG: string;
|
|
21
|
+
digitoCuentaPresupuestoContabilidadParaIngresos: string;
|
|
22
|
+
longitudesCodigoEstructuraPresupuestria: string[];
|
|
23
|
+
nivelValidacionEstructura: string;
|
|
24
|
+
nombresEstructuraPresupuestaria: string[];
|
|
25
|
+
numerosNiveles: string;
|
|
26
|
+
validacionPorEstucturaPresupuestaria: string;
|
|
27
|
+
validacionNivelCuentaGenerica: string;
|
|
28
|
+
estatusModoAperturaCuentas: string;
|
|
29
|
+
saldoInicialProgramado: string;
|
|
30
|
+
saldoInicialEjecutado: string;
|
|
31
|
+
estatusContadorCompromiso: string;
|
|
32
|
+
numeroInicialCompromiso: string;
|
|
33
|
+
moneda: MMonedaConfig;
|
|
34
|
+
codigoONAPRE: any;
|
|
35
|
+
decimalesAlternos: number;
|
|
36
|
+
constructor(configuration: IConfigurationSPG);
|
|
37
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { ICuentaEgresos } from '../../interfaces/Presupuesto';
|
|
2
|
+
import { ICuentaPresupuesto } from '../../interfaces/CuentaPresupuesto';
|
|
3
|
+
import { MBasicModel } from '../basic-model.model';
|
|
4
|
+
export declare class MCuentaPresupuesto {
|
|
5
|
+
cuenta: string;
|
|
6
|
+
denominacion: string;
|
|
7
|
+
status: string;
|
|
8
|
+
tipo: string;
|
|
9
|
+
constructor(cuentaPresupuesto: ICuentaPresupuesto);
|
|
10
|
+
}
|
|
11
|
+
export declare class MCuentaEgresos extends MBasicModel {
|
|
12
|
+
idEmpresa: number;
|
|
13
|
+
nivel: number;
|
|
14
|
+
denominacion: string;
|
|
15
|
+
cuenta: string;
|
|
16
|
+
cuentaContable: string;
|
|
17
|
+
cuentaONCOP: string;
|
|
18
|
+
clasificador: string;
|
|
19
|
+
referencia: string;
|
|
20
|
+
aumento: number;
|
|
21
|
+
asignado: number;
|
|
22
|
+
causado: number;
|
|
23
|
+
disminucion: number;
|
|
24
|
+
distribuir: number;
|
|
25
|
+
precomprometido: number;
|
|
26
|
+
pagado: number;
|
|
27
|
+
enero: number;
|
|
28
|
+
febrero: number;
|
|
29
|
+
marzo: number;
|
|
30
|
+
abril: number;
|
|
31
|
+
mayo: number;
|
|
32
|
+
junio: number;
|
|
33
|
+
julio: number;
|
|
34
|
+
agosto: number;
|
|
35
|
+
septiembre: number;
|
|
36
|
+
octubre: number;
|
|
37
|
+
noviembre: number;
|
|
38
|
+
diciembre: number;
|
|
39
|
+
idEP1: number;
|
|
40
|
+
idEP2: number;
|
|
41
|
+
idEP3: number;
|
|
42
|
+
idEP4: number;
|
|
43
|
+
idEP5: number;
|
|
44
|
+
codestpro1: string;
|
|
45
|
+
codestpro2: string;
|
|
46
|
+
codestpro3: string;
|
|
47
|
+
codestpro4: string;
|
|
48
|
+
codestpro5: string;
|
|
49
|
+
estructura: string;
|
|
50
|
+
selected: boolean;
|
|
51
|
+
isNew: boolean;
|
|
52
|
+
error: boolean;
|
|
53
|
+
status: string;
|
|
54
|
+
id: number;
|
|
55
|
+
codfuefin: number;
|
|
56
|
+
constructor(cuenta?: ICuentaEgresos, level?: number, isNew?: boolean);
|
|
57
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { IEstructuraPresupuestariaOne, IEstructuraPresupuestariaTwo, IEstructuraPresupuestariaThree, IEstructuraPresupuestariaFour, IEstructuraPresupuestariaFiveComplete, IEstructuraPresupuestariaFive, IEstructuraPresupuestariaThreeComplete } from '../../interfaces/EstructuraPresupuestaria';
|
|
2
|
+
export declare class MEstructuraPresupuestariaOne {
|
|
3
|
+
codigoEstructuraProgramatica: string;
|
|
4
|
+
denominacionEstructuraProgramatica: string;
|
|
5
|
+
estatusClasificacion: string;
|
|
6
|
+
idEmpresa: string;
|
|
7
|
+
cuentaContable: string;
|
|
8
|
+
idEstructura: string;
|
|
9
|
+
isNew: boolean;
|
|
10
|
+
constructor(eP: IEstructuraPresupuestariaOne);
|
|
11
|
+
}
|
|
12
|
+
export declare class MEstructuraPresupuestariaTwo {
|
|
13
|
+
codigoEstructuraProgramatica: string;
|
|
14
|
+
denominacionEstructuraProgramatica: string;
|
|
15
|
+
estatusClasificacion: string;
|
|
16
|
+
idEmpresa: string;
|
|
17
|
+
idEstructuraOne: string;
|
|
18
|
+
idEstructuraTwo: string;
|
|
19
|
+
isNew: boolean;
|
|
20
|
+
constructor(eP: IEstructuraPresupuestariaTwo);
|
|
21
|
+
}
|
|
22
|
+
export declare class MEstructuraPresupuestariaThree {
|
|
23
|
+
codigoCentroCosto: string;
|
|
24
|
+
codigoEstructuraProgramatica: string;
|
|
25
|
+
codigoFuenteFinanciamiento: string;
|
|
26
|
+
denominacionEstructuraProgramatica: string;
|
|
27
|
+
estatusClasificacion: string;
|
|
28
|
+
idEmpresa: string;
|
|
29
|
+
idEstructuraOne: string;
|
|
30
|
+
idEstructuraTwo: string;
|
|
31
|
+
idEstructuraThree: string;
|
|
32
|
+
isNew: boolean;
|
|
33
|
+
constructor(ep: IEstructuraPresupuestariaThree);
|
|
34
|
+
}
|
|
35
|
+
export declare class MEstructuraPresupuestariaThreeComplete {
|
|
36
|
+
idEmpresa: string;
|
|
37
|
+
idEstricturaOne: string;
|
|
38
|
+
idEstricturaTwo: string;
|
|
39
|
+
idEstricturaThree: string;
|
|
40
|
+
codigoEstructuraProgramaticaOne: string;
|
|
41
|
+
codigoEstructuraProgramaticaTwo: string;
|
|
42
|
+
codigoEstructuraProgramaticaThree: string;
|
|
43
|
+
denominacionEstructuraProgramaticaOne: string;
|
|
44
|
+
denominacionEstructuraProgramaticaTwo: string;
|
|
45
|
+
denominacionEstructuraProgramaticaThree: string;
|
|
46
|
+
estatusClasificacion: string;
|
|
47
|
+
codigoCentroCosto: string;
|
|
48
|
+
codigoFuenteFinanciamiento: string;
|
|
49
|
+
isNew: boolean;
|
|
50
|
+
constructor(ep: IEstructuraPresupuestariaThreeComplete);
|
|
51
|
+
}
|
|
52
|
+
export declare class MEstructuraPresupuestariaFour {
|
|
53
|
+
codigoEstructuraProgramatica: string;
|
|
54
|
+
denominacionEstructuraProgramatica: string;
|
|
55
|
+
estatusClasificacion: string;
|
|
56
|
+
idEmpresa: string;
|
|
57
|
+
idEstructuraOne: string;
|
|
58
|
+
idEstructuraTwo: string;
|
|
59
|
+
idEstructuraThree: string;
|
|
60
|
+
idEstructuraFour: string;
|
|
61
|
+
isNew: boolean;
|
|
62
|
+
constructor(ep: IEstructuraPresupuestariaFour);
|
|
63
|
+
}
|
|
64
|
+
export declare class MEstructuraPresupuestariaFive {
|
|
65
|
+
idEmpresa: string;
|
|
66
|
+
idEstructuraOne: string;
|
|
67
|
+
idEstructuraTwo: string;
|
|
68
|
+
idEstructuraThree: string;
|
|
69
|
+
idEstructuraFour: string;
|
|
70
|
+
idEstructuraFive: string;
|
|
71
|
+
codigoEstructuraProgramatica: string;
|
|
72
|
+
denominacionEstructuraProgramatica: string;
|
|
73
|
+
estatusClasificacion: string;
|
|
74
|
+
codigoCentroCosto: string;
|
|
75
|
+
codigoFuenteFinanciamiento: string;
|
|
76
|
+
isNew: boolean;
|
|
77
|
+
constructor(ep: IEstructuraPresupuestariaFive);
|
|
78
|
+
dataInterface(): IEstructuraPresupuestariaFive;
|
|
79
|
+
}
|
|
80
|
+
export declare class MEstructuraPresupuestariaFiveComplete {
|
|
81
|
+
codigoCentroCosto: string;
|
|
82
|
+
codigoEstructuraProgramaticaOne: string;
|
|
83
|
+
codigoEstructuraProgramaticaTwo: string;
|
|
84
|
+
codigoEstructuraProgramaticaThree: string;
|
|
85
|
+
codigoEstructuraProgramaticaFour: string;
|
|
86
|
+
codigoEstructuraProgramatica: string;
|
|
87
|
+
codigoFuenteFinanciera: string;
|
|
88
|
+
codigoFuenteFinancieraParaMostrar: string;
|
|
89
|
+
denominacionFueteFinanaciamiento: string;
|
|
90
|
+
denominacionEstructuraProgramaticaOne: string;
|
|
91
|
+
denominacionEstructuraProgramaticaTwo: string;
|
|
92
|
+
denominacionEstructuraProgramaticaThree: string;
|
|
93
|
+
denominacionEstructuraProgramaticaFour: string;
|
|
94
|
+
denominacionEstructuraProgramatica: string;
|
|
95
|
+
estatusClasificacion: string;
|
|
96
|
+
tipo: string;
|
|
97
|
+
idEmpresa: string;
|
|
98
|
+
idEstructuraOne: string;
|
|
99
|
+
idEstructuraTwo: string;
|
|
100
|
+
idEstructuraThree: string;
|
|
101
|
+
idEstructuraFor: string;
|
|
102
|
+
idEstructuraFive: string;
|
|
103
|
+
estructura: string;
|
|
104
|
+
denominacion: string;
|
|
105
|
+
level: number;
|
|
106
|
+
isNew: boolean;
|
|
107
|
+
constructor(ep: IEstructuraPresupuestariaFiveComplete, level?: number);
|
|
108
|
+
dataInterface(): IEstructuraPresupuestariaFiveComplete;
|
|
109
|
+
}
|
|
110
|
+
export declare class MAllStructure {
|
|
111
|
+
structureOne: MEstructuraPresupuestariaOne[];
|
|
112
|
+
structureTwo: MEstructuraPresupuestariaTwo[];
|
|
113
|
+
structureThree: MEstructuraPresupuestariaThree[];
|
|
114
|
+
structureFour: MEstructuraPresupuestariaFour[];
|
|
115
|
+
structureFive: MEstructuraPresupuestariaFive[];
|
|
116
|
+
constructor({ structureOne, structureTwo, structureThree, structureFour, structureFive }: {
|
|
117
|
+
structureOne: any;
|
|
118
|
+
structureTwo: any;
|
|
119
|
+
structureThree: any;
|
|
120
|
+
structureFour: any;
|
|
121
|
+
structureFive: any;
|
|
122
|
+
});
|
|
123
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { ICuentaEgresos } from '../../interfaces/CuentaEgresos';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MCuentaEgresos extends MBasicModel {
|
|
4
|
+
idEmpresa: number;
|
|
5
|
+
nivel: number;
|
|
6
|
+
denominacion: string;
|
|
7
|
+
cuenta: string;
|
|
8
|
+
cuentaContable: string;
|
|
9
|
+
cuentaONCOP: string;
|
|
10
|
+
clasificador: string;
|
|
11
|
+
referencia: string;
|
|
12
|
+
aumento: number;
|
|
13
|
+
asignado: number;
|
|
14
|
+
causado: number;
|
|
15
|
+
disminucion: number;
|
|
16
|
+
distribuir: number;
|
|
17
|
+
precomprometido: number;
|
|
18
|
+
pagado: number;
|
|
19
|
+
enero: number;
|
|
20
|
+
febrero: number;
|
|
21
|
+
marzo: number;
|
|
22
|
+
abril: number;
|
|
23
|
+
mayo: number;
|
|
24
|
+
junio: number;
|
|
25
|
+
julio: number;
|
|
26
|
+
agosto: number;
|
|
27
|
+
septiembre: number;
|
|
28
|
+
octubre: number;
|
|
29
|
+
noviembre: number;
|
|
30
|
+
diciembre: number;
|
|
31
|
+
idEP1: number;
|
|
32
|
+
idEP2: number;
|
|
33
|
+
idEP3: number;
|
|
34
|
+
idEP4: number;
|
|
35
|
+
idEP5: number;
|
|
36
|
+
codestpro1: string;
|
|
37
|
+
codestpro2: string;
|
|
38
|
+
codestpro3: string;
|
|
39
|
+
codestpro4: string;
|
|
40
|
+
codestpro5: string;
|
|
41
|
+
estructura: string;
|
|
42
|
+
selected: boolean;
|
|
43
|
+
isNew: boolean;
|
|
44
|
+
error: boolean;
|
|
45
|
+
status: string;
|
|
46
|
+
id: number;
|
|
47
|
+
codfuefin: number;
|
|
48
|
+
constructor(cuenta?: ICuentaEgresos, level?: number, isNew?: boolean);
|
|
49
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IFuenteFinanciamiento } from '../../interfaces/FuenteFinanciamiento';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MFuenteFinanciamiento extends MBasicModel {
|
|
4
|
+
codigoFuenteFinanciamiento: string;
|
|
5
|
+
denominacionFuenteFinanciamiento: string;
|
|
6
|
+
explicacionFuenteFinanciamiento: string;
|
|
7
|
+
idEmpresa: string;
|
|
8
|
+
codigo: string;
|
|
9
|
+
constructor(fuente?: IFuenteFinanciamiento);
|
|
10
|
+
dataInterface(): IFuenteFinanciamiento;
|
|
11
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { IIncomeStructureAccount } from '../../interfaces/CuentaIngresoEstructura';
|
|
2
|
+
export declare class MIncomeStructureAccount {
|
|
3
|
+
idEmpresa: number;
|
|
4
|
+
idEP1: string;
|
|
5
|
+
idEP2: string;
|
|
6
|
+
idEP3: string;
|
|
7
|
+
idEP4: string;
|
|
8
|
+
idEP5: string;
|
|
9
|
+
codestpro1: string;
|
|
10
|
+
codestpro2: string;
|
|
11
|
+
codestpro3: string;
|
|
12
|
+
codestpro4: string;
|
|
13
|
+
codestpro5: string;
|
|
14
|
+
denestpro1: string;
|
|
15
|
+
denestpro2: string;
|
|
16
|
+
denestpro3: string;
|
|
17
|
+
denestpro4: string;
|
|
18
|
+
denestpro5: string;
|
|
19
|
+
cuenta: string;
|
|
20
|
+
previsto: number;
|
|
21
|
+
enero: number;
|
|
22
|
+
febrero: number;
|
|
23
|
+
marzo: number;
|
|
24
|
+
abril: number;
|
|
25
|
+
mayo: number;
|
|
26
|
+
junio: number;
|
|
27
|
+
julio: number;
|
|
28
|
+
agosto: number;
|
|
29
|
+
septiembre: number;
|
|
30
|
+
octubre: number;
|
|
31
|
+
noviembre: number;
|
|
32
|
+
diciembre: number;
|
|
33
|
+
new: boolean;
|
|
34
|
+
structure: string;
|
|
35
|
+
distribuir: number;
|
|
36
|
+
denominacion: string;
|
|
37
|
+
constructor(account: IIncomeStructureAccount, level: number);
|
|
38
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IComponent } from '../../interfaces/Seguridad';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MComponent extends MBasicModel {
|
|
4
|
+
id: number;
|
|
5
|
+
systemCode: string;
|
|
6
|
+
name: string;
|
|
7
|
+
internalName: string;
|
|
8
|
+
url: string;
|
|
9
|
+
type: number;
|
|
10
|
+
icon: string;
|
|
11
|
+
order: number;
|
|
12
|
+
fatherId: number;
|
|
13
|
+
children: MComponent[];
|
|
14
|
+
constructor(comp?: IComponent);
|
|
15
|
+
interface(): IComponent;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { IGroup } from '../../interfaces/Seguridad';
|
|
3
|
+
import { MRights } from './userRights.model';
|
|
4
|
+
import { MUserDetail } from './userDetail.model';
|
|
5
|
+
export declare class MGroup extends MBasicModel {
|
|
6
|
+
id: number;
|
|
7
|
+
code: string;
|
|
8
|
+
name: string;
|
|
9
|
+
status: boolean;
|
|
10
|
+
notes: string;
|
|
11
|
+
users: MUserDetail[];
|
|
12
|
+
deletedUsers: MUserDetail[];
|
|
13
|
+
rights: MRights[];
|
|
14
|
+
constructor(group?: IGroup);
|
|
15
|
+
deleteAll(): void;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { ILog } from '../../interfaces/Seguridad';
|
|
3
|
+
export declare class MLog extends MBasicModel {
|
|
4
|
+
id_usuario: number;
|
|
5
|
+
id_component: number;
|
|
6
|
+
codsis: string;
|
|
7
|
+
evento: string;
|
|
8
|
+
deslog: string;
|
|
9
|
+
equlog: string;
|
|
10
|
+
fecsys: string;
|
|
11
|
+
feclog: string;
|
|
12
|
+
id_empresa: number;
|
|
13
|
+
id_log: number;
|
|
14
|
+
constructor(record?: ILog);
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { IConfigSSS } from '../../interfaces/Seguridad';
|
|
3
|
+
export declare class MConfigSSS extends MBasicModel {
|
|
4
|
+
id: number;
|
|
5
|
+
blockTime: number;
|
|
6
|
+
chances: number;
|
|
7
|
+
blockUsers: boolean;
|
|
8
|
+
constructor(config?: IConfigSSS);
|
|
9
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { ISistema, IUsuarioSistema } from '../../interfaces/Sistema';
|
|
3
|
+
import { MUserDetail } from './userDetail.model';
|
|
4
|
+
export declare class MSistema extends MBasicModel {
|
|
5
|
+
nombre: string;
|
|
6
|
+
codigo: string;
|
|
7
|
+
estado: string;
|
|
8
|
+
imagen: string;
|
|
9
|
+
usuarios: MUserDetail[];
|
|
10
|
+
eliminados: MUserDetail[];
|
|
11
|
+
constructor(sis?: ISistema);
|
|
12
|
+
dataInterface(): ISistema;
|
|
13
|
+
}
|
|
14
|
+
export declare class MUsuarioSistema extends MBasicModel {
|
|
15
|
+
idEmpresa: number;
|
|
16
|
+
idUsuario: number;
|
|
17
|
+
codigoSistema: string;
|
|
18
|
+
nombreSistema: string;
|
|
19
|
+
estausSistema: number;
|
|
20
|
+
imagenSistema: string;
|
|
21
|
+
ruta: string;
|
|
22
|
+
tipoSistema: number;
|
|
23
|
+
constructor(sis?: IUsuarioSistema);
|
|
24
|
+
dataInterface(): IUsuarioSistema;
|
|
25
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IUsuario, IConexionDB, IEmpresa } from '../../interfaces/Usuario';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MUsuario extends MBasicModel {
|
|
4
|
+
nombre: string;
|
|
5
|
+
apellido: string;
|
|
6
|
+
conexionDB: IConexionDB;
|
|
7
|
+
enterprise: number;
|
|
8
|
+
empresa: IEmpresa;
|
|
9
|
+
token: string;
|
|
10
|
+
foto: string;
|
|
11
|
+
id: number;
|
|
12
|
+
procede?: string;
|
|
13
|
+
codsis?: string;
|
|
14
|
+
nomina?: number;
|
|
15
|
+
periodo?: number;
|
|
16
|
+
carpeta?: string;
|
|
17
|
+
sistema?: string;
|
|
18
|
+
fuente?: string;
|
|
19
|
+
private interface;
|
|
20
|
+
constructor(user?: IUsuario);
|
|
21
|
+
getInterface(): IUsuario;
|
|
22
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { IUserDetail } from '../../interfaces/Seguridad';
|
|
3
|
+
import { MRights } from '../SSS/userRights.model';
|
|
4
|
+
export declare class MUserDetail extends MBasicModel {
|
|
5
|
+
id: number;
|
|
6
|
+
idCompany: number;
|
|
7
|
+
idEnterprise: number;
|
|
8
|
+
lastName: string;
|
|
9
|
+
identification: string;
|
|
10
|
+
username: string;
|
|
11
|
+
email: string;
|
|
12
|
+
status: number;
|
|
13
|
+
blockDate: string;
|
|
14
|
+
passDate: string;
|
|
15
|
+
birthday: string;
|
|
16
|
+
registrationDate: string;
|
|
17
|
+
photo: string;
|
|
18
|
+
name: string;
|
|
19
|
+
notes: string;
|
|
20
|
+
password: string;
|
|
21
|
+
telephone: string;
|
|
22
|
+
admin: boolean;
|
|
23
|
+
rights: MRights[];
|
|
24
|
+
constructor(user?: IUserDetail);
|
|
25
|
+
turnToInterface(): IUserDetail;
|
|
26
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { IUserPermit } from '../../interfaces/Seguridad';
|
|
3
|
+
export declare class MUserPermit extends MBasicModel {
|
|
4
|
+
id: number;
|
|
5
|
+
systemCode: string;
|
|
6
|
+
internalPermit: string;
|
|
7
|
+
active: boolean;
|
|
8
|
+
userData: {
|
|
9
|
+
id: number;
|
|
10
|
+
name: string;
|
|
11
|
+
lastname: string;
|
|
12
|
+
username: string;
|
|
13
|
+
};
|
|
14
|
+
descripcion: string;
|
|
15
|
+
id_record: number;
|
|
16
|
+
constructor(permit?: IUserPermit);
|
|
17
|
+
interface(): IUserPermit;
|
|
18
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { IRights } from '../../interfaces/Seguridad';
|
|
3
|
+
export declare class MRights extends MBasicModel {
|
|
4
|
+
id: number;
|
|
5
|
+
userId: number;
|
|
6
|
+
groupId: number;
|
|
7
|
+
componentId: number;
|
|
8
|
+
systemCode: string;
|
|
9
|
+
admin: boolean;
|
|
10
|
+
insert: boolean;
|
|
11
|
+
update: boolean;
|
|
12
|
+
get: boolean;
|
|
13
|
+
delete: boolean;
|
|
14
|
+
cancel: boolean;
|
|
15
|
+
download: boolean;
|
|
16
|
+
executeProcess: boolean;
|
|
17
|
+
sendEmail: boolean;
|
|
18
|
+
print: boolean;
|
|
19
|
+
visible: boolean;
|
|
20
|
+
aprobar: boolean;
|
|
21
|
+
revaprobar: boolean;
|
|
22
|
+
anular_sc: boolean;
|
|
23
|
+
revanular_sc: boolean;
|
|
24
|
+
contabilizar: boolean;
|
|
25
|
+
revcontabilizar: boolean;
|
|
26
|
+
anular_c: boolean;
|
|
27
|
+
revanular_c: boolean;
|
|
28
|
+
children: MRights[];
|
|
29
|
+
icon: string;
|
|
30
|
+
componentName: string;
|
|
31
|
+
all: boolean;
|
|
32
|
+
fatherId: number;
|
|
33
|
+
constructor(right?: IRights);
|
|
34
|
+
interface(): IRights;
|
|
35
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ICargoAdicional } from "../../interfaces/Tributos";
|
|
2
|
+
import { MBasicModel } from "../basic-model.model";
|
|
3
|
+
export declare class MCargosAdicionales extends MBasicModel {
|
|
4
|
+
isNew: boolean;
|
|
5
|
+
error: boolean;
|
|
6
|
+
idEmpresa: number;
|
|
7
|
+
id: number;
|
|
8
|
+
codigo: string;
|
|
9
|
+
denominacion: string;
|
|
10
|
+
codigoEstruraPresupuestaria: string;
|
|
11
|
+
porcentaje: number;
|
|
12
|
+
formula: string;
|
|
13
|
+
tipo: number;
|
|
14
|
+
cuenta: string;
|
|
15
|
+
idEp1: number;
|
|
16
|
+
idEp2: number;
|
|
17
|
+
idEp3: number;
|
|
18
|
+
idEp4: number;
|
|
19
|
+
idEp5: number;
|
|
20
|
+
denominacionCuenta: string;
|
|
21
|
+
idUnidadOrganizativa: number;
|
|
22
|
+
codigoUnidadOrganizativa: string;
|
|
23
|
+
denominacionUnidadOrganizativa: string;
|
|
24
|
+
codigoCentroCosto: string;
|
|
25
|
+
denominacionCentroCosto: string;
|
|
26
|
+
codigoFuenteFinanciamiento: number;
|
|
27
|
+
codigoFuenteFinanciamientoMostrar: string;
|
|
28
|
+
denominacionFuenteFinanciamiento: string;
|
|
29
|
+
constructor(charge?: ICargoAdicional);
|
|
30
|
+
dataInterface(): ICargoAdicional;
|
|
31
|
+
}
|