sigesp 1.1.56-20250722 → 1.1.58-20250723

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