sigesp 1.1.53-20250619 → 1.1.56-20250722

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (602) hide show
  1. package/.browserslistrc +12 -0
  2. package/.editorconfig +13 -0
  3. package/angular.json +161 -0
  4. package/e2e/protractor.conf.js +32 -0
  5. package/e2e/src/app.e2e-spec.ts +23 -0
  6. package/e2e/src/app.po.ts +11 -0
  7. package/e2e/tsconfig.json +13 -0
  8. package/karma.conf.js +32 -0
  9. package/lib +0 -0
  10. package/package.json +73 -31
  11. package/projects/sigesp/README.md +24 -0
  12. package/projects/sigesp/karma.conf.js +32 -0
  13. package/projects/sigesp/ng-package.json +7 -0
  14. package/projects/sigesp/package.json +11 -0
  15. package/projects/sigesp/src/lib/app/app.component.html +1 -0
  16. package/projects/sigesp/src/lib/app/app.component.scss +0 -0
  17. package/projects/sigesp/src/lib/app/app.component.ts +15 -0
  18. package/projects/sigesp/src/lib/app/app.module.ts +21 -0
  19. package/projects/sigesp/src/lib/core/interfaces/Auditoria.ts +72 -0
  20. package/projects/sigesp/src/lib/core/interfaces/Banco.ts +639 -0
  21. package/projects/sigesp/src/lib/core/interfaces/Catalogo.ts +15 -0
  22. package/projects/sigesp/src/lib/core/interfaces/CentroCosto.ts +22 -0
  23. package/projects/sigesp/src/lib/core/interfaces/Clasificacion.ts +6 -0
  24. package/projects/sigesp/src/lib/core/interfaces/Cliente.ts +36 -0
  25. package/projects/sigesp/src/lib/core/interfaces/ComprobantePresupuestario.ts +52 -0
  26. package/projects/sigesp/src/lib/core/interfaces/Comunidad.ts +12 -0
  27. package/projects/sigesp/src/lib/core/interfaces/Configuracion.ts +100 -0
  28. package/projects/sigesp/src/lib/core/interfaces/ConfiguracionRPC.ts +10 -0
  29. package/projects/sigesp/src/lib/core/interfaces/ConfiguracionSCG.ts +53 -0
  30. package/projects/sigesp/src/lib/core/interfaces/ConfigurationSPG.ts +51 -0
  31. package/projects/sigesp/src/lib/core/interfaces/Constantes.ts +468 -0
  32. package/projects/sigesp/src/lib/core/interfaces/CuentaEgresos.ts +164 -0
  33. package/projects/sigesp/src/lib/core/interfaces/CuentaIngreso.ts +38 -0
  34. package/projects/sigesp/src/lib/core/interfaces/CuentaIngresoEstructura.ts +27 -0
  35. package/projects/sigesp/src/lib/core/interfaces/CuentaInstitucional.ts +28 -0
  36. package/projects/sigesp/src/lib/core/interfaces/CuentaPresupuesto.ts +10 -0
  37. package/projects/sigesp/src/lib/core/interfaces/CuentasPorPagar.ts +40 -0
  38. package/projects/sigesp/src/lib/core/interfaces/Documento.ts +6 -0
  39. package/projects/sigesp/src/lib/core/interfaces/EntradaSuministro.ts +93 -0
  40. package/projects/sigesp/src/lib/core/interfaces/Especialidad.ts +4 -0
  41. package/projects/sigesp/src/lib/core/interfaces/EstructuraPresupuestaria.ts +90 -0
  42. package/projects/sigesp/src/lib/core/interfaces/FuenteFinanciamiento.ts +14 -0
  43. package/projects/sigesp/src/lib/core/interfaces/IBancoCuentasPorPagar.ts +196 -0
  44. package/projects/sigesp/src/lib/core/interfaces/ITipoDepositos.ts +32 -0
  45. package/projects/sigesp/src/lib/core/interfaces/Integracion.ts +6 -0
  46. package/projects/sigesp/src/lib/core/interfaces/Lugares.ts +45 -0
  47. package/projects/sigesp/src/lib/core/interfaces/Moneda.ts +22 -0
  48. package/projects/sigesp/src/lib/core/interfaces/Nomina.ts +614 -0
  49. package/projects/sigesp/src/lib/core/interfaces/PlanUnicoCuenta.ts +4 -0
  50. package/projects/sigesp/src/lib/core/interfaces/Presupuesto.ts +145 -0
  51. package/{lib/core/interfaces/Proveedor.d.ts → projects/sigesp/src/lib/core/interfaces/Proveedor.ts} +26 -22
  52. package/projects/sigesp/src/lib/core/interfaces/RecursosHumanos.ts +1743 -0
  53. package/{lib/core/interfaces/Request.d.ts → projects/sigesp/src/lib/core/interfaces/Request.ts} +4 -3
  54. package/projects/sigesp/src/lib/core/interfaces/Response.ts +7 -0
  55. package/projects/sigesp/src/lib/core/interfaces/Seguridad.ts +120 -0
  56. package/projects/sigesp/src/lib/core/interfaces/Servicios.ts +70 -0
  57. package/projects/sigesp/src/lib/core/interfaces/Sistema.ts +21 -0
  58. package/projects/sigesp/src/lib/core/interfaces/Tributos.ts +80 -0
  59. package/projects/sigesp/src/lib/core/interfaces/UnidadTributaria.ts +11 -0
  60. package/projects/sigesp/src/lib/core/interfaces/Usuario.ts +57 -0
  61. package/projects/sigesp/src/lib/core/interfaces/UsuarioPrefijo.ts +13 -0
  62. package/projects/sigesp/src/lib/core/models/CFG/Empresa.model.ts +121 -0
  63. package/projects/sigesp/src/lib/core/models/CFG/Enterprise.model.ts +74 -0
  64. package/projects/sigesp/src/lib/core/models/CFG/MPrefijo.model.ts +69 -0
  65. package/projects/sigesp/src/lib/core/models/CFG/Procede.model.ts +34 -0
  66. package/projects/sigesp/src/lib/core/models/CFG/TasaCambio.model.ts +43 -0
  67. package/projects/sigesp/src/lib/core/models/CFG/comunidad.model.ts +34 -0
  68. package/projects/sigesp/src/lib/core/models/CFG/locations.model.ts +189 -0
  69. package/projects/sigesp/src/lib/core/models/CFG/moneda.model.ts +82 -0
  70. package/projects/sigesp/src/lib/core/models/CFG/userPrefix.model.ts +51 -0
  71. package/projects/sigesp/src/lib/core/models/CXP/MConceptosCXP.model.ts +36 -0
  72. package/projects/sigesp/src/lib/core/models/CXP/MTipoDocumentoCXP.model.ts +49 -0
  73. package/projects/sigesp/src/lib/core/models/RPC/clasification.model.ts +22 -0
  74. package/projects/sigesp/src/lib/core/models/RPC/configuracionRPC.model.ts +27 -0
  75. package/projects/sigesp/src/lib/core/models/RPC/document.model.ts +20 -0
  76. package/projects/sigesp/src/lib/core/models/RPC/proveedores.model.ts +15 -0
  77. package/projects/sigesp/src/lib/core/models/RPC/providerBeneficiary.model.ts +316 -0
  78. package/projects/sigesp/src/lib/core/models/RPC/specialty.model.ts +14 -0
  79. package/projects/sigesp/src/lib/core/models/SCB/bank.model.ts +205 -0
  80. package/projects/sigesp/src/lib/core/models/SCG/IncomeAccount.ts +134 -0
  81. package/projects/sigesp/src/lib/core/models/SCG/accountMarriage.model.ts +33 -0
  82. package/projects/sigesp/src/lib/core/models/SCG/centroCosto.model.ts +83 -0
  83. package/projects/sigesp/src/lib/core/models/SCG/configuracionSCG.model.ts +166 -0
  84. package/projects/sigesp/src/lib/core/models/SCG/cuentaInstitucional.model.ts +97 -0
  85. package/projects/sigesp/src/lib/core/models/SCG/planUnicoCuenta.model.ts +22 -0
  86. package/projects/sigesp/src/lib/core/models/SFV/MClienteModel.ts +119 -0
  87. package/projects/sigesp/src/lib/core/models/SIV/MDetaContable.model.ts +65 -0
  88. package/projects/sigesp/src/lib/core/models/SIV/MDetaEntrada.model.ts +98 -0
  89. package/projects/sigesp/src/lib/core/models/SIV/MEntradaSuministro.model.ts +135 -0
  90. package/projects/sigesp/src/lib/core/models/SIV/MTipoDepositos.model.ts +109 -0
  91. package/projects/sigesp/src/lib/core/models/SNO/MAnticipoPrestaciones.model.ts +112 -0
  92. package/projects/sigesp/src/lib/core/models/SNO/MArchivoTxtCampo.model.ts +63 -0
  93. package/projects/sigesp/src/lib/core/models/SNO/MArchivosTxt.model.ts +53 -0
  94. package/projects/sigesp/src/lib/core/models/SNO/MAsignacionCargo.model.ts +235 -0
  95. package/projects/sigesp/src/lib/core/models/SNO/MAspectoEvaluacion.model.ts +97 -0
  96. package/projects/sigesp/src/lib/core/models/SNO/MAuditoria.model.ts +67 -0
  97. package/projects/sigesp/src/lib/core/models/SNO/MBeneficiario.model.ts +139 -0
  98. package/projects/sigesp/src/lib/core/models/SNO/MCargaFamiliar.model.ts +54 -0
  99. package/projects/sigesp/src/lib/core/models/SNO/MCargaMasiva.model.ts +37 -0
  100. package/projects/sigesp/src/lib/core/models/SNO/MCargosPersonal.model.ts +123 -0
  101. package/projects/sigesp/src/lib/core/models/SNO/MClasificacionObrero.mdel.ts +48 -0
  102. package/projects/sigesp/src/lib/core/models/SNO/MCodigoUnicoRac.model.ts +41 -0
  103. package/projects/sigesp/src/lib/core/models/SNO/MComponete.model.ts +40 -0
  104. package/projects/sigesp/src/lib/core/models/SNO/MConceptoVacaciones.model.ts +94 -0
  105. package/projects/sigesp/src/lib/core/models/SNO/MConceptosNomina.model.ts +246 -0
  106. package/projects/sigesp/src/lib/core/models/SNO/MConceptosPersonalNomina.model.ts +103 -0
  107. package/projects/sigesp/src/lib/core/models/SNO/MConcursante.model.ts +333 -0
  108. package/projects/sigesp/src/lib/core/models/SNO/MConcurso.model.ts +267 -0
  109. package/projects/sigesp/src/lib/core/models/SNO/MConfiguracionSNO.model.ts +422 -0
  110. package/projects/sigesp/src/lib/core/models/SNO/MConstanteNomina.model.ts +76 -0
  111. package/projects/sigesp/src/lib/core/models/SNO/MConstantePersonalNomina.model.ts +85 -0
  112. package/projects/sigesp/src/lib/core/models/SNO/MDedicacion.model.ts +37 -0
  113. package/projects/sigesp/src/lib/core/models/SNO/MDefinicionNomina.model.ts +320 -0
  114. package/projects/sigesp/src/lib/core/models/SNO/MDefinicionesBasicas.model.ts +82 -0
  115. package/projects/sigesp/src/lib/core/models/SNO/MDeudaAnterior.model.ts +42 -0
  116. package/projects/sigesp/src/lib/core/models/SNO/MEncargaduria.model.ts +142 -0
  117. package/projects/sigesp/src/lib/core/models/SNO/MEscalaEvaluacion.model.ts +43 -0
  118. package/projects/sigesp/src/lib/core/models/SNO/MEscalaEvaluacionDt.model.ts +40 -0
  119. package/projects/sigesp/src/lib/core/models/SNO/MEstructuraOrganizativa.model.ts +136 -0
  120. package/projects/sigesp/src/lib/core/models/SNO/MFamiliares.model.ts +91 -0
  121. package/projects/sigesp/src/lib/core/models/SNO/MFeriados.model.ts +46 -0
  122. package/projects/sigesp/src/lib/core/models/SNO/MFideicomiso.model.ts +423 -0
  123. package/projects/sigesp/src/lib/core/models/SNO/MFormacionAcademica.model.ts +52 -0
  124. package/projects/sigesp/src/lib/core/models/SNO/MGrado.model.ts +50 -0
  125. package/projects/sigesp/src/lib/core/models/SNO/MHojaTiempo.model.ts +128 -0
  126. package/projects/sigesp/src/lib/core/models/SNO/MImpuestoSobreRenta.model.ts +77 -0
  127. package/projects/sigesp/src/lib/core/models/SNO/MMetodoBanco.model.ts +113 -0
  128. package/projects/sigesp/src/lib/core/models/SNO/MNominaSimple.model.ts +86 -0
  129. package/projects/sigesp/src/lib/core/models/SNO/MPeriodoNomina.model.ts +205 -0
  130. package/projects/sigesp/src/lib/core/models/SNO/MPermisos.model.ts +70 -0
  131. package/projects/sigesp/src/lib/core/models/SNO/MPersonal.model.ts +659 -0
  132. package/projects/sigesp/src/lib/core/models/SNO/MPersonalJubilado.model.ts +71 -0
  133. package/projects/sigesp/src/lib/core/models/SNO/MPersonalNomina.model.ts +323 -0
  134. package/projects/sigesp/src/lib/core/models/SNO/MPlanHorario.model.ts +134 -0
  135. package/projects/sigesp/src/lib/core/models/SNO/MPlantillaConstancia.model.ts +33 -0
  136. package/projects/sigesp/src/lib/core/models/SNO/MPrestamo.model.ts +242 -0
  137. package/projects/sigesp/src/lib/core/models/SNO/MPrimaGrados.model.ts +46 -0
  138. package/projects/sigesp/src/lib/core/models/SNO/MPrimasConcepto.model.ts +45 -0
  139. package/projects/sigesp/src/lib/core/models/SNO/MRango.model.ts +45 -0
  140. package/projects/sigesp/src/lib/core/models/SNO/MReportesRRHH.ts +425 -0
  141. package/projects/sigesp/src/lib/core/models/SNO/MRequisitosConcursante.model.ts +48 -0
  142. package/projects/sigesp/src/lib/core/models/SNO/MRequisitosConcursos.model.ts +41 -0
  143. package/projects/sigesp/src/lib/core/models/SNO/MRequisitosMinimos.model.ts +123 -0
  144. package/projects/sigesp/src/lib/core/models/SNO/MSalarioHistorico.model.ts +75 -0
  145. package/projects/sigesp/src/lib/core/models/SNO/MSolicitudEmpleo.model.ts +125 -0
  146. package/projects/sigesp/src/lib/core/models/SNO/MTablaVacaciones.model.ts +61 -0
  147. package/projects/sigesp/src/lib/core/models/SNO/MTablaVacacionesPeriodo.model.ts +45 -0
  148. package/projects/sigesp/src/lib/core/models/SNO/MTabulador.model.ts +108 -0
  149. package/projects/sigesp/src/lib/core/models/SNO/MTipoEvaluacion.model.ts +85 -0
  150. package/projects/sigesp/src/lib/core/models/SNO/MTipoPersonal.model.ts +37 -0
  151. package/projects/sigesp/src/lib/core/models/SNO/MTiposEnfermedad.model.ts +40 -0
  152. package/projects/sigesp/src/lib/core/models/SNO/MTrabajoAnterior.model.ts +70 -0
  153. package/projects/sigesp/src/lib/core/models/SNO/MUbicacionFisica.model.ts +63 -0
  154. package/projects/sigesp/src/lib/core/models/SNO/MVacacionesPersonal.model.ts +119 -0
  155. package/projects/sigesp/src/lib/core/models/SOC/charge.model.ts +81 -0
  156. package/projects/sigesp/src/lib/core/models/SOC/clause.model.ts +39 -0
  157. package/projects/sigesp/src/lib/core/models/SOC/clauseModality.model.ts +43 -0
  158. package/projects/sigesp/src/lib/core/models/SOC/configuracionSOC.model.ts +71 -0
  159. package/projects/sigesp/src/lib/core/models/SOC/service.model.ts +53 -0
  160. package/projects/sigesp/src/lib/core/models/SOC/serviceCharge.model.ts +42 -0
  161. package/projects/sigesp/src/lib/core/models/SOC/serviceType.model.ts +39 -0
  162. package/projects/sigesp/src/lib/core/models/SPG/UnidadAdministradoraCentral.ts +50 -0
  163. package/projects/sigesp/src/lib/core/models/SPG/administrativeUnit.model.ts +185 -0
  164. package/projects/sigesp/src/lib/core/models/SPG/comprobantePresupuestario.model.ts +148 -0
  165. package/projects/sigesp/src/lib/core/models/SPG/configurationSPG.model.ts +140 -0
  166. package/projects/sigesp/src/lib/core/models/SPG/cuentaPresupuesto.model.ts +194 -0
  167. package/projects/sigesp/src/lib/core/models/SPG/estructuraPresupuestaria.model.ts +261 -0
  168. package/projects/sigesp/src/lib/core/models/SPG/expensiveAccount.model.ts +104 -0
  169. package/projects/sigesp/src/lib/core/models/SPG/fuenteFinanciamiento.model.ts +54 -0
  170. package/projects/sigesp/src/lib/core/models/SPG/incomeStructureAccount.model.ts +88 -0
  171. package/projects/sigesp/src/lib/core/models/SPG/organizationType.model.ts +16 -0
  172. package/projects/sigesp/src/lib/core/models/SSS/component.model.ts +51 -0
  173. package/projects/sigesp/src/lib/core/models/SSS/group.model.ts +39 -0
  174. package/projects/sigesp/src/lib/core/models/SSS/log.model.ts +36 -0
  175. package/projects/sigesp/src/lib/core/models/SSS/securityConfiguration.model.ts +26 -0
  176. package/projects/sigesp/src/lib/core/models/SSS/sistema.ts +87 -0
  177. package/projects/sigesp/src/lib/core/models/SSS/user.model.ts +52 -0
  178. package/projects/sigesp/src/lib/core/models/SSS/userDetail.model.ts +84 -0
  179. package/projects/sigesp/src/lib/core/models/SSS/userPermit.model.ts +61 -0
  180. package/projects/sigesp/src/lib/core/models/SSS/userRights.model.ts +113 -0
  181. package/projects/sigesp/src/lib/core/models/STB/MCargosAdicionales.ts +97 -0
  182. package/projects/sigesp/src/lib/core/models/STB/deduction.model.ts +100 -0
  183. package/projects/sigesp/src/lib/core/models/STB/deductionType.model.ts +23 -0
  184. package/projects/sigesp/src/lib/core/models/STB/unidadTributaria.model.ts +25 -0
  185. package/projects/sigesp/src/lib/core/models/basic-model.model.ts +9 -0
  186. package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.html +45 -0
  187. package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.scss +82 -0
  188. package/projects/sigesp/src/lib/shared/components/catalogo/catalogo.component.ts +71 -0
  189. package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.html +57 -0
  190. package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.scss +82 -0
  191. package/projects/sigesp/src/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.ts +80 -0
  192. package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.html +121 -0
  193. package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.scss +81 -0
  194. package/projects/sigesp/src/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.ts +68 -0
  195. package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.html +15 -0
  196. package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.scss +37 -0
  197. package/projects/sigesp/src/lib/shared/components/confirm/confirm.component.ts +32 -0
  198. package/projects/sigesp/src/lib/shared/components/icon/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 +0 -0
  199. package/projects/sigesp/src/lib/shared/components/icon/icon.component.html +6 -0
  200. package/projects/sigesp/src/lib/shared/components/icon/icon.component.scss +22 -0
  201. package/projects/sigesp/src/lib/shared/components/icon/icon.component.ts +19 -0
  202. package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.html +73 -0
  203. package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.scss +86 -0
  204. package/projects/sigesp/src/lib/shared/components/table-select/table-select.component.ts +102 -0
  205. package/projects/sigesp/src/lib/shared/material/customPaginator.ts +22 -0
  206. package/projects/sigesp/src/lib/shared/material/material.module.ts +144 -0
  207. package/projects/sigesp/src/lib/shared/pipes/iso-currency.pipe.ts +44 -0
  208. package/projects/sigesp/src/lib/shared/shared.module.ts +41 -0
  209. package/projects/sigesp/src/lib/sigesp.service.ts +2446 -0
  210. package/projects/sigesp/src/lib/validation.service.ts +172 -0
  211. package/projects/sigesp/src/public-api.ts +488 -0
  212. package/projects/sigesp/src/test.ts +23 -0
  213. package/projects/sigesp/tsconfig.lib.json +27 -0
  214. package/projects/sigesp/tsconfig.lib.prod.json +6 -0
  215. package/projects/sigesp/tsconfig.spec.json +17 -0
  216. package/projects/sigesp/tslint.json +17 -0
  217. package/src/app/app.component.html +11 -0
  218. package/src/app/app.component.scss +0 -0
  219. package/src/app/app.component.ts +110 -0
  220. package/src/app/app.module.ts +22 -0
  221. package/src/assets/.gitkeep +0 -0
  222. package/src/assets/icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 +0 -0
  223. package/src/environments/environment.prod.ts +3 -0
  224. package/src/environments/environment.ts +16 -0
  225. package/src/favicon.ico +0 -0
  226. package/src/index.html +15 -0
  227. package/src/main.ts +13 -0
  228. package/src/polyfills.ts +53 -0
  229. package/src/styles.scss +101 -0
  230. package/src/test.ts +22 -0
  231. package/tsconfig.app.json +18 -0
  232. package/tsconfig.json +36 -0
  233. package/tsconfig.spec.json +18 -0
  234. package/tslint.json +155 -0
  235. package/esm2020/lib/app/app.component.mjs +0 -14
  236. package/esm2020/lib/app/app.module.mjs +0 -34
  237. package/esm2020/lib/core/interfaces/Auditoria.mjs +0 -49
  238. package/esm2020/lib/core/interfaces/Banco.mjs +0 -2
  239. package/esm2020/lib/core/interfaces/Catalogo.mjs +0 -2
  240. package/esm2020/lib/core/interfaces/CentroCosto.mjs +0 -2
  241. package/esm2020/lib/core/interfaces/Clasificacion.mjs +0 -2
  242. package/esm2020/lib/core/interfaces/Cliente.mjs +0 -2
  243. package/esm2020/lib/core/interfaces/ComprobantePresupuestario.mjs +0 -2
  244. package/esm2020/lib/core/interfaces/Comunidad.mjs +0 -2
  245. package/esm2020/lib/core/interfaces/Configuracion.mjs +0 -2
  246. package/esm2020/lib/core/interfaces/ConfiguracionRPC.mjs +0 -2
  247. package/esm2020/lib/core/interfaces/ConfiguracionSCG.mjs +0 -2
  248. package/esm2020/lib/core/interfaces/ConfigurationSPG.mjs +0 -2
  249. package/esm2020/lib/core/interfaces/Constantes.mjs +0 -369
  250. package/esm2020/lib/core/interfaces/CuentaEgresos.mjs +0 -2
  251. package/esm2020/lib/core/interfaces/CuentaIngreso.mjs +0 -2
  252. package/esm2020/lib/core/interfaces/CuentaIngresoEstructura.mjs +0 -2
  253. package/esm2020/lib/core/interfaces/CuentaInstitucional.mjs +0 -2
  254. package/esm2020/lib/core/interfaces/CuentaPresupuesto.mjs +0 -2
  255. package/esm2020/lib/core/interfaces/CuentasPorPagar.mjs +0 -2
  256. package/esm2020/lib/core/interfaces/Documento.mjs +0 -2
  257. package/esm2020/lib/core/interfaces/EntradaSuministro.mjs +0 -2
  258. package/esm2020/lib/core/interfaces/Especialidad.mjs +0 -2
  259. package/esm2020/lib/core/interfaces/EstructuraPresupuestaria.mjs +0 -2
  260. package/esm2020/lib/core/interfaces/FuenteFinanciamiento.mjs +0 -2
  261. package/esm2020/lib/core/interfaces/IBancoCuentasPorPagar.mjs +0 -2
  262. package/esm2020/lib/core/interfaces/ITipoDepositos.mjs +0 -2
  263. package/esm2020/lib/core/interfaces/Integracion.mjs +0 -2
  264. package/esm2020/lib/core/interfaces/Lugares.mjs +0 -2
  265. package/esm2020/lib/core/interfaces/Moneda.mjs +0 -2
  266. package/esm2020/lib/core/interfaces/Nomina.mjs +0 -29
  267. package/esm2020/lib/core/interfaces/PlanUnicoCuenta.mjs +0 -2
  268. package/esm2020/lib/core/interfaces/Presupuesto.mjs +0 -2
  269. package/esm2020/lib/core/interfaces/Proveedor.mjs +0 -2
  270. package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +0 -4
  271. package/esm2020/lib/core/interfaces/Request.mjs +0 -2
  272. package/esm2020/lib/core/interfaces/Response.mjs +0 -2
  273. package/esm2020/lib/core/interfaces/Seguridad.mjs +0 -2
  274. package/esm2020/lib/core/interfaces/Servicios.mjs +0 -2
  275. package/esm2020/lib/core/interfaces/Sistema.mjs +0 -2
  276. package/esm2020/lib/core/interfaces/Tributos.mjs +0 -2
  277. package/esm2020/lib/core/interfaces/UnidadTributaria.mjs +0 -2
  278. package/esm2020/lib/core/interfaces/Usuario.mjs +0 -2
  279. package/esm2020/lib/core/interfaces/UsuarioPrefijo.mjs +0 -2
  280. package/esm2020/lib/core/models/CFG/Empresa.model.mjs +0 -115
  281. package/esm2020/lib/core/models/CFG/Enterprise.model.mjs +0 -70
  282. package/esm2020/lib/core/models/CFG/MPrefijo.model.mjs +0 -67
  283. package/esm2020/lib/core/models/CFG/Procede.model.mjs +0 -31
  284. package/esm2020/lib/core/models/CFG/TasaCambio.model.mjs +0 -40
  285. package/esm2020/lib/core/models/CFG/comunidad.model.mjs +0 -22
  286. package/esm2020/lib/core/models/CFG/locations.model.mjs +0 -170
  287. package/esm2020/lib/core/models/CFG/moneda.model.mjs +0 -72
  288. package/esm2020/lib/core/models/CFG/userPrefix.model.mjs +0 -49
  289. package/esm2020/lib/core/models/CXP/MConceptosCXP.model.mjs +0 -34
  290. package/esm2020/lib/core/models/CXP/MTipoDocumentoCXP.model.mjs +0 -44
  291. package/esm2020/lib/core/models/RPC/clasification.model.mjs +0 -16
  292. package/esm2020/lib/core/models/RPC/configuracionRPC.model.mjs +0 -23
  293. package/esm2020/lib/core/models/RPC/document.model.mjs +0 -16
  294. package/esm2020/lib/core/models/RPC/proveedores.model.mjs +0 -9
  295. package/esm2020/lib/core/models/RPC/providerBeneficiary.model.mjs +0 -285
  296. package/esm2020/lib/core/models/RPC/specialty.model.mjs +0 -12
  297. package/esm2020/lib/core/models/SCB/bank.model.mjs +0 -181
  298. package/esm2020/lib/core/models/SCG/IncomeAccount.mjs +0 -127
  299. package/esm2020/lib/core/models/SCG/accountMarriage.model.mjs +0 -29
  300. package/esm2020/lib/core/models/SCG/centroCosto.model.mjs +0 -75
  301. package/esm2020/lib/core/models/SCG/configuracionSCG.model.mjs +0 -161
  302. package/esm2020/lib/core/models/SCG/cuentaInstitucional.model.mjs +0 -95
  303. package/esm2020/lib/core/models/SCG/planUnicoCuenta.model.mjs +0 -17
  304. package/esm2020/lib/core/models/SFV/MClienteModel.mjs +0 -116
  305. package/esm2020/lib/core/models/SIV/MDetaContable.model.mjs +0 -62
  306. package/esm2020/lib/core/models/SIV/MDetaEntrada.model.mjs +0 -94
  307. package/esm2020/lib/core/models/SIV/MEntradaSuministro.model.mjs +0 -132
  308. package/esm2020/lib/core/models/SIV/MTipoDepositos.model.mjs +0 -103
  309. package/esm2020/lib/core/models/SNO/MAnticipoPrestaciones.model.mjs +0 -100
  310. package/esm2020/lib/core/models/SNO/MArchivoTxtCampo.model.mjs +0 -61
  311. package/esm2020/lib/core/models/SNO/MArchivosTxt.model.mjs +0 -41
  312. package/esm2020/lib/core/models/SNO/MAsignacionCargo.model.mjs +0 -221
  313. package/esm2020/lib/core/models/SNO/MAspectoEvaluacion.model.mjs +0 -90
  314. package/esm2020/lib/core/models/SNO/MAuditoria.model.mjs +0 -61
  315. package/esm2020/lib/core/models/SNO/MBeneficiario.model.mjs +0 -137
  316. package/esm2020/lib/core/models/SNO/MCargaFamiliar.model.mjs +0 -52
  317. package/esm2020/lib/core/models/SNO/MCargaMasiva.model.mjs +0 -34
  318. package/esm2020/lib/core/models/SNO/MCargosPersonal.model.mjs +0 -116
  319. package/esm2020/lib/core/models/SNO/MClasificacionObrero.mdel.mjs +0 -46
  320. package/esm2020/lib/core/models/SNO/MCodigoUnicoRac.model.mjs +0 -39
  321. package/esm2020/lib/core/models/SNO/MComponete.model.mjs +0 -38
  322. package/esm2020/lib/core/models/SNO/MConceptoVacaciones.model.mjs +0 -85
  323. package/esm2020/lib/core/models/SNO/MConceptosNomina.model.mjs +0 -241
  324. package/esm2020/lib/core/models/SNO/MConceptosPersonalNomina.model.mjs +0 -97
  325. package/esm2020/lib/core/models/SNO/MConcursante.model.mjs +0 -317
  326. package/esm2020/lib/core/models/SNO/MConcurso.model.mjs +0 -246
  327. package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +0 -416
  328. package/esm2020/lib/core/models/SNO/MConstanteNomina.model.mjs +0 -70
  329. package/esm2020/lib/core/models/SNO/MConstantePersonalNomina.model.mjs +0 -79
  330. package/esm2020/lib/core/models/SNO/MDedicacion.model.mjs +0 -35
  331. package/esm2020/lib/core/models/SNO/MDefinicionNomina.model.mjs +0 -304
  332. package/esm2020/lib/core/models/SNO/MDefinicionesBasicas.model.mjs +0 -72
  333. package/esm2020/lib/core/models/SNO/MDeudaAnterior.model.mjs +0 -40
  334. package/esm2020/lib/core/models/SNO/MEncargaduria.model.mjs +0 -138
  335. package/esm2020/lib/core/models/SNO/MEscalaEvaluacion.model.mjs +0 -38
  336. package/esm2020/lib/core/models/SNO/MEscalaEvaluacionDt.model.mjs +0 -37
  337. package/esm2020/lib/core/models/SNO/MEstructuraOrganizativa.model.mjs +0 -130
  338. package/esm2020/lib/core/models/SNO/MFamiliares.model.mjs +0 -86
  339. package/esm2020/lib/core/models/SNO/MFeriados.model.mjs +0 -43
  340. package/esm2020/lib/core/models/SNO/MFideicomiso.model.mjs +0 -406
  341. package/esm2020/lib/core/models/SNO/MFormacionAcademica.model.mjs +0 -49
  342. package/esm2020/lib/core/models/SNO/MGrado.model.mjs +0 -44
  343. package/esm2020/lib/core/models/SNO/MHojaTiempo.model.mjs +0 -117
  344. package/esm2020/lib/core/models/SNO/MImpuestoSobreRenta.model.mjs +0 -73
  345. package/esm2020/lib/core/models/SNO/MMetodoBanco.model.mjs +0 -105
  346. package/esm2020/lib/core/models/SNO/MNominaSimple.model.mjs +0 -79
  347. package/esm2020/lib/core/models/SNO/MPeriodoNomina.model.mjs +0 -201
  348. package/esm2020/lib/core/models/SNO/MPermisos.model.mjs +0 -68
  349. package/esm2020/lib/core/models/SNO/MPersonal.model.mjs +0 -638
  350. package/esm2020/lib/core/models/SNO/MPersonalJubilado.model.mjs +0 -64
  351. package/esm2020/lib/core/models/SNO/MPersonalNomina.model.mjs +0 -315
  352. package/esm2020/lib/core/models/SNO/MPlanHorario.model.mjs +0 -117
  353. package/esm2020/lib/core/models/SNO/MPlantillaConstancia.model.mjs +0 -31
  354. package/esm2020/lib/core/models/SNO/MPrestamo.model.mjs +0 -221
  355. package/esm2020/lib/core/models/SNO/MPrimaGrados.model.mjs +0 -43
  356. package/esm2020/lib/core/models/SNO/MPrimasConcepto.model.mjs +0 -43
  357. package/esm2020/lib/core/models/SNO/MRango.model.mjs +0 -43
  358. package/esm2020/lib/core/models/SNO/MReportesRRHH.mjs +0 -402
  359. package/esm2020/lib/core/models/SNO/MRequisitosConcursante.model.mjs +0 -46
  360. package/esm2020/lib/core/models/SNO/MRequisitosConcursos.model.mjs +0 -37
  361. package/esm2020/lib/core/models/SNO/MRequisitosMinimos.model.mjs +0 -113
  362. package/esm2020/lib/core/models/SNO/MSalarioHistorico.model.mjs +0 -70
  363. package/esm2020/lib/core/models/SNO/MSolicitudEmpleo.model.mjs +0 -121
  364. package/esm2020/lib/core/models/SNO/MTablaVacaciones.model.mjs +0 -57
  365. package/esm2020/lib/core/models/SNO/MTablaVacacionesPeriodo.model.mjs +0 -40
  366. package/esm2020/lib/core/models/SNO/MTabulador.model.mjs +0 -96
  367. package/esm2020/lib/core/models/SNO/MTipoEvaluacion.model.mjs +0 -75
  368. package/esm2020/lib/core/models/SNO/MTipoPersonal.model.mjs +0 -34
  369. package/esm2020/lib/core/models/SNO/MTiposEnfermedad.model.mjs +0 -37
  370. package/esm2020/lib/core/models/SNO/MTrabajoAnterior.model.mjs +0 -65
  371. package/esm2020/lib/core/models/SNO/MUbicacionFisica.model.mjs +0 -61
  372. package/esm2020/lib/core/models/SNO/MVacacionesPersonal.model.mjs +0 -115
  373. package/esm2020/lib/core/models/SOC/charge.model.mjs +0 -69
  374. package/esm2020/lib/core/models/SOC/clause.model.mjs +0 -34
  375. package/esm2020/lib/core/models/SOC/clauseModality.model.mjs +0 -38
  376. package/esm2020/lib/core/models/SOC/configuracionSOC.model.mjs +0 -65
  377. package/esm2020/lib/core/models/SOC/service.model.mjs +0 -49
  378. package/esm2020/lib/core/models/SOC/serviceCharge.model.mjs +0 -40
  379. package/esm2020/lib/core/models/SOC/serviceType.model.mjs +0 -34
  380. package/esm2020/lib/core/models/SPG/UnidadAdministradoraCentral.mjs +0 -46
  381. package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +0 -130
  382. package/esm2020/lib/core/models/SPG/comprobantePresupuestario.model.mjs +0 -101
  383. package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +0 -120
  384. package/esm2020/lib/core/models/SPG/cuentaPresupuesto.model.mjs +0 -184
  385. package/esm2020/lib/core/models/SPG/estructuraPresupuestaria.model.mjs +0 -186
  386. package/esm2020/lib/core/models/SPG/expensiveAccount.model.mjs +0 -100
  387. package/esm2020/lib/core/models/SPG/fuenteFinanciamiento.model.mjs +0 -52
  388. package/esm2020/lib/core/models/SPG/incomeStructureAccount.model.mjs +0 -85
  389. package/esm2020/lib/core/models/SPG/organizationType.model.mjs +0 -12
  390. package/esm2020/lib/core/models/SSS/component.model.mjs +0 -44
  391. package/esm2020/lib/core/models/SSS/group.model.mjs +0 -30
  392. package/esm2020/lib/core/models/SSS/log.model.mjs +0 -29
  393. package/esm2020/lib/core/models/SSS/securityConfiguration.model.mjs +0 -20
  394. package/esm2020/lib/core/models/SSS/sistema.mjs +0 -73
  395. package/esm2020/lib/core/models/SSS/user.model.mjs +0 -32
  396. package/esm2020/lib/core/models/SSS/userDetail.model.mjs +0 -79
  397. package/esm2020/lib/core/models/SSS/userPermit.model.mjs +0 -47
  398. package/esm2020/lib/core/models/SSS/userRights.model.mjs +0 -104
  399. package/esm2020/lib/core/models/STB/MCargosAdicionales.mjs +0 -87
  400. package/esm2020/lib/core/models/STB/deduction.model.mjs +0 -90
  401. package/esm2020/lib/core/models/STB/deductionType.model.mjs +0 -20
  402. package/esm2020/lib/core/models/STB/unidadTributaria.model.mjs +0 -14
  403. package/esm2020/lib/core/models/basic-model.model.mjs +0 -8
  404. package/esm2020/lib/shared/components/catalogo/catalogo.component.mjs +0 -76
  405. package/esm2020/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.mjs +0 -87
  406. package/esm2020/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.mjs +0 -74
  407. package/esm2020/lib/shared/components/confirm/confirm.component.mjs +0 -35
  408. package/esm2020/lib/shared/components/icon/icon.component.mjs +0 -22
  409. package/esm2020/lib/shared/components/table-select/table-select.component.mjs +0 -99
  410. package/esm2020/lib/shared/material/customPaginator.mjs +0 -24
  411. package/esm2020/lib/shared/material/material.module.mjs +0 -322
  412. package/esm2020/lib/shared/pipes/iso-currency.pipe.mjs +0 -43
  413. package/esm2020/lib/shared/shared.module.mjs +0 -66
  414. package/esm2020/lib/sigesp.service.mjs +0 -1829
  415. package/esm2020/lib/validation.service.mjs +0 -131
  416. package/esm2020/public-api.mjs +0 -156
  417. package/esm2020/sigesp.mjs +0 -5
  418. package/fesm2015/sigesp.mjs +0 -14888
  419. package/fesm2015/sigesp.mjs.map +0 -1
  420. package/fesm2020/sigesp.mjs +0 -14851
  421. package/fesm2020/sigesp.mjs.map +0 -1
  422. package/index.d.ts +0 -5
  423. package/lib/app/app.component.d.ts +0 -8
  424. package/lib/app/app.module.d.ts +0 -10
  425. package/lib/core/interfaces/Auditoria.d.ts +0 -19
  426. package/lib/core/interfaces/Banco.d.ts +0 -599
  427. package/lib/core/interfaces/Catalogo.d.ts +0 -13
  428. package/lib/core/interfaces/CentroCosto.d.ts +0 -21
  429. package/lib/core/interfaces/Clasificacion.d.ts +0 -6
  430. package/lib/core/interfaces/Cliente.d.ts +0 -36
  431. package/lib/core/interfaces/ComprobantePresupuestario.d.ts +0 -51
  432. package/lib/core/interfaces/Comunidad.d.ts +0 -12
  433. package/lib/core/interfaces/Configuracion.d.ts +0 -91
  434. package/lib/core/interfaces/ConfiguracionRPC.d.ts +0 -10
  435. package/lib/core/interfaces/ConfiguracionSCG.d.ts +0 -52
  436. package/lib/core/interfaces/ConfigurationSPG.d.ts +0 -49
  437. package/lib/core/interfaces/Constantes.d.ts +0 -85
  438. package/lib/core/interfaces/CuentaEgresos.d.ts +0 -158
  439. package/lib/core/interfaces/CuentaIngreso.d.ts +0 -38
  440. package/lib/core/interfaces/CuentaIngresoEstructura.d.ts +0 -26
  441. package/lib/core/interfaces/CuentaInstitucional.d.ts +0 -28
  442. package/lib/core/interfaces/CuentaPresupuesto.d.ts +0 -9
  443. package/lib/core/interfaces/CuentasPorPagar.d.ts +0 -37
  444. package/lib/core/interfaces/Documento.d.ts +0 -6
  445. package/lib/core/interfaces/EntradaSuministro.d.ts +0 -87
  446. package/lib/core/interfaces/Especialidad.d.ts +0 -4
  447. package/lib/core/interfaces/EstructuraPresupuestaria.d.ts +0 -83
  448. package/lib/core/interfaces/FuenteFinanciamiento.d.ts +0 -14
  449. package/lib/core/interfaces/IBancoCuentasPorPagar.d.ts +0 -190
  450. package/lib/core/interfaces/ITipoDepositos.d.ts +0 -31
  451. package/lib/core/interfaces/Integracion.d.ts +0 -6
  452. package/lib/core/interfaces/Lugares.d.ts +0 -40
  453. package/lib/core/interfaces/Moneda.d.ts +0 -20
  454. package/lib/core/interfaces/Nomina.d.ts +0 -554
  455. package/lib/core/interfaces/PlanUnicoCuenta.d.ts +0 -4
  456. package/lib/core/interfaces/Presupuesto.d.ts +0 -128
  457. package/lib/core/interfaces/RecursosHumanos.d.ts +0 -1627
  458. package/lib/core/interfaces/Response.d.ts +0 -7
  459. package/lib/core/interfaces/Seguridad.d.ts +0 -112
  460. package/lib/core/interfaces/Servicios.d.ts +0 -64
  461. package/lib/core/interfaces/Sistema.d.ts +0 -19
  462. package/lib/core/interfaces/Tributos.d.ts +0 -75
  463. package/lib/core/interfaces/UnidadTributaria.d.ts +0 -11
  464. package/lib/core/interfaces/Usuario.d.ts +0 -52
  465. package/lib/core/interfaces/UsuarioPrefijo.d.ts +0 -13
  466. package/lib/core/models/CFG/Empresa.model.d.ts +0 -39
  467. package/lib/core/models/CFG/Enterprise.model.d.ts +0 -24
  468. package/lib/core/models/CFG/MPrefijo.model.d.ts +0 -23
  469. package/lib/core/models/CFG/Procede.model.d.ts +0 -11
  470. package/lib/core/models/CFG/TasaCambio.model.d.ts +0 -14
  471. package/lib/core/models/CFG/comunidad.model.d.ts +0 -15
  472. package/lib/core/models/CFG/locations.model.d.ts +0 -54
  473. package/lib/core/models/CFG/moneda.model.d.ts +0 -26
  474. package/lib/core/models/CFG/userPrefix.model.d.ts +0 -17
  475. package/lib/core/models/CXP/MConceptosCXP.model.d.ts +0 -12
  476. package/lib/core/models/CXP/MTipoDocumentoCXP.model.d.ts +0 -16
  477. package/lib/core/models/RPC/clasification.model.d.ts +0 -11
  478. package/lib/core/models/RPC/configuracionRPC.model.d.ts +0 -12
  479. package/lib/core/models/RPC/document.model.d.ts +0 -11
  480. package/lib/core/models/RPC/proveedores.model.d.ts +0 -8
  481. package/lib/core/models/RPC/providerBeneficiary.model.d.ts +0 -116
  482. package/lib/core/models/RPC/specialty.model.d.ts +0 -9
  483. package/lib/core/models/SCB/bank.model.d.ts +0 -63
  484. package/lib/core/models/SCG/IncomeAccount.d.ts +0 -45
  485. package/lib/core/models/SCG/accountMarriage.model.d.ts +0 -11
  486. package/lib/core/models/SCG/centroCosto.model.d.ts +0 -27
  487. package/lib/core/models/SCG/configuracionSCG.model.d.ts +0 -56
  488. package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +0 -34
  489. package/lib/core/models/SCG/planUnicoCuenta.model.d.ts +0 -8
  490. package/lib/core/models/SFV/MClienteModel.d.ts +0 -40
  491. package/lib/core/models/SIV/MDetaContable.model.d.ts +0 -21
  492. package/lib/core/models/SIV/MDetaEntrada.model.d.ts +0 -33
  493. package/lib/core/models/SIV/MEntradaSuministro.model.d.ts +0 -47
  494. package/lib/core/models/SIV/MTipoDepositos.model.d.ts +0 -35
  495. package/lib/core/models/SNO/MAnticipoPrestaciones.model.d.ts +0 -32
  496. package/lib/core/models/SNO/MArchivoTxtCampo.model.d.ts +0 -21
  497. package/lib/core/models/SNO/MArchivosTxt.model.d.ts +0 -15
  498. package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +0 -87
  499. package/lib/core/models/SNO/MAspectoEvaluacion.model.d.ts +0 -30
  500. package/lib/core/models/SNO/MAuditoria.model.d.ts +0 -21
  501. package/lib/core/models/SNO/MBeneficiario.model.d.ts +0 -48
  502. package/lib/core/models/SNO/MCargaFamiliar.model.d.ts +0 -18
  503. package/lib/core/models/SNO/MCargaMasiva.model.d.ts +0 -12
  504. package/lib/core/models/SNO/MCargosPersonal.model.d.ts +0 -48
  505. package/lib/core/models/SNO/MClasificacionObrero.mdel.d.ts +0 -16
  506. package/lib/core/models/SNO/MCodigoUnicoRac.model.d.ts +0 -14
  507. package/lib/core/models/SNO/MComponete.model.d.ts +0 -14
  508. package/lib/core/models/SNO/MConceptoVacaciones.model.d.ts +0 -30
  509. package/lib/core/models/SNO/MConceptosNomina.model.d.ts +0 -84
  510. package/lib/core/models/SNO/MConceptosPersonalNomina.model.d.ts +0 -34
  511. package/lib/core/models/SNO/MConcursante.model.d.ts +0 -104
  512. package/lib/core/models/SNO/MConcurso.model.d.ts +0 -83
  513. package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +0 -140
  514. package/lib/core/models/SNO/MConstanteNomina.model.d.ts +0 -24
  515. package/lib/core/models/SNO/MConstantePersonalNomina.model.d.ts +0 -27
  516. package/lib/core/models/SNO/MDedicacion.model.d.ts +0 -13
  517. package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +0 -115
  518. package/lib/core/models/SNO/MDefinicionesBasicas.model.d.ts +0 -25
  519. package/lib/core/models/SNO/MDeudaAnterior.model.d.ts +0 -14
  520. package/lib/core/models/SNO/MEncargaduria.model.d.ts +0 -47
  521. package/lib/core/models/SNO/MEscalaEvaluacion.model.d.ts +0 -15
  522. package/lib/core/models/SNO/MEscalaEvaluacionDt.model.d.ts +0 -14
  523. package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +0 -46
  524. package/lib/core/models/SNO/MFamiliares.model.d.ts +0 -31
  525. package/lib/core/models/SNO/MFeriados.model.d.ts +0 -16
  526. package/lib/core/models/SNO/MFideicomiso.model.d.ts +0 -143
  527. package/lib/core/models/SNO/MFormacionAcademica.model.d.ts +0 -18
  528. package/lib/core/models/SNO/MGrado.model.d.ts +0 -18
  529. package/lib/core/models/SNO/MHojaTiempo.model.d.ts +0 -40
  530. package/lib/core/models/SNO/MImpuestoSobreRenta.model.d.ts +0 -25
  531. package/lib/core/models/SNO/MMetodoBanco.model.d.ts +0 -35
  532. package/lib/core/models/SNO/MNominaSimple.model.d.ts +0 -34
  533. package/lib/core/models/SNO/MPeriodoNomina.model.d.ts +0 -57
  534. package/lib/core/models/SNO/MPermisos.model.d.ts +0 -24
  535. package/lib/core/models/SNO/MPersonal.model.d.ts +0 -219
  536. package/lib/core/models/SNO/MPersonalJubilado.model.d.ts +0 -23
  537. package/lib/core/models/SNO/MPersonalNomina.model.d.ts +0 -102
  538. package/lib/core/models/SNO/MPlanHorario.model.d.ts +0 -41
  539. package/lib/core/models/SNO/MPlantillaConstancia.model.d.ts +0 -11
  540. package/lib/core/models/SNO/MPrestamo.model.d.ts +0 -69
  541. package/lib/core/models/SNO/MPrimaGrados.model.d.ts +0 -15
  542. package/lib/core/models/SNO/MPrimasConcepto.model.d.ts +0 -15
  543. package/lib/core/models/SNO/MRango.model.d.ts +0 -15
  544. package/lib/core/models/SNO/MReportesRRHH.d.ts +0 -130
  545. package/lib/core/models/SNO/MRequisitosConcursante.model.d.ts +0 -16
  546. package/lib/core/models/SNO/MRequisitosConcursos.model.d.ts +0 -14
  547. package/lib/core/models/SNO/MRequisitosMinimos.model.d.ts +0 -39
  548. package/lib/core/models/SNO/MSalarioHistorico.model.d.ts +0 -25
  549. package/lib/core/models/SNO/MSolicitudEmpleo.model.d.ts +0 -42
  550. package/lib/core/models/SNO/MTablaVacaciones.model.d.ts +0 -15
  551. package/lib/core/models/SNO/MTablaVacacionesPeriodo.model.d.ts +0 -15
  552. package/lib/core/models/SNO/MTabulador.model.d.ts +0 -39
  553. package/lib/core/models/SNO/MTipoEvaluacion.model.d.ts +0 -28
  554. package/lib/core/models/SNO/MTipoPersonal.model.d.ts +0 -13
  555. package/lib/core/models/SNO/MTiposEnfermedad.model.d.ts +0 -14
  556. package/lib/core/models/SNO/MTrabajoAnterior.model.d.ts +0 -24
  557. package/lib/core/models/SNO/MUbicacionFisica.model.d.ts +0 -21
  558. package/lib/core/models/SNO/MVacacionesPersonal.model.d.ts +0 -40
  559. package/lib/core/models/SOC/charge.model.d.ts +0 -25
  560. package/lib/core/models/SOC/clause.model.d.ts +0 -12
  561. package/lib/core/models/SOC/clauseModality.model.d.ts +0 -14
  562. package/lib/core/models/SOC/configuracionSOC.model.d.ts +0 -21
  563. package/lib/core/models/SOC/service.model.d.ts +0 -17
  564. package/lib/core/models/SOC/serviceCharge.model.d.ts +0 -14
  565. package/lib/core/models/SOC/serviceType.model.d.ts +0 -12
  566. package/lib/core/models/SPG/UnidadAdministradoraCentral.d.ts +0 -16
  567. package/lib/core/models/SPG/administrativeUnit.model.d.ts +0 -64
  568. package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +0 -56
  569. package/lib/core/models/SPG/configurationSPG.model.d.ts +0 -46
  570. package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +0 -65
  571. package/lib/core/models/SPG/estructuraPresupuestaria.model.d.ts +0 -119
  572. package/lib/core/models/SPG/expensiveAccount.model.d.ts +0 -50
  573. package/lib/core/models/SPG/fuenteFinanciamiento.model.d.ts +0 -18
  574. package/lib/core/models/SPG/incomeStructureAccount.model.d.ts +0 -40
  575. package/lib/core/models/SPG/organizationType.model.d.ts +0 -9
  576. package/lib/core/models/SSS/component.model.d.ts +0 -16
  577. package/lib/core/models/SSS/group.model.d.ts +0 -16
  578. package/lib/core/models/SSS/log.model.d.ts +0 -15
  579. package/lib/core/models/SSS/securityConfiguration.model.d.ts +0 -9
  580. package/lib/core/models/SSS/sistema.d.ts +0 -25
  581. package/lib/core/models/SSS/user.model.d.ts +0 -22
  582. package/lib/core/models/SSS/userDetail.model.d.ts +0 -28
  583. package/lib/core/models/SSS/userPermit.model.d.ts +0 -18
  584. package/lib/core/models/SSS/userRights.model.d.ts +0 -35
  585. package/lib/core/models/STB/MCargosAdicionales.d.ts +0 -33
  586. package/lib/core/models/STB/deduction.model.d.ts +0 -30
  587. package/lib/core/models/STB/deductionType.model.d.ts +0 -9
  588. package/lib/core/models/STB/unidadTributaria.model.d.ts +0 -13
  589. package/lib/core/models/basic-model.model.d.ts +0 -6
  590. package/lib/shared/components/catalogo/catalogo.component.d.ts +0 -35
  591. package/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.d.ts +0 -39
  592. package/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.d.ts +0 -38
  593. package/lib/shared/components/confirm/confirm.component.d.ts +0 -21
  594. package/lib/shared/components/icon/icon.component.d.ts +0 -11
  595. package/lib/shared/components/table-select/table-select.component.d.ts +0 -39
  596. package/lib/shared/material/customPaginator.d.ts +0 -9
  597. package/lib/shared/material/material.module.d.ts +0 -48
  598. package/lib/shared/pipes/iso-currency.pipe.d.ts +0 -13
  599. package/lib/shared/shared.module.d.ts +0 -16
  600. package/lib/sigesp.service.d.ts +0 -901
  601. package/lib/validation.service.d.ts +0 -15
  602. package/public-api.d.ts +0 -164
@@ -1,1627 +0,0 @@
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
- }