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
@@ -0,0 +1,83 @@
1
+ import { IUsuariosCentroCosto } from './../../interfaces/CentroCosto';
2
+ import { ICentroCosto } from '../../interfaces/CentroCosto';
3
+ import { MBasicModel } from '../basic-model.model';
4
+
5
+ export class MCentroCosto extends MBasicModel{
6
+ public idEmpresa:number=0;;
7
+ public idEnterprise:number=0;
8
+ public idCentroCosto:number=0;
9
+ public periodoFical:number=0;
10
+ public centro: string;
11
+ public denominacion: string;
12
+ public idUnidadAdministradora:number=0;
13
+ public idDetalle:number=0;
14
+
15
+ constructor(centroCosto?: ICentroCosto) {
16
+ super();
17
+ if(centroCosto){
18
+ this.idEmpresa=+centroCosto.id_empresa;
19
+ this.idEnterprise=+centroCosto.id_enterprise;
20
+ this.idCentroCosto=+centroCosto.id_cencos
21
+ this.centro = centroCosto.codcencos
22
+ this.denominacion = centroCosto.denominacion;
23
+ this.periodoFical= +centroCosto.perfiscal;
24
+ this.idUnidadAdministradora =+centroCosto.id_uniadm;
25
+ this.idDetalle =+centroCosto.id_dt;
26
+
27
+ } else {
28
+ this.isNew=true;
29
+ }
30
+ }
31
+
32
+ public dataInterface():ICentroCosto{
33
+ return {
34
+ id_empresa:this.idEmpresa.toString(),
35
+ id_enterprise:this.idEnterprise.toString(),
36
+ perfiscal:this.periodoFical.toString(),
37
+ id_cencos:this.idCentroCosto.toString(),
38
+ codcencos:this.centro,
39
+ denominacion:this.denominacion,
40
+ id_dt:this.idDetalle.toString(),
41
+ id_uniadm:this.idUnidadAdministradora.toString(),
42
+ }
43
+ }
44
+ }
45
+
46
+
47
+ export class MUsuarioCentroCosto extends MBasicModel{
48
+ public idEmpresa:number=0;
49
+ public idEnterprise:number=0;
50
+ public idCentroCosto:number=0;
51
+ public codigoCentroCosto:string='';
52
+ public codigoUsuario:string='';
53
+ public usuario:string='';
54
+ public idUsuario:number=0;
55
+ public idDtCentro:number=0;
56
+
57
+ constructor(e?: IUsuariosCentroCosto) {
58
+ super();
59
+ if(e){
60
+ this.idEmpresa=+e.id_empresa;
61
+ this.idEnterprise=+e.id_enterprise;
62
+ this.idCentroCosto=+e.id_cencos
63
+ this.codigoCentroCosto = e.codcencos;
64
+ this.codigoUsuario= e.codusu;
65
+ this.usuario=e.nomusu+' '+e.apeusu;
66
+ this.idDtCentro = +e.id_dt_cencos;
67
+ } else {
68
+ this.isNew=true;
69
+ }
70
+ }
71
+
72
+ public dataInterface():IUsuariosCentroCosto{
73
+ return {
74
+ id_empresa:this.idEmpresa.toString(),
75
+ id_enterprise:this.idEnterprise.toString(),
76
+ id_cencos:this.idCentroCosto.toString(),
77
+ codcencos:this.codigoCentroCosto,
78
+ codusu:this.codigoUsuario,
79
+ id_usuario:this.idUsuario.toString(),
80
+ id_dt_cencos:this.idDtCentro.toString(),
81
+ }
82
+ }
83
+ }
@@ -0,0 +1,166 @@
1
+ import { MBasicModel } from '../basic-model.model';
2
+ import { IConfiguracionSCG } from '../../interfaces/ConfiguracionSCG';
3
+
4
+ export class MConfiguracionSCG extends MBasicModel{
5
+ public idEnterprise:number=0;
6
+ public periodoFiscal:number=0;
7
+ public idSCG: number=0;
8
+ public activo: string='';
9
+ public cuentaSituacionDelTesoroFinanciera: string='';
10
+ public CuentaSituacionDelTesoroFiscal: string='';
11
+ public cuentaResultadoActual: string='';
12
+ public cuentaResultadoAnterior: string='';
13
+ public capital: string='';
14
+ public clasificacionCuentasContables: string='0';
15
+ public cuentaConsolidadaResultadoActual: string='';
16
+ public cuentaConsolidadaResultadoAnterior: string='';
17
+ public grupoCuentaDeProvicionesAcumuladaYReservaTecnica: string='';
18
+ public grupoCuentaDeDepresiacionAcumulada: string='';
19
+ public estadoCierreContable: string='0';
20
+ public tipoContabilidadPatrimonialOFiscal: string='1';
21
+ public formatoCuentaContable: string='';
22
+ public gasto: string='';
23
+ public idEmpresa: number=0;
24
+ public ingreso: string='';
25
+ public m01: number=0;
26
+ public m02: number=0;
27
+ public m03: number=0;
28
+ public m04: number=0;
29
+ public m05: number=0;
30
+ public m06: number=0;
31
+ public m07: number=0;
32
+ public m08: number=0;
33
+ public m09: number=0;
34
+ public m10: number=0;
35
+ public m11: number=0;
36
+ public m12: number=0;
37
+ public cuentasOrdenDeudor: string='';
38
+ public cuentasOrdenAcreedor: string='';
39
+ public pasivo: string='';
40
+ public resultado: string='';
41
+ public SCFActivoHacienda: string='';
42
+ public SCFActivoTesoro: string='';
43
+ public SCFGastoFiscal: string='';
44
+ public SCFIngresoFiscal: string='';
45
+ public SCFOrdenDeudorFiscal: string='';
46
+ public SCFOrdenHacienda: string='';
47
+ public SCFPasivoHacienda: string='';
48
+ public SCFPasivoTesoro: string='';
49
+ public SCFResultadoHacienda: string='';
50
+ public SCFResultadoTesoro: string='';
51
+ public costo: number = 0;
52
+ public cuentaResultadoPresupuesto:string='';
53
+ public codigoEnterprise:string='';
54
+ public denominacionEnterprise:string='';
55
+
56
+
57
+ constructor(configuracion?: IConfiguracionSCG) {
58
+ super();
59
+ if(configuracion){
60
+ this.idEnterprise =+configuracion.id_enterprise;
61
+ this.periodoFiscal =+configuracion.perfiscal;
62
+ this.activo = configuracion.activo;
63
+ this.cuentaSituacionDelTesoroFinanciera = configuracion.c_financiera_t;
64
+ this.CuentaSituacionDelTesoroFiscal = configuracion.c_fiscal_t;
65
+ this.cuentaResultadoActual = configuracion.c_resultadoact;
66
+ this.cuentaResultadoAnterior = configuracion.c_resultadoant;
67
+ this.capital = configuracion.capital;
68
+ this.clasificacionCuentasContables = configuracion.clactacon;
69
+ this.cuentaConsolidadaResultadoActual = configuracion.ctaresconact;
70
+ this.cuentaConsolidadaResultadoAnterior = configuracion.ctaresconant;
71
+ this.grupoCuentaDeProvicionesAcumuladaYReservaTecnica = configuracion.cuedepamo;
72
+ this.grupoCuentaDeDepresiacionAcumulada = configuracion.cueproacu;
73
+ this.estadoCierreContable = configuracion.estciescg;
74
+ this.tipoContabilidadPatrimonialOFiscal = configuracion.esttipcon;
75
+ this.formatoCuentaContable = configuracion.formcont;
76
+ this.gasto = configuracion.gasto;
77
+ this.idEmpresa = parseInt(configuracion.id_empresa);
78
+ this.idSCG = parseInt(configuracion.id_scg);
79
+ this.ingreso = configuracion.ingreso;
80
+ this.m01 = parseInt(configuracion.m01);
81
+ this.m02 = parseInt(configuracion.m02);
82
+ this.m03 = parseInt(configuracion.m03);
83
+ this.m04 = parseInt(configuracion.m04);
84
+ this.m05 = parseInt(configuracion.m05);
85
+ this.m06 = parseInt(configuracion.m06);
86
+ this.m07 = parseInt(configuracion.m07);
87
+ this.m08 = parseInt(configuracion.m08);
88
+ this.m09 = parseInt(configuracion.m09);
89
+ this.m10 = parseInt(configuracion.m10);
90
+ this.m11 = parseInt(configuracion.m11);
91
+ this.m12 = parseInt(configuracion.m12);
92
+ this.cuentasOrdenDeudor = configuracion.orden_d;
93
+ this.cuentasOrdenAcreedor = configuracion.orden_h;
94
+ this.pasivo = configuracion.pasivo;
95
+ this.resultado = configuracion.resultado;
96
+ this.SCFActivoHacienda = configuracion.scf_activo_h;
97
+ this.SCFActivoTesoro = configuracion.scf_activo_t;
98
+ this.SCFGastoFiscal = configuracion.scf_gasto_f;
99
+ this.SCFIngresoFiscal = configuracion.scf_ingreso_f;
100
+ this.SCFOrdenDeudorFiscal = configuracion.scf_orden_d;
101
+ this.SCFOrdenHacienda = configuracion.scf_orden_h;
102
+ this.SCFPasivoHacienda = configuracion.scf_pasivo_h;
103
+ this.SCFPasivoTesoro = configuracion.scf_pasivo_t;
104
+ this.SCFResultadoHacienda = configuracion.scf_resultado_h;
105
+ this.SCFResultadoTesoro = configuracion.scf_resultado_t;
106
+ this.costo = parseInt(configuracion.costo);
107
+ this.cuentaResultadoPresupuesto=configuracion.ctaejeprecie;
108
+ this.codigoEnterprise=configuracion.codigo;
109
+ this.denominacionEnterprise=configuracion.titulo;
110
+
111
+ }
112
+ }
113
+
114
+ public dataInterface():IConfiguracionSCG{
115
+ return {
116
+ id_enterprise:this.idEnterprise.toString(),
117
+ perfiscal:this.periodoFiscal.toString(),
118
+ activo: this.activo,
119
+ c_financiera_t:this.cuentaSituacionDelTesoroFinanciera,
120
+ c_fiscal_t:this.CuentaSituacionDelTesoroFiscal,
121
+ c_resultadoact:this.cuentaResultadoActual,
122
+ c_resultadoant:this.cuentaResultadoAnterior,
123
+ capital: this.capital,
124
+ clactacon:this.clasificacionCuentasContables,
125
+ ctaresconact: this.cuentaConsolidadaResultadoActual,
126
+ ctaresconant:this.cuentaConsolidadaResultadoAnterior,
127
+ cuedepamo:this.grupoCuentaDeProvicionesAcumuladaYReservaTecnica,
128
+ cueproacu:this.grupoCuentaDeDepresiacionAcumulada,
129
+ estciescg:this.estadoCierreContable,
130
+ esttipcon: this.tipoContabilidadPatrimonialOFiscal,
131
+ formcont: this.formatoCuentaContable,
132
+ gasto:this.gasto,
133
+ id_empresa: this.idEmpresa.toString(),
134
+ id_scg:this.idSCG.toString(),
135
+ ingreso:this.ingreso,
136
+ m01:this.m01.toString(),
137
+ m02:this.m02.toString(),
138
+ m03:this.m03.toString(),
139
+ m04:this.m04.toString(),
140
+ m05:this.m05.toString(),
141
+ m06:this.m06.toString(),
142
+ m07:this.m07.toString(),
143
+ m08:this.m08.toString(),
144
+ m09:this.m09.toString(),
145
+ m10:this.m10.toString(),
146
+ m11:this.m11.toString(),
147
+ m12:this.m12.toString(),
148
+ orden_d:this.cuentasOrdenDeudor,
149
+ orden_h:this.cuentasOrdenAcreedor,
150
+ pasivo:this.pasivo,
151
+ resultado:this.resultado,
152
+ scf_activo_h:this.SCFActivoHacienda,
153
+ scf_activo_t:this.SCFActivoTesoro,
154
+ scf_gasto_f:this.SCFGastoFiscal,
155
+ scf_ingreso_f:this.SCFIngresoFiscal,
156
+ scf_orden_d:this.SCFOrdenDeudorFiscal,
157
+ scf_orden_h:this.SCFOrdenHacienda,
158
+ scf_pasivo_h:this.SCFPasivoHacienda,
159
+ scf_pasivo_t:this.SCFPasivoTesoro,
160
+ scf_resultado_h:this.SCFResultadoHacienda,
161
+ scf_resultado_t:this.SCFResultadoTesoro,
162
+ costo:this.costo.toString(),
163
+ ctaejeprecie:this.cuentaResultadoPresupuesto,
164
+ }
165
+ }
166
+ }
@@ -0,0 +1,97 @@
1
+ import { ICuentaInstitucional } from '../../interfaces/CuentaInstitucional';
2
+ import { MBasicModel } from '../basic-model.model';
3
+
4
+ export class MCuentaInstitucional extends MBasicModel{
5
+ public idEmpresa: string='0';
6
+ public idEnterprise:number=0;
7
+ public periodoFiscal:number=0;
8
+ public cuenta: string='';
9
+ public cueproacu: string='';
10
+ public denominacion: string='';
11
+ public enero: string='0';
12
+ public febrero: string='0';
13
+ public marzo: string='0';
14
+ public abril: string='0';
15
+ public mayo: string='0';
16
+ public junio: string='0';
17
+ public julio: string='0';
18
+ public agosto: string='0';
19
+ public septiembre: string='0';
20
+ public octubre: string='0';
21
+ public noviembre: string='0';
22
+ public diciembre: string='0';
23
+ public asignado: string='0';
24
+ public distribuir: string='';
25
+ public status: string='0';
26
+ public nivel: string='0';
27
+ public referencia: string='';
28
+ public denominacionCuentaProvisionAcumulada: string='';
29
+ public denominacionCuentaReferencia: string='';
30
+ public denominacionEstatus: string='';
31
+ public isNew:boolean=false;
32
+ public idDtCuenta: number=0;
33
+
34
+ constructor(institucional?: ICuentaInstitucional) {
35
+ super();
36
+ if(institucional){
37
+ this.idEnterprise= +institucional.id_enterprise;
38
+ this.periodoFiscal=+institucional.perfiscal;
39
+ this.cuenta = institucional.sc_cuenta;
40
+ this.cueproacu = institucional.cueproacu;
41
+ this.denominacion = institucional.denominacion;
42
+ this.enero = institucional.enero;
43
+ this.febrero = institucional.febrero;
44
+ this.marzo = institucional.marzo;
45
+ this.abril = institucional.abril;
46
+ this.mayo = institucional.mayo;
47
+ this.junio = institucional.junio;
48
+ this.julio = institucional.julio;
49
+ this.agosto = institucional.agosto;
50
+ this.septiembre = institucional.septiembre;
51
+ this.octubre = institucional.octubre;
52
+ this.noviembre = institucional.noviembre;
53
+ this.diciembre = institucional.diciembre;
54
+ this.asignado = institucional.asignado;
55
+ this.distribuir = institucional.distribuir;
56
+ this.status = institucional.estatus;
57
+ this.idEmpresa = institucional.id_empresa;
58
+ this.nivel = institucional.nivel;
59
+ this.referencia = institucional.referencia;
60
+ this.denominacionCuentaProvisionAcumulada= institucional.dencueproacu;
61
+ this.denominacionCuentaReferencia= institucional.denctareferecia;
62
+ institucional.estatus=='C'? this.denominacionEstatus='Movimiento':this.denominacionEstatus='Totalizadora';
63
+ this.idDtCuenta=+institucional.id_dt_cuenta;
64
+ } else{
65
+ this.isNew=true;
66
+ }
67
+ }
68
+
69
+ public dataInterface():ICuentaInstitucional{
70
+ return {
71
+ id_enterprise:this.idEnterprise.toString(),
72
+ perfiscal:this.periodoFiscal.toString(),
73
+ sc_cuenta: this.cuenta,
74
+ cueproacu: this.cueproacu,
75
+ denominacion: this.denominacion,
76
+ dencueproacu:this.denominacionCuentaProvisionAcumulada,
77
+ enero: this.enero,
78
+ febrero: this.febrero,
79
+ marzo: this.marzo,
80
+ abril: this.abril,
81
+ mayo: this.mayo,
82
+ junio: this.junio,
83
+ julio: this.julio,
84
+ agosto: this.agosto,
85
+ septiembre: this.septiembre,
86
+ octubre: this.octubre,
87
+ noviembre: this.noviembre,
88
+ diciembre: this.diciembre,
89
+ asignado: this.asignado,
90
+ distribuir: this.distribuir,
91
+ estatus: this.status,
92
+ id_empresa: this.idEmpresa,
93
+ nivel: this.nivel,
94
+ id_dt_cuenta:this.idDtCuenta.toString(),
95
+
96
+ }}
97
+ }
@@ -0,0 +1,22 @@
1
+ import { IPlanUnicoCuenta } from '../../interfaces/PlanUnicoCuenta';
2
+ import { MBasicModel } from '../basic-model.model';
3
+
4
+ export class MPlanUnicoCuenta extends MBasicModel {
5
+ public denominacion: string;
6
+ public cuenta: string;
7
+
8
+ constructor(plan?: IPlanUnicoCuenta) {
9
+ super();
10
+ if(plan){
11
+ this.denominacion = plan.denominacion;
12
+ this.cuenta = plan.sc_cuenta;
13
+ }
14
+ }
15
+
16
+ public dataInterface():IPlanUnicoCuenta{
17
+ return{
18
+ denominacion: this.denominacion,
19
+ sc_cuenta: this.cuenta,
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,119 @@
1
+ import { IClient } from "../../interfaces/Cliente";
2
+ import { EstatusCliente } from "../../interfaces/Constantes";
3
+
4
+ export class MClient {
5
+ public idEmpresa : number = 0;
6
+ public idCliente : number = 0;
7
+ public idCategoria : number = 0;
8
+ public idVendedor : number = 0;
9
+ public estatusTipoCliente : number = 0;
10
+ public codigo : string = '';
11
+ public cedulaRifCliente : string = '';
12
+ public nombreCliente : string = '';
13
+ public direccionCliente : string = '';
14
+ public telefonoClientePrincipal : string = '';
15
+ public telefonoClienteSecundario : string = '';
16
+ public fechaRegistroCliente : string = '';
17
+ public emailCliente : string = '';
18
+ public estatusCliente : string = '';
19
+ public cedulaRepresentante : string = '';
20
+ public nombreRepresentante : string = '';
21
+ public emailRepresentante : string = '';
22
+ public comentario : string = '';
23
+ public codigoPais: string = '';
24
+ public codigoEstado : string = '';
25
+ public codigoMunicipio : string = '';
26
+ public codigoParroquia : string = '';
27
+ public codigoPostal : string = '';
28
+ public nompreApellidoContato : string = '';
29
+ public ubicacionContacto : string = '';
30
+ public telelefonoContacto : string = '';
31
+ public emailContacto : string = '';
32
+ public aplicarCuentaPorCobrar :number = 0;
33
+ public descripcionParroquia : string = '';
34
+ public descripcionMunicipio : string = '';
35
+ public descripcionEstado : string = '';
36
+ public descripcionPais : string = '';
37
+ public clienteEspecial : number = 0;
38
+ public limiteCredito :number = 0;
39
+ public denominacionEstataus:string='';
40
+
41
+ constructor (e?:IClient) {
42
+ if (e){
43
+ this.idEmpresa=e.id_empresa;
44
+ this.idCliente=e.id_cliente;
45
+ this.idCategoria=e.id_categoria;
46
+ this.idVendedor=e.id_vendedor;
47
+ this.estatusTipoCliente=e.esttipcli;
48
+ this.codigo=e.codigo
49
+ this.cedulaRifCliente=e.cedrifcli;
50
+ this.nombreCliente=e.nomcli;
51
+ this.direccionCliente=e.dircli;
52
+ this.telefonoClientePrincipal=e.telclipri;
53
+ this.telefonoClienteSecundario=e.telclisec;
54
+ this.fechaRegistroCliente=e.fecregcli;
55
+ this.emailCliente=e.emacli;
56
+ this.estatusCliente=e.estcli;
57
+ this.cedulaRepresentante=e.cedrep;
58
+ this.nombreRepresentante=e.nomrep;
59
+ this.emailRepresentante=e.emarep;
60
+ this.comentario=e.comentario;
61
+ this.codigoPais=e.codpai;
62
+ this.codigoEstado=e.codest;
63
+ this.codigoMunicipio=e.codmun;
64
+ this.codigoParroquia=e.codpar;
65
+ this.codigoPostal=e.codpos;
66
+ this.nompreApellidoContato=e.nomapecon;
67
+ this.ubicacionContacto=e.ubicon;
68
+ this.telelefonoContacto=e.telcon;
69
+ this.emailContacto=e.emacon;
70
+ this.aplicarCuentaPorCobrar=e.aplicarcxc;
71
+ this.descripcionParroquia=e.despar;
72
+ this.descripcionMunicipio=e.desmun;
73
+ this.descripcionEstado=e.desest;
74
+ this.descripcionPais=e.despai;
75
+ this.clienteEspecial=e.cliesp;
76
+ this.limiteCredito=e.limitecredito;
77
+ this.denominacionEstataus=EstatusCliente.find(e=>e.value=this.estatusCliente).denominacion;
78
+ }
79
+ }
80
+
81
+ public dataInterface():IClient{
82
+ return {
83
+ id_empresa: this.idEmpresa,
84
+ id_cliente: this.idCliente,
85
+ id_categoria: this.idCategoria,
86
+ id_vendedor: this.idVendedor,
87
+ codigo: this.codigo,
88
+ cedrifcli: this.cedulaRifCliente,
89
+ nomcli: this.nombreCliente,
90
+ dircli: this.direccionCliente,
91
+ telclipri: this.telefonoClientePrincipal,
92
+ telclisec: this.telefonoClienteSecundario,
93
+ fecregcli: this.fechaRegistroCliente,
94
+ emacli: this.emailCliente,
95
+ estcli: this.estatusCliente,
96
+ cedrep: this.cedulaRepresentante,
97
+ nomrep: this.nombreCliente,
98
+ emarep: this.emailRepresentante,
99
+ comentario: this.comentario,
100
+ codpai: this.codigoPais,
101
+ codest:this.codigoEstado,
102
+ codmun:this.codigoMunicipio,
103
+ codpar:this.codigoParroquia,
104
+ codpos:this.codigoPostal,
105
+ nomapecon:this.nompreApellidoContato,
106
+ ubicon:this.ubicacionContacto,
107
+ telcon:this.telelefonoContacto,
108
+ emacon:this.emailContacto,
109
+ aplicarcxc:this.aplicarCuentaPorCobrar,
110
+ despar: this.descripcionPais,
111
+ desmun: this.descripcionMunicipio,
112
+ desest: this.descripcionEstado,
113
+ despai: this.descripcionPais,
114
+ cliesp: this.clienteEspecial,
115
+ limitecredito: this.limiteCredito,
116
+ esttipcli:this.estatusTipoCliente,
117
+ }
118
+ }
119
+ }
@@ -0,0 +1,65 @@
1
+ import { IDetaContable } from "../../interfaces/EntradaSuministro";
2
+ import { MBasicModel } from '../basic-model.model';
3
+
4
+
5
+ export class MDetaContable extends MBasicModel {
6
+ public idEmpresa: number=0;
7
+ public idArticulo: number=0;
8
+ public codigoArticulo: string='';
9
+ public nombreArticulo: string='';
10
+ // public idComprobante: number=0;
11
+ public fecchaComprobante: string='';
12
+ public cuenta: string='';
13
+ public nombreCuenta: string='';
14
+ public codigoCentroCosto: string='---';
15
+ public debehaber: string='';
16
+ public idProceso: number=0;
17
+ public tipoProceso: string=''; //D, P, T, M, R
18
+ public idAlmacen: number=0;
19
+ public montoDede: number=0;
20
+ public montoHaber: number=0;
21
+ public idDetalle: number=0;
22
+
23
+ constructor (e:IDetaContable=null) {
24
+ super()
25
+ if (e){
26
+ this.idEmpresa=parseInt(e.id_empresa);
27
+ this.idArticulo=parseInt(e.id_articulo);
28
+ this.codigoArticulo=e.cod_art;
29
+ this.nombreArticulo=e.name_art;
30
+ this.fecchaComprobante=e.feccmp;
31
+ this.cuenta=e.sc_cuenta;
32
+ this.nombreCuenta=e.name_cta;
33
+ this.codigoCentroCosto=e.codcencos;
34
+ this.debehaber=e.debhab;
35
+ this.idProceso=parseInt(e.id_proceso);
36
+ this.tipoProceso=e.tipo;
37
+ this.idAlmacen=parseInt(e.id_almacen);
38
+ this.montoDede=parseFloat(e.montod);
39
+ this.montoHaber=parseFloat(e.montoh);
40
+ this.idDetalle=parseInt(e.id_detalle);
41
+ } else {
42
+ this.isNew=true;
43
+ }
44
+ }
45
+
46
+ public dataInterface():IDetaContable{
47
+ return {
48
+ id_empresa: this.idEmpresa.toString(),
49
+ id_articulo: this.idArticulo.toString(),
50
+ cod_art: this.codigoArticulo,
51
+ name_art: this.nombreArticulo,
52
+ feccmp: this.fecchaComprobante,
53
+ sc_cuenta: this.cuenta,
54
+ name_cta: this.nombreCuenta,
55
+ codcencos: this.codigoCentroCosto,
56
+ debhab: this.debehaber,
57
+ id_proceso: this.idProceso.toString(),
58
+ tipo: this.tipoProceso,
59
+ id_almacen: this.idAlmacen.toString(),
60
+ montod: this.montoDede.toString(),
61
+ montoh: this.montoHaber.toString(),
62
+ id_detalle: this.idDetalle.toString(),
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,98 @@
1
+ import { IDetaEntrada } from "../../interfaces/EntradaSuministro";
2
+ import { MBasicModel } from '../basic-model.model';
3
+
4
+
5
+ export class MDetaEntrada extends MBasicModel {
6
+ public idEmpresa: number=0;
7
+ public idArticulo: number=0;
8
+ public codigoArticulo: string='';
9
+ public nombreArticulo: string='';
10
+ public cuentaContable: string='';
11
+ public nameCtaContable: string='';
12
+ public idEntrega: number=0;
13
+ public modalidad: string='';
14
+ public idUnidadMedida: number=0;
15
+ public nombreUniMedida: string='';
16
+ public unidetal: string='';
17
+ public cantOrigen: number=0; //canoriart
18
+ public cantRecibida: number=0; //canrecart
19
+ public pendiente: number=0; //canpenart
20
+ public lote: string='';
21
+ public serial: string='';
22
+ public costoUnitario: number=0; //preuniart
23
+ public subTotal: number=0; //monsubart
24
+ public costoTotal: number=0; //montotart
25
+ public idDetalleEntrega: number=0;
26
+ public idUnidadAdministradora: number=0;
27
+ public codigoUniAdm:string ='---'; //coduniadm
28
+ public nameUniAdm:string ='---'; //denuniadm
29
+ public centroCosto:string ='---';
30
+ public nameCentroCosto: string='';//denominacion
31
+ public existencia: number=0;
32
+ public idDetalleExistencia: number=0;
33
+
34
+ constructor (e:IDetaEntrada=null) {
35
+ super()
36
+ if (e){
37
+ this.idEmpresa=parseInt(e.id_empresa);
38
+ this.idArticulo=parseInt(e.id_articulo);
39
+ this.codigoArticulo=e.codigo_articulo;
40
+ this.nombreArticulo= e.nombre_articulo;
41
+ this.cuentaContable=e.sc_cuenta;
42
+ this.nameCtaContable=e.name_cta;
43
+ this.idEntrega=parseInt(e.id_recepcion);
44
+ this.modalidad= e.modalidad;
45
+ this.idUnidadMedida=parseInt(e.id_unimed);
46
+ this.nombreUniMedida= e.nombre_unimed;
47
+ this.unidetal=e.unidetal;
48
+ this.cantOrigen=parseFloat(e.canoriart); //canoriart
49
+ this.cantRecibida=parseFloat(e.canrecart); //canrecart
50
+ this.pendiente=parseFloat(e.canpenart); //canpenart
51
+ this.lote= e.lote;
52
+ this.serial= e.numserial;
53
+ this.costoUnitario=parseFloat(e.preuniart); //preuniart
54
+ this.subTotal=parseFloat(e.monsubart); //monsubart
55
+ this.costoTotal=parseFloat(e.montotart); //montotart
56
+ this.idDetalleEntrega=parseInt(e.id_dt_recepcion);
57
+ this.idUnidadAdministradora= parseInt(e.id_uniadm);
58
+ this.codigoUniAdm=e.coduniadm;
59
+ this.nameUniAdm=e.denuniadm;
60
+ this.centroCosto = e.codcencos;
61
+ this.nameCentroCosto =e.denominacion;
62
+ this.existencia= parseFloat(e.existencia);
63
+ this.idDetalleExistencia = parseInt(e.id_artalm);
64
+ }
65
+ }
66
+
67
+ public dataInterface():IDetaEntrada{
68
+ return {
69
+ id_empresa: this.idEmpresa.toString(),
70
+ id_articulo: this.idArticulo.toString(),
71
+ id_recepcion: this.idEntrega.toString(),
72
+ codigo_articulo: this.codigoArticulo,
73
+ nombre_articulo: this.nombreArticulo,
74
+ sc_cuenta: this.cuentaContable,
75
+ name_cta: this.nameCtaContable,
76
+ modalidad: this.modalidad,
77
+ id_unimed: this.idUnidadMedida.toString(),
78
+ nombre_unimed: this.nombreUniMedida,
79
+ unidetal: this.unidetal,
80
+ canoriart: this.cantOrigen.toString(),
81
+ canrecart: this.cantRecibida.toString(),
82
+ canpenart: this.pendiente.toString(),
83
+ lote: this.lote,
84
+ numserial: this.serial,
85
+ preuniart: this.costoUnitario.toString(),
86
+ monsubart: this.subTotal.toString(),
87
+ montotart: this.costoTotal.toString(),
88
+ id_dt_recepcion: this.idDetalleEntrega.toString(),
89
+ id_uniadm: this.idUnidadAdministradora.toString(),
90
+ coduniadm: this.codigoUniAdm,
91
+ denuniadm: this.nameUniAdm,
92
+ codcencos: this.centroCosto,
93
+ denominacion: this.nameCentroCosto,
94
+ existencia: this.existencia.toString(),
95
+ id_artalm: this.idDetalleExistencia.toString(),
96
+ }
97
+ }
98
+ }