sigesp 0.9.104-20240402 → 1.0.0-20240419
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 +360 -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 +404 -0
- package/esm2020/lib/core/models/SNO/MConstanteNomina.model.mjs +67 -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 +343 -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 +95 -0
- package/esm2020/lib/core/models/SNO/MPermisos.model.mjs +68 -0
- package/esm2020/lib/core/models/SNO/MPersonal.model.mjs +626 -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 +116 -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 +72 -0
- package/esm2020/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.mjs +83 -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 +2050 -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.js → sigesp.mjs} +524 -286
- package/fesm2015/sigesp.mjs.map +1 -0
- package/fesm2020/sigesp.mjs +14485 -0
- package/fesm2020/sigesp.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/app/app.component.d.ts +3 -0
- package/lib/app/app.module.d.ts +8 -0
- package/lib/core/models/SNO/MAuditoria.model.d.ts +1 -1
- package/lib/core/models/SNO/MFamiliares.model.d.ts +2 -2
- package/lib/shared/components/catalogo/catalogo.component.d.ts +4 -1
- package/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.d.ts +3 -0
- package/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.d.ts +4 -1
- package/lib/shared/components/confirm/confirm.component.d.ts +3 -0
- package/lib/shared/components/icon/icon.component.d.ts +3 -0
- package/lib/shared/components/table-select/table-select.component.d.ts +4 -1
- package/lib/shared/material/material.module.d.ts +46 -0
- package/lib/shared/pipes/iso-currency.pipe.d.ts +3 -0
- package/lib/shared/shared.module.d.ts +14 -0
- package/lib/sigesp.service.d.ts +6 -3
- package/lib/validation.service.d.ts +3 -0
- package/package.json +23 -11
- package/public-api.d.ts +8 -0
- package/bundles/sigesp.umd.js +0 -15577
- package/bundles/sigesp.umd.js.map +0 -1
- package/bundles/sigesp.umd.min.js +0 -2
- package/bundles/sigesp.umd.min.js.map +0 -1
- package/esm2015/lib/app/app.component.js +0 -15
- package/esm2015/lib/app/app.module.js +0 -23
- package/esm2015/lib/core/interfaces/Auditoria.js +0 -49
- package/esm2015/lib/core/interfaces/Banco.js +0 -2
- package/esm2015/lib/core/interfaces/Catalogo.js +0 -2
- package/esm2015/lib/core/interfaces/CentroCosto.js +0 -2
- package/esm2015/lib/core/interfaces/Clasificacion.js +0 -2
- package/esm2015/lib/core/interfaces/Cliente.js +0 -2
- package/esm2015/lib/core/interfaces/ComprobantePresupuestario.js +0 -2
- package/esm2015/lib/core/interfaces/Comunidad.js +0 -2
- package/esm2015/lib/core/interfaces/Configuracion.js +0 -2
- package/esm2015/lib/core/interfaces/ConfiguracionRPC.js +0 -2
- package/esm2015/lib/core/interfaces/ConfiguracionSCG.js +0 -2
- package/esm2015/lib/core/interfaces/ConfigurationSPG.js +0 -2
- package/esm2015/lib/core/interfaces/Constantes.js +0 -360
- package/esm2015/lib/core/interfaces/CuentaEgresos.js +0 -2
- package/esm2015/lib/core/interfaces/CuentaIngreso.js +0 -2
- package/esm2015/lib/core/interfaces/CuentaIngresoEstructura.js +0 -2
- package/esm2015/lib/core/interfaces/CuentaInstitucional.js +0 -2
- package/esm2015/lib/core/interfaces/CuentaPresupuesto.js +0 -2
- package/esm2015/lib/core/interfaces/CuentasPorPagar.js +0 -2
- package/esm2015/lib/core/interfaces/Documento.js +0 -2
- package/esm2015/lib/core/interfaces/EntradaSuministro.js +0 -2
- package/esm2015/lib/core/interfaces/Especialidad.js +0 -2
- package/esm2015/lib/core/interfaces/EstructuraPresupuestaria.js +0 -2
- package/esm2015/lib/core/interfaces/FuenteFinanciamiento.js +0 -2
- package/esm2015/lib/core/interfaces/IBancoCuentasPorPagar.js +0 -2
- package/esm2015/lib/core/interfaces/ITipoDepositos.js +0 -2
- package/esm2015/lib/core/interfaces/Integracion.js +0 -2
- package/esm2015/lib/core/interfaces/Lugares.js +0 -2
- package/esm2015/lib/core/interfaces/Moneda.js +0 -2
- package/esm2015/lib/core/interfaces/Nomina.js +0 -27
- package/esm2015/lib/core/interfaces/PlanUnicoCuenta.js +0 -2
- package/esm2015/lib/core/interfaces/Presupuesto.js +0 -2
- package/esm2015/lib/core/interfaces/Proveedor.js +0 -2
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +0 -4
- package/esm2015/lib/core/interfaces/Request.js +0 -2
- package/esm2015/lib/core/interfaces/Response.js +0 -2
- package/esm2015/lib/core/interfaces/Seguridad.js +0 -2
- package/esm2015/lib/core/interfaces/Servicios.js +0 -2
- package/esm2015/lib/core/interfaces/Sistema.js +0 -2
- package/esm2015/lib/core/interfaces/Tributos.js +0 -2
- package/esm2015/lib/core/interfaces/UnidadTributaria.js +0 -2
- package/esm2015/lib/core/interfaces/Usuario.js +0 -2
- package/esm2015/lib/core/interfaces/UsuarioPrefijo.js +0 -2
- package/esm2015/lib/core/models/CFG/Empresa.model.js +0 -151
- package/esm2015/lib/core/models/CFG/Enterprise.model.js +0 -70
- package/esm2015/lib/core/models/CFG/MPrefijo.model.js +0 -64
- package/esm2015/lib/core/models/CFG/Procede.model.js +0 -31
- package/esm2015/lib/core/models/CFG/TasaCambio.model.js +0 -34
- package/esm2015/lib/core/models/CFG/comunidad.model.js +0 -22
- package/esm2015/lib/core/models/CFG/locations.model.js +0 -170
- package/esm2015/lib/core/models/CFG/moneda.model.js +0 -72
- package/esm2015/lib/core/models/CFG/userPrefix.model.js +0 -46
- package/esm2015/lib/core/models/CXP/MConceptosCXP.model.js +0 -34
- package/esm2015/lib/core/models/CXP/MTipoDocumentoCXP.model.js +0 -44
- package/esm2015/lib/core/models/RPC/clasification.model.js +0 -16
- package/esm2015/lib/core/models/RPC/configuracionRPC.model.js +0 -23
- package/esm2015/lib/core/models/RPC/document.model.js +0 -16
- package/esm2015/lib/core/models/RPC/proveedores.model.js +0 -9
- package/esm2015/lib/core/models/RPC/providerBeneficiary.model.js +0 -164
- package/esm2015/lib/core/models/RPC/specialty.model.js +0 -12
- package/esm2015/lib/core/models/SCB/bank.model.js +0 -181
- package/esm2015/lib/core/models/SCG/IncomeAccount.js +0 -83
- package/esm2015/lib/core/models/SCG/accountMarriage.model.js +0 -29
- package/esm2015/lib/core/models/SCG/centroCosto.model.js +0 -65
- package/esm2015/lib/core/models/SCG/configuracionSCG.model.js +0 -169
- package/esm2015/lib/core/models/SCG/cuentaInstitucional.model.js +0 -89
- package/esm2015/lib/core/models/SCG/planUnicoCuenta.model.js +0 -17
- package/esm2015/lib/core/models/SFV/MClienteModel.js +0 -116
- package/esm2015/lib/core/models/SIV/MDetaContable.model.js +0 -62
- package/esm2015/lib/core/models/SIV/MDetaEntrada.model.js +0 -94
- package/esm2015/lib/core/models/SIV/MEntradaSuministro.model.js +0 -132
- package/esm2015/lib/core/models/SIV/MTipoDepositos.model.js +0 -61
- package/esm2015/lib/core/models/SNO/MAnticipoPrestaciones.model.js +0 -100
- package/esm2015/lib/core/models/SNO/MArchivoTxtCampo.model.js +0 -61
- package/esm2015/lib/core/models/SNO/MArchivosTxt.model.js +0 -41
- package/esm2015/lib/core/models/SNO/MAsignacionCargo.model.js +0 -205
- package/esm2015/lib/core/models/SNO/MAspectoEvaluacion.model.js +0 -90
- package/esm2015/lib/core/models/SNO/MAuditoria.model.js +0 -61
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +0 -137
- package/esm2015/lib/core/models/SNO/MCargaFamiliar.model.js +0 -52
- package/esm2015/lib/core/models/SNO/MCargaMasiva.model.js +0 -34
- package/esm2015/lib/core/models/SNO/MCargosPersonal.model.js +0 -101
- package/esm2015/lib/core/models/SNO/MClasificacionObrero.mdel.js +0 -46
- package/esm2015/lib/core/models/SNO/MCodigoUnicoRac.model.js +0 -39
- package/esm2015/lib/core/models/SNO/MComponete.model.js +0 -38
- package/esm2015/lib/core/models/SNO/MConceptoVacaciones.model.js +0 -85
- package/esm2015/lib/core/models/SNO/MConceptosNomina.model.js +0 -234
- package/esm2015/lib/core/models/SNO/MConceptosPersonalNomina.model.js +0 -97
- package/esm2015/lib/core/models/SNO/MConcursante.model.js +0 -317
- package/esm2015/lib/core/models/SNO/MConcurso.model.js +0 -246
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +0 -404
- package/esm2015/lib/core/models/SNO/MConstanteNomina.model.js +0 -67
- package/esm2015/lib/core/models/SNO/MConstantePersonalNomina.model.js +0 -79
- package/esm2015/lib/core/models/SNO/MDedicacion.model.js +0 -35
- package/esm2015/lib/core/models/SNO/MDefinicionNomina.model.js +0 -343
- package/esm2015/lib/core/models/SNO/MDefinicionesBasicas.model.js +0 -84
- package/esm2015/lib/core/models/SNO/MDeudaAnterior.model.js +0 -40
- package/esm2015/lib/core/models/SNO/MEncargaduria.model.js +0 -138
- package/esm2015/lib/core/models/SNO/MEscalaEvaluacion.model.js +0 -38
- package/esm2015/lib/core/models/SNO/MEscalaEvaluacionDt.model.js +0 -37
- package/esm2015/lib/core/models/SNO/MEstructuraOrganizativa.model.js +0 -119
- package/esm2015/lib/core/models/SNO/MFamiliares.model.js +0 -86
- package/esm2015/lib/core/models/SNO/MFeriados.model.js +0 -43
- package/esm2015/lib/core/models/SNO/MFideicomiso.model.js +0 -406
- package/esm2015/lib/core/models/SNO/MFormacionAcademica.model.js +0 -49
- package/esm2015/lib/core/models/SNO/MGrado.model.js +0 -47
- package/esm2015/lib/core/models/SNO/MHojaTiempo.model.js +0 -117
- package/esm2015/lib/core/models/SNO/MImpuestoSobreRenta.model.js +0 -73
- package/esm2015/lib/core/models/SNO/MMetodoBanco.model.js +0 -105
- package/esm2015/lib/core/models/SNO/MNominaSimple.model.js +0 -86
- package/esm2015/lib/core/models/SNO/MPeriodoNomina.model.js +0 -95
- package/esm2015/lib/core/models/SNO/MPermisos.model.js +0 -68
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +0 -626
- package/esm2015/lib/core/models/SNO/MPersonalJubilado.model.js +0 -64
- package/esm2015/lib/core/models/SNO/MPersonalNomina.model.js +0 -313
- package/esm2015/lib/core/models/SNO/MPlanHorario.model.js +0 -116
- package/esm2015/lib/core/models/SNO/MPlantillaConstancia.model.js +0 -31
- package/esm2015/lib/core/models/SNO/MPrestamo.model.js +0 -221
- package/esm2015/lib/core/models/SNO/MPrimaGrados.model.js +0 -43
- package/esm2015/lib/core/models/SNO/MPrimasConcepto.model.js +0 -43
- package/esm2015/lib/core/models/SNO/MRango.model.js +0 -43
- package/esm2015/lib/core/models/SNO/MReportesRRHH.js +0 -402
- package/esm2015/lib/core/models/SNO/MRequisitosConcursante.model.js +0 -46
- package/esm2015/lib/core/models/SNO/MRequisitosConcursos.model.js +0 -37
- package/esm2015/lib/core/models/SNO/MRequisitosMinimos.model.js +0 -113
- package/esm2015/lib/core/models/SNO/MSalarioHistorico.model.js +0 -70
- package/esm2015/lib/core/models/SNO/MSolicitudEmpleo.model.js +0 -121
- package/esm2015/lib/core/models/SNO/MTablaVacaciones.model.js +0 -57
- package/esm2015/lib/core/models/SNO/MTablaVacacionesPeriodo.model.js +0 -40
- package/esm2015/lib/core/models/SNO/MTabulador.model.js +0 -96
- package/esm2015/lib/core/models/SNO/MTipoEvaluacion.model.js +0 -75
- package/esm2015/lib/core/models/SNO/MTipoPersonal.model.js +0 -34
- package/esm2015/lib/core/models/SNO/MTiposEnfermedad.model.js +0 -37
- package/esm2015/lib/core/models/SNO/MTrabajoAnterior.model.js +0 -65
- package/esm2015/lib/core/models/SNO/MUbicacionFisica.model.js +0 -61
- package/esm2015/lib/core/models/SNO/MVacacionesPersonal.model.js +0 -115
- package/esm2015/lib/core/models/SOC/charge.model.js +0 -66
- package/esm2015/lib/core/models/SOC/clause.model.js +0 -31
- package/esm2015/lib/core/models/SOC/clauseModality.model.js +0 -35
- package/esm2015/lib/core/models/SOC/configuracionSOC.model.js +0 -62
- package/esm2015/lib/core/models/SOC/service.model.js +0 -46
- package/esm2015/lib/core/models/SOC/serviceCharge.model.js +0 -37
- package/esm2015/lib/core/models/SOC/serviceType.model.js +0 -31
- package/esm2015/lib/core/models/SPG/UnidadAdministradoraCentral.js +0 -43
- package/esm2015/lib/core/models/SPG/administrativeUnit.model.js +0 -112
- package/esm2015/lib/core/models/SPG/comprobantePresupuestario.model.js +0 -51
- package/esm2015/lib/core/models/SPG/configurationSPG.model.js +0 -59
- package/esm2015/lib/core/models/SPG/cuentaPresupuesto.model.js +0 -120
- package/esm2015/lib/core/models/SPG/estructuraPresupuestaria.model.js +0 -176
- package/esm2015/lib/core/models/SPG/expensiveAccount.model.js +0 -108
- package/esm2015/lib/core/models/SPG/fuenteFinanciamiento.model.js +0 -31
- package/esm2015/lib/core/models/SPG/incomeStructureAccount.model.js +0 -81
- package/esm2015/lib/core/models/SPG/organizationType.model.js +0 -12
- package/esm2015/lib/core/models/SSS/component.model.js +0 -44
- package/esm2015/lib/core/models/SSS/group.model.js +0 -30
- package/esm2015/lib/core/models/SSS/log.model.js +0 -29
- package/esm2015/lib/core/models/SSS/securityConfiguration.model.js +0 -20
- package/esm2015/lib/core/models/SSS/sistema.js +0 -71
- package/esm2015/lib/core/models/SSS/user.model.js +0 -32
- package/esm2015/lib/core/models/SSS/userDetail.model.js +0 -73
- package/esm2015/lib/core/models/SSS/userPermit.model.js +0 -47
- package/esm2015/lib/core/models/SSS/userRights.model.js +0 -104
- package/esm2015/lib/core/models/STB/MCargosAdicionales.js +0 -84
- package/esm2015/lib/core/models/STB/deduction.model.js +0 -90
- package/esm2015/lib/core/models/STB/deductionType.model.js +0 -20
- package/esm2015/lib/core/models/STB/unidadTributaria.model.js +0 -14
- package/esm2015/lib/core/models/basic-model.model.js +0 -8
- package/esm2015/lib/shared/components/catalogo/catalogo.component.js +0 -59
- package/esm2015/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.js +0 -70
- package/esm2015/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.js +0 -62
- package/esm2015/lib/shared/components/confirm/confirm.component.js +0 -30
- package/esm2015/lib/shared/components/icon/icon.component.js +0 -20
- package/esm2015/lib/shared/components/table-select/table-select.component.js +0 -85
- package/esm2015/lib/shared/material/customPaginator.js +0 -24
- package/esm2015/lib/shared/material/material.module.js +0 -145
- package/esm2015/lib/shared/pipes/iso-currency.pipe.js +0 -39
- package/esm2015/lib/shared/shared.module.js +0 -51
- package/esm2015/lib/sigesp.service.js +0 -2084
- package/esm2015/lib/validation.service.js +0 -130
- package/esm2015/public-api.js +0 -148
- package/esm2015/sigesp.js +0 -15
- package/fesm2015/sigesp.js.map +0 -1
- package/sigesp.d.ts +0 -32
- package/sigesp.metadata.json +0 -1
package/index.d.ts
ADDED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AppComponent implements OnInit {
|
|
3
4
|
constructor();
|
|
4
5
|
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppComponent, "app-app", never, {}, {}, never, never, false>;
|
|
5
8
|
}
|
package/lib/app/app.module.d.ts
CHANGED
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./app.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../shared/shared.module";
|
|
5
|
+
import * as i4 from "ngx-toastr";
|
|
1
6
|
export declare class AppModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppModule, [typeof i1.AppComponent], [typeof i2.CommonModule, typeof i3.SharedModule, typeof i4.ToastrModule], [typeof i3.SharedModule]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AppModule>;
|
|
2
10
|
}
|
|
@@ -15,7 +15,7 @@ export declare class MSnoLog extends MBasicModel {
|
|
|
15
15
|
codigoUsuario: string;
|
|
16
16
|
observacion: string;
|
|
17
17
|
evento: string;
|
|
18
|
-
campoPermitido: import("
|
|
18
|
+
campoPermitido: import("sigesp").ISelect[];
|
|
19
19
|
constructor(e?: ISnoLog);
|
|
20
20
|
dataInteface(): ISnoLog;
|
|
21
21
|
}
|
|
@@ -24,8 +24,8 @@ export declare class MFamiliares extends MBasicModel {
|
|
|
24
24
|
direccionFamiliar: string;
|
|
25
25
|
telefonoFamiliar: string;
|
|
26
26
|
hijoDiscapacidad: boolean;
|
|
27
|
-
Nexo: import("
|
|
28
|
-
Academico: import("
|
|
27
|
+
Nexo: import("./../../interfaces/Constantes").ISelect[];
|
|
28
|
+
Academico: import("./../../interfaces/Constantes").ISelect[];
|
|
29
29
|
constructor(e?: IFamiliares);
|
|
30
30
|
dataInterface(): IFamiliares;
|
|
31
31
|
}
|
|
@@ -4,6 +4,7 @@ import { MatPaginator } from '@angular/material/paginator';
|
|
|
4
4
|
import { MatSort } from '@angular/material/sort';
|
|
5
5
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
6
6
|
import { ICatalogo } from '../../../core/interfaces/Catalogo';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class CatalogoComponent implements OnInit {
|
|
8
9
|
private dialogRef;
|
|
9
10
|
dialogData: ICatalogo;
|
|
@@ -20,7 +21,7 @@ export declare class CatalogoComponent implements OnInit {
|
|
|
20
21
|
* @return void
|
|
21
22
|
* @author Miguel Ramírez
|
|
22
23
|
*/
|
|
23
|
-
filterTable(filterValue:
|
|
24
|
+
filterTable(filterValue: any): void;
|
|
24
25
|
/**
|
|
25
26
|
* @description Manda a cerrar el dialog
|
|
26
27
|
* @param data Data que se va a mandar de respuesta
|
|
@@ -28,4 +29,6 @@ export declare class CatalogoComponent implements OnInit {
|
|
|
28
29
|
* @author Miguel Ramírez
|
|
29
30
|
*/
|
|
30
31
|
closeDialog(data?: any): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogoComponent, [{ optional: true; }, { optional: true; }]>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogoComponent, "app-catalogo", never, {}, {}, never, never, false>;
|
|
31
34
|
}
|
|
@@ -5,6 +5,7 @@ import { MatSort } from '@angular/material/sort';
|
|
|
5
5
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
6
6
|
import { ICatalogo, filterData } from '../../../core/interfaces/Catalogo';
|
|
7
7
|
import { CatalogoComponent } from '../catalogo/catalogo.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class CatalogoDobleInputComponent implements OnInit {
|
|
9
10
|
private dialogRef;
|
|
10
11
|
dialogData: ICatalogo;
|
|
@@ -32,4 +33,6 @@ export declare class CatalogoDobleInputComponent implements OnInit {
|
|
|
32
33
|
* @author Miguel Ramírez
|
|
33
34
|
*/
|
|
34
35
|
closeDialog(data?: any): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogoDobleInputComponent, [{ optional: true; }, { optional: true; }]>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogoDobleInputComponent, "app-catalogo-doble-input", never, {}, {}, never, never, false>;
|
|
35
38
|
}
|
|
@@ -4,6 +4,7 @@ import { MatPaginator } from '@angular/material/paginator';
|
|
|
4
4
|
import { MatSort } from '@angular/material/sort';
|
|
5
5
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
6
6
|
import { MConfigurationSPG } from '../../../core/models/SPG/configurationSPG.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class CatalogoEstructurasComponent implements OnInit {
|
|
8
9
|
private dialogRef;
|
|
9
10
|
dialogData: IDialogData;
|
|
@@ -19,7 +20,7 @@ export declare class CatalogoEstructurasComponent implements OnInit {
|
|
|
19
20
|
* @return void
|
|
20
21
|
* @author Miguel Ramírez
|
|
21
22
|
*/
|
|
22
|
-
filterTable(filterValue:
|
|
23
|
+
filterTable(filterValue: any): void;
|
|
23
24
|
/**
|
|
24
25
|
* @description Manda a cerrar el dialog
|
|
25
26
|
* @param data Data que se va a mandar de respuesta
|
|
@@ -27,6 +28,8 @@ export declare class CatalogoEstructurasComponent implements OnInit {
|
|
|
27
28
|
* @author Miguel Ramírez
|
|
28
29
|
*/
|
|
29
30
|
closeDialog(data?: any): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogoEstructurasComponent, [{ optional: true; }, { optional: true; }]>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogoEstructurasComponent, "app-catalogo-estructuras", never, {}, {}, never, never, false>;
|
|
30
33
|
}
|
|
31
34
|
interface IDialogData {
|
|
32
35
|
data: any[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ConfirmComponent implements OnInit {
|
|
4
5
|
private dialogRef;
|
|
5
6
|
dialogData: ConfirmData;
|
|
@@ -10,6 +11,8 @@ export declare class ConfirmComponent implements OnInit {
|
|
|
10
11
|
* @param resp Respuesta de la modal
|
|
11
12
|
*/
|
|
12
13
|
closeDialog(resp: boolean): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmComponent, [{ optional: true; }, { optional: true; }]>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmComponent, "app-confirm", never, {}, {}, never, never, false>;
|
|
13
16
|
}
|
|
14
17
|
interface ConfirmData {
|
|
15
18
|
title: string;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class IconComponent implements OnInit {
|
|
3
4
|
name: string;
|
|
4
5
|
size: string;
|
|
5
6
|
color: string;
|
|
6
7
|
constructor();
|
|
7
8
|
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "icon-m", never, { "name": "name"; "size": "size"; "color": "color"; }, {}, never, never, false>;
|
|
8
11
|
}
|
|
@@ -4,6 +4,7 @@ import { MatPaginator } from '@angular/material/paginator';
|
|
|
4
4
|
import { MatSort } from '@angular/material/sort';
|
|
5
5
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
6
6
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TableSelectComponent implements AfterViewInit {
|
|
8
9
|
private dialogRef;
|
|
9
10
|
dialogData: ISelect;
|
|
@@ -24,8 +25,10 @@ export declare class TableSelectComponent implements AfterViewInit {
|
|
|
24
25
|
checkboxLabel(row?: any): string;
|
|
25
26
|
closeDialog(): void;
|
|
26
27
|
cancelDialog(): void;
|
|
27
|
-
filterTable(filterValue:
|
|
28
|
+
filterTable(filterValue: any): void;
|
|
28
29
|
getFilter(): boolean;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableSelectComponent, [{ optional: true; }, { optional: true; }]>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableSelectComponent, "app-table-select", never, {}, {}, never, never, false>;
|
|
29
32
|
}
|
|
30
33
|
interface ISelect {
|
|
31
34
|
columns: string[];
|
|
@@ -1,2 +1,48 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/a11y";
|
|
3
|
+
import * as i2 from "@angular/cdk/stepper";
|
|
4
|
+
import * as i3 from "@angular/cdk/table";
|
|
5
|
+
import * as i4 from "@angular/cdk/tree";
|
|
6
|
+
import * as i5 from "@angular/cdk/drag-drop";
|
|
7
|
+
import * as i6 from "@angular/material/autocomplete";
|
|
8
|
+
import * as i7 from "@angular/material/badge";
|
|
9
|
+
import * as i8 from "@angular/material/bottom-sheet";
|
|
10
|
+
import * as i9 from "@angular/material/button";
|
|
11
|
+
import * as i10 from "@angular/material/button-toggle";
|
|
12
|
+
import * as i11 from "@angular/material/card";
|
|
13
|
+
import * as i12 from "@angular/material/checkbox";
|
|
14
|
+
import * as i13 from "@angular/material/chips";
|
|
15
|
+
import * as i14 from "@angular/material/core";
|
|
16
|
+
import * as i15 from "@angular/material/stepper";
|
|
17
|
+
import * as i16 from "@angular/material/datepicker";
|
|
18
|
+
import * as i17 from "@angular/material-moment-adapter";
|
|
19
|
+
import * as i18 from "@angular/material/dialog";
|
|
20
|
+
import * as i19 from "@angular/material/divider";
|
|
21
|
+
import * as i20 from "@angular/material/expansion";
|
|
22
|
+
import * as i21 from "@angular/material/grid-list";
|
|
23
|
+
import * as i22 from "@angular/material/icon";
|
|
24
|
+
import * as i23 from "@angular/material/input";
|
|
25
|
+
import * as i24 from "@angular/material/list";
|
|
26
|
+
import * as i25 from "@angular/material/menu";
|
|
27
|
+
import * as i26 from "@angular/material/paginator";
|
|
28
|
+
import * as i27 from "@angular/material/progress-bar";
|
|
29
|
+
import * as i28 from "@angular/material/progress-spinner";
|
|
30
|
+
import * as i29 from "@angular/material/radio";
|
|
31
|
+
import * as i30 from "@angular/material/select";
|
|
32
|
+
import * as i31 from "@angular/material/sidenav";
|
|
33
|
+
import * as i32 from "@angular/material/slider";
|
|
34
|
+
import * as i33 from "@angular/material/slide-toggle";
|
|
35
|
+
import * as i34 from "@angular/material/snack-bar";
|
|
36
|
+
import * as i35 from "@angular/material/sort";
|
|
37
|
+
import * as i36 from "@angular/material/table";
|
|
38
|
+
import * as i37 from "@angular/material/tabs";
|
|
39
|
+
import * as i38 from "@angular/material/toolbar";
|
|
40
|
+
import * as i39 from "@angular/material/tooltip";
|
|
41
|
+
import * as i40 from "@angular/material/tree";
|
|
42
|
+
import * as i41 from "@angular/cdk/portal";
|
|
43
|
+
import * as i42 from "@angular/cdk/scrolling";
|
|
1
44
|
export declare class CustonMaterialModule {
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustonMaterialModule, never>;
|
|
46
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CustonMaterialModule, never, [typeof i1.A11yModule, typeof i2.CdkStepperModule, typeof i3.CdkTableModule, typeof i4.CdkTreeModule, typeof i5.DragDropModule, typeof i6.MatAutocompleteModule, typeof i7.MatBadgeModule, typeof i8.MatBottomSheetModule, typeof i9.MatButtonModule, typeof i10.MatButtonToggleModule, typeof i11.MatCardModule, typeof i12.MatCheckboxModule, typeof i13.MatChipsModule, typeof i14.MatCommonModule, typeof i15.MatStepperModule, typeof i16.MatDatepickerModule, typeof i17.MatMomentDateModule, typeof i18.MatDialogModule, typeof i19.MatDividerModule, typeof i20.MatExpansionModule, typeof i21.MatGridListModule, typeof i22.MatIconModule, typeof i23.MatInputModule, typeof i24.MatListModule, typeof i25.MatMenuModule, typeof i14.MatNativeDateModule, typeof i26.MatPaginatorModule, typeof i27.MatProgressBarModule, typeof i28.MatProgressSpinnerModule, typeof i29.MatRadioModule, typeof i14.MatRippleModule, typeof i30.MatSelectModule, typeof i31.MatSidenavModule, typeof i32.MatSliderModule, typeof i33.MatSlideToggleModule, typeof i34.MatSnackBarModule, typeof i35.MatSortModule, typeof i36.MatTableModule, typeof i37.MatTabsModule, typeof i38.MatToolbarModule, typeof i39.MatTooltipModule, typeof i40.MatTreeModule, typeof i41.PortalModule, typeof i42.ScrollingModule], [typeof i1.A11yModule, typeof i2.CdkStepperModule, typeof i3.CdkTableModule, typeof i4.CdkTreeModule, typeof i5.DragDropModule, typeof i6.MatAutocompleteModule, typeof i7.MatBadgeModule, typeof i8.MatBottomSheetModule, typeof i9.MatButtonModule, typeof i10.MatButtonToggleModule, typeof i11.MatCardModule, typeof i12.MatCheckboxModule, typeof i13.MatChipsModule, typeof i14.MatCommonModule, typeof i15.MatStepperModule, typeof i16.MatDatepickerModule, typeof i17.MatMomentDateModule, typeof i18.MatDialogModule, typeof i19.MatDividerModule, typeof i20.MatExpansionModule, typeof i21.MatGridListModule, typeof i22.MatIconModule, typeof i23.MatInputModule, typeof i24.MatListModule, typeof i25.MatMenuModule, typeof i14.MatNativeDateModule, typeof i26.MatPaginatorModule, typeof i27.MatProgressBarModule, typeof i28.MatProgressSpinnerModule, typeof i29.MatRadioModule, typeof i14.MatRippleModule, typeof i30.MatSelectModule, typeof i31.MatSidenavModule, typeof i32.MatSliderModule, typeof i33.MatSlideToggleModule, typeof i34.MatSnackBarModule, typeof i35.MatSortModule, typeof i36.MatTableModule, typeof i37.MatTabsModule, typeof i38.MatToolbarModule, typeof i39.MatTooltipModule, typeof i40.MatTreeModule, typeof i41.PortalModule, typeof i42.ScrollingModule]>;
|
|
47
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CustonMaterialModule>;
|
|
2
48
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class IsoCurrencyPipe implements PipeTransform {
|
|
3
4
|
transform(value: number, args?: Arguments): string;
|
|
4
5
|
private splitStringFromEnd;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IsoCurrencyPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IsoCurrencyPipe, "iso", false>;
|
|
5
8
|
}
|
|
6
9
|
interface Arguments {
|
|
7
10
|
decimal?: string;
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/catalogo/catalogo.component";
|
|
3
|
+
import * as i2 from "./components/confirm/confirm.component";
|
|
4
|
+
import * as i3 from "./components/icon/icon.component";
|
|
5
|
+
import * as i4 from "./components/table-select/table-select.component";
|
|
6
|
+
import * as i5 from "./components/catalogo-estructuras/catalogo-estructuras.component";
|
|
7
|
+
import * as i6 from "./components/catalogo-doble-input/catalogo-doble-input.component";
|
|
8
|
+
import * as i7 from "./pipes/iso-currency.pipe";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "./material/material.module";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
1
12
|
export declare class SharedModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.CatalogoComponent, typeof i2.ConfirmComponent, typeof i3.IconComponent, typeof i4.TableSelectComponent, typeof i5.CatalogoEstructurasComponent, typeof i6.CatalogoDobleInputComponent, typeof i7.IsoCurrencyPipe], [typeof i8.CommonModule, typeof i9.CustonMaterialModule, typeof i10.FormsModule], [typeof i1.CatalogoComponent, typeof i2.ConfirmComponent, typeof i3.IconComponent, typeof i4.TableSelectComponent, typeof i5.CatalogoEstructurasComponent, typeof i7.IsoCurrencyPipe]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
2
16
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { MCuentaInstitucional } from './core/models/SCG/cuentaInstitucional.mode
|
|
|
9
9
|
import { MMoneda } from './core/models/CFG/moneda.model';
|
|
10
10
|
import { ToastrService } from 'ngx-toastr';
|
|
11
11
|
import { MUnidadTributaria } from './core/models/STB/unidadTributaria.model';
|
|
12
|
-
import { AbstractControl,
|
|
12
|
+
import { AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
13
13
|
import { MConfiguracionSCG } from './core/models/SCG/configuracionSCG.model';
|
|
14
14
|
import { MPlanUnicoCuenta } from './core/models/SCG/planUnicoCuenta.model';
|
|
15
15
|
import { IConexion } from './core/interfaces/Usuario';
|
|
@@ -31,6 +31,7 @@ import { MLog } from './core/models/SSS/log.model';
|
|
|
31
31
|
import { MSnoLog } from './core/models/SNO/MAuditoria.model';
|
|
32
32
|
import { MComunidad } from './core/models/CFG/comunidad.model';
|
|
33
33
|
import { MExchangeRate } from './core/models/CFG/TasaCambio.model';
|
|
34
|
+
import * as i0 from "@angular/core";
|
|
34
35
|
export declare class SigespService {
|
|
35
36
|
private http;
|
|
36
37
|
private dialog;
|
|
@@ -367,7 +368,7 @@ export declare class SigespService {
|
|
|
367
368
|
* @return void
|
|
368
369
|
* @author Miguel Ramírez
|
|
369
370
|
*/
|
|
370
|
-
changeToUpperCase(formGroup:
|
|
371
|
+
changeToUpperCase(formGroup: UntypedFormGroup, name: string): void;
|
|
371
372
|
/**
|
|
372
373
|
* @description Obtiene el AbstractControl de un formulario
|
|
373
374
|
* @param formGroup Formulario donde se va a buscar el AbstractControl
|
|
@@ -375,7 +376,7 @@ export declare class SigespService {
|
|
|
375
376
|
* @return AbstractControl
|
|
376
377
|
* @author Miguel Ramírez
|
|
377
378
|
*/
|
|
378
|
-
getAbstractControl(formGroup:
|
|
379
|
+
getAbstractControl(formGroup: UntypedFormGroup, name: string): AbstractControl;
|
|
379
380
|
/**
|
|
380
381
|
* @description Previene que se escriban letras en el input (Usar en keypress)
|
|
381
382
|
* @param event Evento del teclado
|
|
@@ -1037,6 +1038,8 @@ export declare class SigespService {
|
|
|
1037
1038
|
* @date 13-11-2022
|
|
1038
1039
|
*/
|
|
1039
1040
|
getCargosAdicionales(tipo: string, id?: number): Observable<any>;
|
|
1041
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SigespService, never>;
|
|
1042
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SigespService>;
|
|
1040
1043
|
}
|
|
1041
1044
|
interface filtroCuentasPresupuesto {
|
|
1042
1045
|
tipo?: 'E' | 'R';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MMonedaConfig } from './core/models/CFG/moneda.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CurrencyService {
|
|
3
4
|
constructor();
|
|
4
5
|
checkNumber(e: KeyboardEvent): boolean;
|
|
@@ -9,4 +10,6 @@ export declare class CurrencyService {
|
|
|
9
10
|
transformNumber(string: string, currency: MMonedaConfig): number;
|
|
10
11
|
checkCurrency(e: KeyboardEvent, number: string, currency: MMonedaConfig): boolean;
|
|
11
12
|
checkCurrencyAlt(e: KeyboardEvent, number: string, currency: MMonedaConfig): boolean;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CurrencyService>;
|
|
12
15
|
}
|
package/package.json
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sigesp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-20240419",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"tslib": "^2.
|
|
5
|
+
"tslib": "^2.6.2"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "
|
|
9
|
-
"@angular/compiler": "
|
|
8
|
+
"@angular/common": "^14.3.0",
|
|
9
|
+
"@angular/compiler": "^14.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2015/sigesp.mjs",
|
|
12
|
+
"es2020": "fesm2020/sigesp.mjs",
|
|
13
|
+
"esm2020": "esm2020/sigesp.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/sigesp.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/sigesp.mjs",
|
|
16
|
+
"typings": "index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/sigesp.mjs",
|
|
24
|
+
"es2020": "./fesm2020/sigesp.mjs",
|
|
25
|
+
"es2015": "./fesm2015/sigesp.mjs",
|
|
26
|
+
"node": "./fesm2015/sigesp.mjs",
|
|
27
|
+
"default": "./fesm2020/sigesp.mjs"
|
|
28
|
+
}
|
|
10
29
|
},
|
|
11
|
-
"main": "bundles/sigesp.umd.js",
|
|
12
|
-
"module": "fesm2015/sigesp.js",
|
|
13
|
-
"es2015": "fesm2015/sigesp.js",
|
|
14
|
-
"esm2015": "esm2015/sigesp.js",
|
|
15
|
-
"fesm2015": "fesm2015/sigesp.js",
|
|
16
|
-
"typings": "sigesp.d.ts",
|
|
17
|
-
"metadata": "sigesp.metadata.json",
|
|
18
30
|
"sideEffects": false
|
|
19
31
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -2,6 +2,14 @@ export * from './lib/sigesp.service';
|
|
|
2
2
|
export * from './lib/validation.service';
|
|
3
3
|
export { AppModule } from './lib/app/app.module';
|
|
4
4
|
export { MBasicModel } from './lib/core/models/basic-model.model';
|
|
5
|
+
export { SharedModule } from './lib/shared/shared.module';
|
|
6
|
+
export { CatalogoComponent } from './lib/shared/components/catalogo/catalogo.component';
|
|
7
|
+
export { CatalogoDobleInputComponent } from './lib/shared/components/catalogo-doble-input/catalogo-doble-input.component';
|
|
8
|
+
export { CatalogoEstructurasComponent } from './lib/shared/components/catalogo-estructuras/catalogo-estructuras.component';
|
|
9
|
+
export { ConfirmComponent } from './lib/shared/components/confirm/confirm.component';
|
|
10
|
+
export { TableSelectComponent } from './lib/shared/components/table-select/table-select.component';
|
|
11
|
+
export { IconComponent } from './lib/shared/components/icon/icon.component';
|
|
12
|
+
export { IsoCurrencyPipe } from './lib/shared/pipes/iso-currency.pipe';
|
|
5
13
|
export { MEmpresa } from './lib/core/models/CFG/Empresa.model';
|
|
6
14
|
export { MEnterprise } from './lib/core/models/CFG/Enterprise.model';
|
|
7
15
|
export { MComunidad } from './lib/core/models/CFG/comunidad.model';
|