sigesp 0.8.74-20220504 → 0.8.75-20220504

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 (49) hide show
  1. package/bundles/sigesp.umd.js +1692 -99
  2. package/bundles/sigesp.umd.js.map +1 -1
  3. package/bundles/sigesp.umd.min.js +1 -1
  4. package/bundles/sigesp.umd.min.js.map +1 -1
  5. package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
  6. package/esm2015/lib/core/models/SNO/MArchivosTxt.model.js +38 -0
  7. package/esm2015/lib/core/models/SNO/MAspectoEvaluacion.model.js +48 -1
  8. package/esm2015/lib/core/models/SNO/MConcursante.model.js +174 -1
  9. package/esm2015/lib/core/models/SNO/MConcurso.model.js +176 -1
  10. package/esm2015/lib/core/models/SNO/MEstructuraOrganizativa.model.js +58 -1
  11. package/esm2015/lib/core/models/SNO/MFamiliares.model.js +7 -1
  12. package/esm2015/lib/core/models/SNO/MFideicomiso.model.js +1 -1
  13. package/esm2015/lib/core/models/SNO/MHojaTiempo.model.js +45 -1
  14. package/esm2015/lib/core/models/SNO/MImpuestoSobreRenta.model.js +70 -0
  15. package/esm2015/lib/core/models/SNO/MMetodoBanco.model.js +99 -0
  16. package/esm2015/lib/core/models/SNO/MNominaSimple.model.js +21 -6
  17. package/esm2015/lib/core/models/SNO/MPeriodosPlan.model.js +46 -0
  18. package/esm2015/lib/core/models/SNO/MPersonal.model.js +90 -1
  19. package/esm2015/lib/core/models/SNO/MPrestamo.model.js +212 -0
  20. package/esm2015/lib/core/models/SNO/MPrimaGrados.model.js +1 -3
  21. package/esm2015/lib/core/models/SNO/MReportesRRHH.js +402 -0
  22. package/esm2015/lib/core/models/SNO/MRequisitosConcursante.model.js +2 -2
  23. package/esm2015/lib/core/models/SNO/MVacacionesPersonal.model.js +4 -1
  24. package/esm2015/public-api.js +13 -7
  25. package/esm2015/sigesp.js +11 -11
  26. package/fesm2015/sigesp.js +1554 -88
  27. package/fesm2015/sigesp.js.map +1 -1
  28. package/lib/core/interfaces/RecursosHumanos.d.ts +282 -11
  29. package/lib/core/models/SNO/MArchivosTxt.model.d.ts +14 -0
  30. package/lib/core/models/SNO/MAspectoEvaluacion.model.d.ts +16 -1
  31. package/lib/core/models/SNO/MConcursante.model.d.ts +56 -1
  32. package/lib/core/models/SNO/MConcurso.model.d.ts +58 -1
  33. package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +19 -0
  34. package/lib/core/models/SNO/MFamiliares.model.d.ts +1 -0
  35. package/lib/core/models/SNO/MHojaTiempo.model.d.ts +14 -0
  36. package/lib/core/models/SNO/MImpuestoSobreRenta.model.d.ts +24 -0
  37. package/lib/core/models/SNO/MMetodoBanco.model.d.ts +33 -0
  38. package/lib/core/models/SNO/MNominaSimple.model.d.ts +7 -3
  39. package/lib/core/models/SNO/MPeriodosPlan.model.d.ts +16 -0
  40. package/lib/core/models/SNO/MPersonal.model.d.ts +31 -1
  41. package/lib/core/models/SNO/MPrestamo.model.d.ts +66 -0
  42. package/lib/core/models/SNO/MPrimaGrados.model.d.ts +0 -1
  43. package/lib/core/models/SNO/MReportesRRHH.d.ts +130 -0
  44. package/lib/core/models/SNO/MRequisitosConcursante.model.d.ts +1 -1
  45. package/lib/core/models/SNO/MVacacionesPersonal.model.d.ts +1 -0
  46. package/package.json +1 -1
  47. package/public-api.d.ts +13 -7
  48. package/sigesp.d.ts +26 -25
  49. package/sigesp.metadata.json +1 -1
@@ -684,6 +684,9 @@
684
684
  _this.fechaHastaPeriodo = e.fechasper;
685
685
  _this.codigoPeriodo = e.codperi;
686
686
  }
687
+ else {
688
+ _this.isNew = true;
689
+ }
687
690
  return _this;
688
691
  }
689
692
  MHojaTiempo.prototype.dataInterface = function () {
@@ -709,6 +712,50 @@
709
712
  };
710
713
  };
711
714
  return MHojaTiempo;
715
+ }(MBasicModel));
716
+ var MHorario = /** @class */ (function (_super) {
717
+ __extends(MHorario, _super);
718
+ function MHorario(e) {
719
+ var _this = _super.call(this) || this;
720
+ _this.idEmpresa = 0;
721
+ _this.idHora = 0;
722
+ _this.codigoHorario = '';
723
+ _this.denominacionHorario = '';
724
+ _this.tipoHorario = 'F';
725
+ _this.horaInicial = '0';
726
+ _this.horaFinal = '0';
727
+ _this.horasLaborales = '0';
728
+ _this.horaDescanco = '0';
729
+ if (e) {
730
+ _this.idEmpresa = +e.id_empresa;
731
+ _this.idHora = +e.id_hora;
732
+ _this.codigoHorario = e.codhor;
733
+ _this.denominacionHorario = e.denhor;
734
+ _this.tipoHorario = e.tiphor;
735
+ _this.horaInicial = e.horini;
736
+ _this.horaFinal = e.horfin;
737
+ _this.horasLaborales = e.horlab;
738
+ _this.horaDescanco = e.hordes;
739
+ }
740
+ else {
741
+ _this.isNew = true;
742
+ }
743
+ return _this;
744
+ }
745
+ MHorario.prototype.dataInterface = function () {
746
+ return {
747
+ id_empresa: this.idEmpresa,
748
+ id_hora: this.idHora,
749
+ codhor: this.codigoHorario,
750
+ denhor: this.denominacionHorario,
751
+ tiphor: this.tipoHorario,
752
+ horini: this.horaInicial,
753
+ horfin: this.horaFinal,
754
+ horlab: this.horasLaborales,
755
+ hordes: this.horaDescanco,
756
+ };
757
+ };
758
+ return MHorario;
712
759
  }(MBasicModel));
713
760
 
714
761
  var MUsuario = /** @class */ (function () {
@@ -4191,58 +4238,74 @@
4191
4238
  return MCargosNominas;
4192
4239
  }(MBasicModel));
4193
4240
 
4194
- var MNominaSimple$1 = /** @class */ (function () {
4241
+ var MNominaSimple$1 = /** @class */ (function (_super) {
4242
+ __extends(MNominaSimple, _super);
4195
4243
  function MNominaSimple(e) {
4196
4244
  if (e === void 0) { e = null; }
4197
- this.idEmpresa = 0;
4198
- this.idNnomina = 0;
4199
- this.codigoNomina = '';
4200
- this.denominacioNomina = '';
4201
- this.idPeriodoActual = 0;
4202
- this.totalPeriodo = 0;
4203
- this.estatus = '';
4204
- this.estatusPeriodo = 0;
4205
- this.calculada = false;
4206
- this.prenomina = false;
4207
- this.idCargo = 0;
4208
- this.codigoCargo = '';
4209
- this.denominacionCargo = '';
4210
- this.nominaRac = 0;
4211
- this.simbolo = '';
4212
- this.color = '';
4213
- this.periodoActualNomina = '';
4214
- this.descripcionPeriodoNomina = '';
4245
+ var _this = _super.call(this) || this;
4246
+ _this.idEmpresa = 0;
4247
+ _this.idNomina = 0;
4248
+ _this.codigoNomina = '';
4249
+ _this.denominacioNomina = '';
4250
+ _this.idPeriodoActual = 0;
4251
+ _this.totalPeriodo = 0;
4252
+ _this.estatus = '';
4253
+ _this.estatusPeriodo = 0;
4254
+ _this.calculada = false;
4255
+ _this.prenomina = false;
4256
+ _this.idCargo = 0;
4257
+ _this.codigoCargo = '';
4258
+ _this.denominacionCargo = '';
4259
+ _this.nominaRac = 0;
4260
+ _this.simbolo = '';
4261
+ _this.color = '';
4262
+ _this.estatusPersonal = 0;
4263
+ _this.denominacionEstatuspersonal = '';
4264
+ _this.descripcionPeriodoNomina = '';
4265
+ _this.periodoActualNomina = '';
4266
+ _this.editable = false;
4215
4267
  if (e) {
4216
- this.idEmpresa = parseInt(e.id_empresa);
4217
- this.idNnomina = parseInt(e.id_nomina);
4218
- this.codigoNomina = e.codnom;
4219
- this.denominacioNomina = e.dennom;
4220
- this.idPeriodoActual = +e.id_periodoactual;
4221
- this.totalPeriodo = parseFloat(e.totper),
4222
- this.estatusPeriodo = parseInt(e.cerper);
4223
- this.calculada = e.calculado == '1' ? true : false;
4224
- this.prenomina = e.prenomina == '1' ? true : false;
4225
- this.estatus = this.calculada ? 'Calculada' :
4226
- !this.calculada && this.prenomina ? 'Pre-Calculada' : 'Sin Calcular';
4227
- this.idCargo = parseInt(e.id_carper);
4228
- this.codigoCargo = e.codcar;
4229
- this.denominacionCargo = e.descar;
4230
- this.nominaRac = parseInt(e.racnom);
4231
- this.nominaRac == 1 ? this.simbolo = 'check' : this.simbolo = '';
4232
- this.nominaRac == 1 ? this.color = 'primary' : this.color = '';
4233
- this.descripcionPeriodoNomina = e.despernom;
4234
- this.periodoActualNomina = e.peractnom;
4268
+ _this.idEmpresa = parseInt(e.id_empresa);
4269
+ _this.idNomina = parseInt(e.id_nomina);
4270
+ _this.codigoNomina = e.codnom;
4271
+ _this.denominacioNomina = e.dennom;
4272
+ _this.idPeriodoActual = +e.id_periodoactual;
4273
+ _this.totalPeriodo = parseFloat(e.totper),
4274
+ _this.estatusPeriodo = parseInt(e.cerper);
4275
+ _this.calculada = e.calculado == '1' ? true : false;
4276
+ _this.prenomina = e.prenomina == '1' ? true : false;
4277
+ _this.estatus = _this.calculada ? 'Calculada' :
4278
+ !_this.calculada && _this.prenomina ? 'Pre-Calculada' : 'Sin Calcular';
4279
+ _this.editable = (_this.calculada || _this.prenomina) ? false : true;
4280
+ _this.idCargo = parseInt(e.id_carper);
4281
+ _this.codigoCargo = e.codcar;
4282
+ _this.denominacionCargo = e.descar;
4283
+ _this.nominaRac = parseInt(e.racnom);
4284
+ _this.nominaRac == 1 ? _this.simbolo = 'check' : _this.simbolo = '';
4285
+ _this.nominaRac == 1 ? _this.color = 'primary' : _this.color = '';
4286
+ _this.estatusPersonal = parseInt(e.staper);
4287
+ _this.estatusPersonal == 0 ? _this.denominacionEstatuspersonal = "NO ASIGNADO" :
4288
+ _this.estatusPersonal == 1 ? _this.denominacionEstatuspersonal = "ACTIVO" :
4289
+ _this.estatusPersonal == 2 ? _this.denominacionEstatuspersonal = "VACACIONES" :
4290
+ _this.estatusPersonal == 3 ? _this.denominacionEstatuspersonal = "EGRESADO" :
4291
+ _this.denominacionEstatuspersonal = "SUSPENDIDO";
4292
+ _this.descripcionPeriodoNomina = e.despernom;
4293
+ _this.periodoActualNomina = e.peractnom;
4294
+ }
4295
+ else {
4296
+ _this.isNew = true;
4235
4297
  }
4298
+ return _this;
4236
4299
  }
4237
4300
  MNominaSimple.prototype.dataInterface = function () {
4238
4301
  return {
4239
4302
  id_empresa: this.idEmpresa.toString(),
4240
- id_nomina: this.idNnomina.toString(),
4303
+ id_nomina: this.idNomina.toString(),
4241
4304
  id_carper: this.idCargo.toString(),
4242
4305
  };
4243
4306
  };
4244
4307
  return MNominaSimple;
4245
- }());
4308
+ }(MBasicModel));
4246
4309
 
4247
4310
  var MPersonal = /** @class */ (function (_super) {
4248
4311
  __extends(MPersonal, _super);
@@ -4570,6 +4633,102 @@
4570
4633
  };
4571
4634
  };
4572
4635
  return MPersonal;
4636
+ }(MBasicModel));
4637
+ var MCambioEstatusPersonal = /** @class */ (function (_super) {
4638
+ __extends(MCambioEstatusPersonal, _super);
4639
+ function MCambioEstatusPersonal(e) {
4640
+ if (e === void 0) { e = null; }
4641
+ var _this = _super.call(this) || this;
4642
+ _this.idPersonal = 0;
4643
+ _this.codigoPersonal = '';
4644
+ _this.estatusActual = '2';
4645
+ _this.estatusNuevo = '2';
4646
+ _this.fechaEgreso = '';
4647
+ _this.causaEgreso = '';
4648
+ _this.preaviso = '1';
4649
+ _this.idCausales = 0;
4650
+ _this.observacion = '';
4651
+ _this.fechaReingreso = '1900-01-01';
4652
+ if (e) {
4653
+ _this.idPersonal = e.idPersonal;
4654
+ _this.codigoPersonal = e.codigoPersonal;
4655
+ _this.estatusActual = e.estatusActual;
4656
+ _this.estatusNuevo = e.estatusNuevo;
4657
+ _this.fechaEgreso = e.fechaEgreso;
4658
+ _this.causaEgreso = e.causaEgreso;
4659
+ _this.preaviso = e.preaviso;
4660
+ _this.idCausales = e.idCausales;
4661
+ _this.observacion = e.observacion;
4662
+ _this.fechaReingreso = e.fechaReingreso;
4663
+ }
4664
+ return _this;
4665
+ }
4666
+ MCambioEstatusPersonal.prototype.dataInterface = function () {
4667
+ return {
4668
+ idPersonal: this.idPersonal,
4669
+ codigoPersonal: this.codigoPersonal,
4670
+ estatusActual: this.estatusActual,
4671
+ estatusNuevo: this.estatusNuevo,
4672
+ fechaEgreso: this.fechaEgreso,
4673
+ causaEgreso: this.causaEgreso,
4674
+ preaviso: this.preaviso,
4675
+ idCausales: this.idCausales,
4676
+ observacion: this.observacion,
4677
+ fechaReingreso: this.fechaReingreso,
4678
+ };
4679
+ };
4680
+ return MCambioEstatusPersonal;
4681
+ }(MBasicModel));
4682
+ var MPersonalCuentaBanco = /** @class */ (function (_super) {
4683
+ __extends(MPersonalCuentaBanco, _super);
4684
+ function MPersonalCuentaBanco(e) {
4685
+ var _this = _super.call(this) || this;
4686
+ _this.idEmpresa = 0;
4687
+ _this.idPersonal = 0;
4688
+ _this.idCuentaBancoPersonal = -1;
4689
+ _this.codigoCuentaBancoPersonal = '';
4690
+ _this.denominacionCuentaBancoPersonal = '';
4691
+ _this.idBanco = 0;
4692
+ _this.idTipoCuentaBanco = 0;
4693
+ _this.cuentaBancoPersonal = '';
4694
+ _this.estatusCuentaBanco = '1';
4695
+ _this.tipoCuentaPrincipal = '0';
4696
+ _this.codigoBanco = '';
4697
+ _this.cuentaReducida = '';
4698
+ if (e) {
4699
+ _this.idEmpresa = parseInt(e.id_empresa);
4700
+ _this.idPersonal = parseInt(e.id_personal);
4701
+ _this.idCuentaBancoPersonal = parseInt(e.id_ctabanper);
4702
+ _this.codigoCuentaBancoPersonal = e.codctabanper;
4703
+ _this.denominacionCuentaBancoPersonal = e.denctabanper;
4704
+ _this.idBanco = parseInt(e.id_banco);
4705
+ _this.idTipoCuentaBanco = parseInt(e.id_tipocta);
4706
+ _this.cuentaBancoPersonal = e.ctabanper;
4707
+ _this.estatusCuentaBanco = e.estctabco;
4708
+ _this.tipoCuentaPrincipal = e.tipctapri;
4709
+ _this.codigoBanco = _this.cuentaBancoPersonal.substring(0, 4);
4710
+ _this.cuentaReducida = _this.cuentaBancoPersonal.slice(4);
4711
+ }
4712
+ else {
4713
+ _this.isNew = true;
4714
+ }
4715
+ return _this;
4716
+ }
4717
+ MPersonalCuentaBanco.prototype.dataInterface = function () {
4718
+ return {
4719
+ id_empresa: this.idEmpresa.toString(),
4720
+ id_personal: this.idPersonal.toString(),
4721
+ id_ctabanper: this.idCuentaBancoPersonal.toString(),
4722
+ codctabanper: this.codigoCuentaBancoPersonal,
4723
+ denctabanper: this.denominacionCuentaBancoPersonal,
4724
+ id_banco: this.idBanco.toString(),
4725
+ id_tipocta: this.idTipoCuentaBanco.toString(),
4726
+ ctabanper: this.cuentaBancoPersonal,
4727
+ estctabco: this.estatusCuentaBanco,
4728
+ tipctapri: this.tipoCuentaPrincipal,
4729
+ };
4730
+ };
4731
+ return MPersonalCuentaBanco;
4573
4732
  }(MBasicModel));
4574
4733
 
4575
4734
  var MDetaContable = /** @class */ (function (_super) {
@@ -7552,6 +7711,46 @@
7552
7711
  return MArchivoTxtCampo;
7553
7712
  }(MBasicModel));
7554
7713
 
7714
+ var MArchivosTxt = /** @class */ (function (_super) {
7715
+ __extends(MArchivosTxt, _super);
7716
+ function MArchivosTxt(e) {
7717
+ if (e === void 0) { e = null; }
7718
+ var _this = _super.call(this) || this;
7719
+ _this.idEmpresa = 0;
7720
+ _this.idArchivoTxt = 0;
7721
+ _this.codigoArchivo = '';
7722
+ _this.denominacionArchivo = '';
7723
+ _this.tipoArchivo = 'I';
7724
+ _this.acumularMonto = false;
7725
+ _this.campos = [];
7726
+ if (e) {
7727
+ e.acumon == '1' ? _this.acumularMonto = true : _this.acumularMonto = false;
7728
+ _this.idEmpresa = parseInt(e.id_empresa);
7729
+ _this.idArchivoTxt = parseInt(e.id_archivotxt);
7730
+ _this.codigoArchivo = e.codarch;
7731
+ _this.denominacionArchivo = e.denarch;
7732
+ _this.tipoArchivo = e.tiparch;
7733
+ _this.campos = e.campos.map(function (e) { return new MArchivoTxtCampo(e); });
7734
+ }
7735
+ else {
7736
+ _this.isNew = true;
7737
+ }
7738
+ return _this;
7739
+ }
7740
+ MArchivosTxt.prototype.dataInterface = function () {
7741
+ return {
7742
+ id_empresa: this.idEmpresa.toString(),
7743
+ id_archivotxt: this.idArchivoTxt.toString(),
7744
+ codarch: this.codigoArchivo,
7745
+ denarch: this.denominacionArchivo,
7746
+ tiparch: this.tipoArchivo,
7747
+ acumon: this.acumularMonto ? '1' : '0',
7748
+ campos: this.campos.map(function (e) { return e.dataInterface(); }),
7749
+ };
7750
+ };
7751
+ return MArchivosTxt;
7752
+ }(MBasicModel));
7753
+
7555
7754
  var MAspectoEvaluacion = /** @class */ (function (_super) {
7556
7755
  __extends(MAspectoEvaluacion, _super);
7557
7756
  function MAspectoEvaluacion(e) {
@@ -7589,6 +7788,57 @@
7589
7788
  };
7590
7789
  };
7591
7790
  return MAspectoEvaluacion;
7791
+ }(MBasicModel));
7792
+ var MItemsEvalucion = /** @class */ (function (_super) {
7793
+ __extends(MItemsEvalucion, _super);
7794
+ function MItemsEvalucion(e) {
7795
+ if (e === void 0) { e = null; }
7796
+ var _this = _super.call(this) || this;
7797
+ _this.idEmpresa = 0;
7798
+ _this.idTipoEvaluacion = 0;
7799
+ _this.idAspectoEvaluacion = 0;
7800
+ _this.idItems = 0;
7801
+ _this.codigoItems = '';
7802
+ _this.denominacionItems = '';
7803
+ _this.valorMaximo = 0;
7804
+ _this.codigoTipoEvaluacion = '';
7805
+ _this.denominacionTipoEvaluacion = '';
7806
+ _this.codigoAspecto = '';
7807
+ _this.denominacionAspecto = '';
7808
+ if (e) {
7809
+ _this.idEmpresa = parseInt(e.id_empresa);
7810
+ _this.idTipoEvaluacion = parseInt(e.id_tipoeval);
7811
+ _this.idAspectoEvaluacion = parseInt(e.id_aspecto);
7812
+ _this.idItems = parseInt(e.id_item);
7813
+ _this.codigoItems = e.codite;
7814
+ _this.denominacionItems = e.denite;
7815
+ _this.valorMaximo = e.valormax;
7816
+ _this.codigoTipoEvaluacion = e.codtipeval;
7817
+ _this.denominacionTipoEvaluacion = e.dentipeval;
7818
+ _this.codigoAspecto = e.codasp;
7819
+ _this.denominacionAspecto = e.denasp;
7820
+ }
7821
+ else {
7822
+ _this.isNew = true;
7823
+ }
7824
+ return _this;
7825
+ }
7826
+ MItemsEvalucion.prototype.dataInterface = function () {
7827
+ return {
7828
+ id_empresa: this.idEmpresa.toString(),
7829
+ id_tipoeval: this.idTipoEvaluacion.toString(),
7830
+ id_aspecto: this.idAspectoEvaluacion.toString(),
7831
+ id_item: this.idItems.toString(),
7832
+ codite: this.codigoItems,
7833
+ denite: this.denominacionItems,
7834
+ valormax: this.valorMaximo,
7835
+ codasp: this.codigoAspecto,
7836
+ denasp: this.denominacionAspecto,
7837
+ codtipeval: this.codigoTipoEvaluacion,
7838
+ dentipeval: this.denominacionTipoEvaluacion,
7839
+ };
7840
+ };
7841
+ return MItemsEvalucion;
7592
7842
  }(MBasicModel));
7593
7843
 
7594
7844
  var MBeneficiario = /** @class */ (function (_super) {
@@ -8632,67 +8882,256 @@
8632
8882
  };
8633
8883
  };
8634
8884
  return MTrabajosConcursantes;
8635
- }(MBasicModel));
8636
-
8637
- var MRequisitosConcursos = /** @class */ (function (_super) {
8638
- __extends(MRequisitosConcursos, _super);
8639
- function MRequisitosConcursos(e) {
8885
+ }(MBasicModel));
8886
+ var MEstudiosConcursantes = /** @class */ (function (_super) {
8887
+ __extends(MEstudiosConcursantes, _super);
8888
+ function MEstudiosConcursantes(e) {
8889
+ if (e === void 0) { e = null; }
8640
8890
  var _this = _super.call(this) || this;
8641
8891
  _this.idEmpresa = 0;
8642
8892
  _this.idConcurso = 0;
8643
- _this.idRequisito = 0;
8644
- _this.codigoRequisito = '';
8645
- _this.denominacionRequisito = '';
8646
- _this.cantidadRequisito = 0;
8647
- _this.requisitoIndispensable = 0;
8893
+ _this.idConcursante = 0;
8894
+ _this.idEstudio = 0;
8895
+ _this.codigoEstudio = '';
8896
+ _this.institutoEstudio = '';
8897
+ _this.descripcionEstudio = '';
8898
+ _this.fechaInicioEstudio = '';
8899
+ _this.fechaFinEstudio = '';
8900
+ _this.tituloObtenido = 0;
8901
+ _this.yearAprobados = 0;
8902
+ _this.horasEstudiosRealizadas = 0;
8648
8903
  if (e) {
8649
8904
  _this.idEmpresa = parseInt(e.id_empresa);
8650
8905
  _this.idConcurso = parseInt(e.id_concurso);
8651
- _this.idRequisito = parseInt(e.id_reqcon);
8652
- _this.codigoRequisito = e.codreqcon;
8653
- _this.denominacionRequisito = e.denreqcon;
8654
- _this.cantidadRequisito = parseInt(e.cantreq);
8655
- _this.requisitoIndispensable = parseInt(e.reqindcon);
8906
+ _this.idConcursante = parseInt(e.id_concursante);
8907
+ _this.idEstudio = parseInt(e.id_estudiocon);
8908
+ _this.codigoEstudio = e.codestrea;
8909
+ _this.institutoEstudio = e.insestper;
8910
+ _this.descripcionEstudio = e.desestper;
8911
+ _this.fechaInicioEstudio = e.fecinireaest;
8912
+ _this.fechaFinEstudio = e.fecfinestrea;
8913
+ _this.tituloObtenido = parseInt(e.titestper);
8914
+ _this.yearAprobados = parseInt(e.anoaprestper);
8915
+ _this.horasEstudiosRealizadas = parseInt(e.horestrea);
8916
+ }
8917
+ else {
8918
+ _this.isNew = true;
8656
8919
  }
8657
8920
  return _this;
8658
8921
  }
8659
- MRequisitosConcursos.prototype.dataInterface = function () {
8922
+ MEstudiosConcursantes.prototype.dataInterface = function () {
8660
8923
  return {
8661
8924
  id_empresa: this.idEmpresa.toString(),
8662
8925
  id_concurso: this.idConcurso.toString(),
8663
- id_reqcon: this.idRequisito.toString(),
8664
- codreqcon: this.codigoRequisito,
8665
- denreqcon: this.denominacionRequisito,
8666
- cantreq: this.cantidadRequisito.toString(),
8667
- reqindcon: this.requisitoIndispensable.toString()
8926
+ id_concursante: this.idConcursante.toString(),
8927
+ id_estudiocon: this.idEstudio.toString(),
8928
+ codestrea: this.codigoEstudio,
8929
+ insestper: this.institutoEstudio,
8930
+ desestper: this.descripcionEstudio,
8931
+ fecinireaest: this.fechaInicioEstudio,
8932
+ fecfinestrea: this.fechaFinEstudio,
8933
+ titestper: this.tituloObtenido.toString(),
8934
+ anoaprestper: this.yearAprobados.toString(),
8935
+ horestrea: this.horasEstudiosRealizadas.toString(),
8668
8936
  };
8669
8937
  };
8670
- return MRequisitosConcursos;
8671
- }(MBasicModel));
8672
-
8673
- var MConcurso = /** @class */ (function (_super) {
8674
- __extends(MConcurso, _super);
8675
- function MConcurso(e) {
8938
+ return MEstudiosConcursantes;
8939
+ }(MBasicModel));
8940
+ var MExperienciaLaboral = /** @class */ (function (_super) {
8941
+ __extends(MExperienciaLaboral, _super);
8942
+ function MExperienciaLaboral(e) {
8676
8943
  if (e === void 0) { e = null; }
8677
8944
  var _this = _super.call(this) || this;
8678
8945
  _this.idEmpresa = 0;
8679
8946
  _this.idConcurso = 0;
8680
- _this.codigoConcurso = '';
8681
- _this.denominacionConcurso = '';
8682
- _this.fechaAperturaConcurso = '';
8683
- _this.fechaCierreConcurso = '';
8684
- _this.idCargo = 0;
8685
- _this.codigoCargo = '';
8686
- _this.denominacionCargo = '';
8687
- _this.tipo = '';
8688
- _this.cantidadCargos = 0;
8689
- _this.estatusConcurso = '1';
8690
- _this.denominacionEstatus = '';
8691
- _this.detalleRequisitos = [];
8692
- _this.eliminarDetalles = [];
8947
+ _this.idConcursante = 0;
8948
+ _this.idTrabajoConcursante = 0;
8949
+ _this.codigoTrabajo = '';
8950
+ _this.empresa = '';
8951
+ _this.cargo = '';
8952
+ _this.fechaIngreso = '';
8953
+ _this.fechaRetiro = '';
8693
8954
  if (e) {
8694
8955
  _this.idEmpresa = parseInt(e.id_empresa);
8695
- _this.idConcurso = parseInt(e.id_concurso);
8956
+ _this.idConcursante = parseInt(e.id_concurso);
8957
+ _this.idConcursante = parseInt(e.id_concursante);
8958
+ _this.idTrabajoConcursante = parseInt(e.id_trabajocon);
8959
+ _this.codigoTrabajo = e.codtra;
8960
+ _this.empresa = e.emptraper;
8961
+ _this.cargo = e.cartraant;
8962
+ _this.fechaIngreso = e.fecingtraant;
8963
+ _this.fechaRetiro = e.fecrettraant;
8964
+ }
8965
+ else {
8966
+ _this.isNew = true;
8967
+ }
8968
+ return _this;
8969
+ }
8970
+ MExperienciaLaboral.prototype.dataInterface = function () {
8971
+ return {
8972
+ id_empresa: this.idEmpresa.toString(),
8973
+ id_concurso: this.idConcurso.toString(),
8974
+ id_concursante: this.idConcursante.toString(),
8975
+ id_trabajocon: this.idTrabajoConcursante.toString(),
8976
+ codtra: this.codigoTrabajo,
8977
+ emptraper: this.empresa,
8978
+ cartraant: this.cargo,
8979
+ fecingtraant: this.fechaIngreso,
8980
+ fecrettraant: this.fechaRetiro
8981
+ };
8982
+ };
8983
+ return MExperienciaLaboral;
8984
+ }(MBasicModel));
8985
+ var MFamiliaConcursante = /** @class */ (function (_super) {
8986
+ __extends(MFamiliaConcursante, _super);
8987
+ function MFamiliaConcursante(e) {
8988
+ if (e === void 0) { e = null; }
8989
+ var _this = _super.call(this) || this;
8990
+ _this.idEmpresa = 0;
8991
+ _this.idConcurso = 0;
8992
+ _this.idConcursante = 0;
8993
+ _this.idFamiliar = 0;
8994
+ _this.codigo = '';
8995
+ _this.cedula = '';
8996
+ _this.nombre = '';
8997
+ _this.apellido = '';
8998
+ _this.sexo = '';
8999
+ _this.nexo = '';
9000
+ _this.fecha = '';
9001
+ if (e) {
9002
+ _this.idEmpresa = parseInt(e.id_empresa);
9003
+ _this.idConcurso = parseInt(e.id_concurso);
9004
+ _this.idConcursante = parseInt(e.id_concursante);
9005
+ _this.idFamiliar = parseInt(e.id_familiacon);
9006
+ _this.codigo = e.codfam;
9007
+ _this.cedula = e.cedfam;
9008
+ _this.nombre = e.nomfam;
9009
+ _this.apellido = e.apefam;
9010
+ _this.sexo = e.sexfam;
9011
+ _this.nexo = e.nexfam;
9012
+ _this.fecha = e.fecnacfam;
9013
+ }
9014
+ else {
9015
+ _this.isNew = true;
9016
+ }
9017
+ return _this;
9018
+ }
9019
+ MFamiliaConcursante.prototype.dataInterface = function () {
9020
+ return {
9021
+ id_empresa: this.idEmpresa.toString(),
9022
+ id_concurso: this.idConcurso.toString(),
9023
+ id_concursante: this.idConcursante.toString(),
9024
+ id_familiacon: this.idFamiliar.toString(),
9025
+ codfam: this.codigo,
9026
+ cedfam: this.cedula,
9027
+ nomfam: this.nombre,
9028
+ apefam: this.apellido,
9029
+ sexfam: this.sexo,
9030
+ nexfam: this.nexo,
9031
+ fecnacfam: this.fecha,
9032
+ };
9033
+ };
9034
+ return MFamiliaConcursante;
9035
+ }(MBasicModel));
9036
+ var MFormacionInformal = /** @class */ (function (_super) {
9037
+ __extends(MFormacionInformal, _super);
9038
+ function MFormacionInformal(e) {
9039
+ if (e === void 0) { e = null; }
9040
+ var _this = _super.call(this) || this;
9041
+ _this.idEmpresa = 0;
9042
+ _this.idConcurso = 0;
9043
+ _this.idConcursante = 0;
9044
+ _this.idCurso = 0;
9045
+ _this.codigoCurso = '';
9046
+ _this.descripcionCurso = '';
9047
+ _this.horasCurso = 0;
9048
+ if (e) {
9049
+ _this.idEmpresa = parseInt(e.id_empresa);
9050
+ _this.idConcursante = parseInt(e.id_concurso);
9051
+ _this.idConcursante = parseInt(e.id_concursante);
9052
+ _this.idCurso = parseInt(e.id_curso);
9053
+ _this.codigoCurso = e.codcur;
9054
+ _this.descripcionCurso = e.desestrea;
9055
+ _this.horasCurso = parseInt(e.horestrea);
9056
+ }
9057
+ else {
9058
+ _this.isNew = true;
9059
+ }
9060
+ return _this;
9061
+ }
9062
+ MFormacionInformal.prototype.dataInterface = function () {
9063
+ return {
9064
+ id_empresa: this.idEmpresa.toString(),
9065
+ id_concurso: this.idConcurso.toString(),
9066
+ id_concursante: this.idConcurso.toString(),
9067
+ id_curso: this.idCurso.toString(),
9068
+ codcur: this.codigoCurso,
9069
+ desestrea: this.descripcionCurso,
9070
+ horestrea: this.horasCurso.toString()
9071
+ };
9072
+ };
9073
+ return MFormacionInformal;
9074
+ }(MBasicModel));
9075
+
9076
+ var MRequisitosConcursos = /** @class */ (function (_super) {
9077
+ __extends(MRequisitosConcursos, _super);
9078
+ function MRequisitosConcursos(e) {
9079
+ var _this = _super.call(this) || this;
9080
+ _this.idEmpresa = 0;
9081
+ _this.idConcurso = 0;
9082
+ _this.idRequisito = 0;
9083
+ _this.codigoRequisito = '';
9084
+ _this.denominacionRequisito = '';
9085
+ _this.cantidadRequisito = 0;
9086
+ _this.requisitoIndispensable = 0;
9087
+ if (e) {
9088
+ _this.idEmpresa = parseInt(e.id_empresa);
9089
+ _this.idConcurso = parseInt(e.id_concurso);
9090
+ _this.idRequisito = parseInt(e.id_reqcon);
9091
+ _this.codigoRequisito = e.codreqcon;
9092
+ _this.denominacionRequisito = e.denreqcon;
9093
+ _this.cantidadRequisito = parseInt(e.cantreq);
9094
+ _this.requisitoIndispensable = parseInt(e.reqindcon);
9095
+ }
9096
+ return _this;
9097
+ }
9098
+ MRequisitosConcursos.prototype.dataInterface = function () {
9099
+ return {
9100
+ id_empresa: this.idEmpresa.toString(),
9101
+ id_concurso: this.idConcurso.toString(),
9102
+ id_reqcon: this.idRequisito.toString(),
9103
+ codreqcon: this.codigoRequisito,
9104
+ denreqcon: this.denominacionRequisito,
9105
+ cantreq: this.cantidadRequisito.toString(),
9106
+ reqindcon: this.requisitoIndispensable.toString()
9107
+ };
9108
+ };
9109
+ return MRequisitosConcursos;
9110
+ }(MBasicModel));
9111
+
9112
+ var MConcurso = /** @class */ (function (_super) {
9113
+ __extends(MConcurso, _super);
9114
+ function MConcurso(e) {
9115
+ if (e === void 0) { e = null; }
9116
+ var _this = _super.call(this) || this;
9117
+ _this.idEmpresa = 0;
9118
+ _this.idConcurso = 0;
9119
+ _this.codigoConcurso = '';
9120
+ _this.denominacionConcurso = '';
9121
+ _this.fechaAperturaConcurso = '';
9122
+ _this.fechaCierreConcurso = '';
9123
+ _this.idCargo = 0;
9124
+ _this.codigoCargo = '';
9125
+ _this.denominacionCargo = '';
9126
+ _this.tipo = '';
9127
+ _this.cantidadCargos = 0;
9128
+ _this.estatusConcurso = '1';
9129
+ _this.denominacionEstatus = '';
9130
+ _this.detalleRequisitos = [];
9131
+ _this.eliminarDetalles = [];
9132
+ if (e) {
9133
+ _this.idEmpresa = parseInt(e.id_empresa);
9134
+ _this.idConcurso = parseInt(e.id_concurso);
8696
9135
  _this.codigoConcurso = e.codcon;
8697
9136
  _this.denominacionConcurso = e.dencon;
8698
9137
  _this.fechaAperturaConcurso = e.fecapecon;
@@ -8729,6 +9168,192 @@
8729
9168
  };
8730
9169
  };
8731
9170
  return MConcurso;
9171
+ }(MBasicModel));
9172
+ var MPrevioEvaluacion = /** @class */ (function (_super) {
9173
+ __extends(MPrevioEvaluacion, _super);
9174
+ function MPrevioEvaluacion(e) {
9175
+ if (e === void 0) { e = null; }
9176
+ var _this = _super.call(this) || this;
9177
+ _this.idEmpresa = 0;
9178
+ _this.idPrevio = 0;
9179
+ _this.proceso = '';
9180
+ _this.idConcurso = 0;
9181
+ _this.codigoConcurso = '';
9182
+ _this.nombreConcurso = '';
9183
+ _this.idConcursante = 0;
9184
+ _this.codigoConcursante = '';
9185
+ _this.nombreConcursante = '';
9186
+ _this.idTipoEvaluacion = 0;
9187
+ _this.codigoTipoEvaluacion = '';
9188
+ _this.nombreTipoEvaluacion = '';
9189
+ _this.fechaRegistro = '';
9190
+ _this.valorMinimoRequerido = 0;
9191
+ _this.usuarioRegistro = '';
9192
+ _this.horaRegistro = '';
9193
+ _this.estatusRegistro = 0;
9194
+ _this.detallesRegistro = [];
9195
+ if (e) {
9196
+ _this.idEmpresa = parseInt(e.id_empresa);
9197
+ _this.idPrevio = parseInt(e.id_previo);
9198
+ _this.proceso = e.proceso;
9199
+ _this.idConcurso = parseInt(e.id_concurso);
9200
+ _this.codigoConcurso = e.codcon,
9201
+ _this.nombreConcurso = e.dencon,
9202
+ _this.idConcursante = parseInt(e.id_concursante);
9203
+ _this.codigoConcursante = e.cedper,
9204
+ _this.nombreConcursante = e.nomper,
9205
+ _this.idTipoEvaluacion = parseInt(e.id_tipoeval);
9206
+ _this.codigoTipoEvaluacion = e.codtipeval;
9207
+ _this.nombreTipoEvaluacion = e.dentipeval;
9208
+ _this.fechaRegistro = e.fecha;
9209
+ _this.valorMinimoRequerido = parseFloat(e.punreqmin);
9210
+ _this.usuarioRegistro = e.usuario;
9211
+ _this.horaRegistro = e.hora;
9212
+ _this.estatusRegistro = parseInt(e.estatus);
9213
+ _this.tipo = e.tipo;
9214
+ _this.detallesRegistro = e.detalles.map(function (e) { return new MPrevioEvaluacionDt(e); });
9215
+ }
9216
+ else {
9217
+ _this.isNew = true;
9218
+ }
9219
+ return _this;
9220
+ }
9221
+ MPrevioEvaluacion.prototype.dataInterface = function () {
9222
+ return {
9223
+ id_empresa: this.idEmpresa.toString(),
9224
+ id_previo: this.idPrevio.toString(),
9225
+ proceso: this.proceso,
9226
+ id_concurso: this.idConcurso.toString(),
9227
+ codcon: this.codigoConcurso,
9228
+ dencon: this.nombreConcurso,
9229
+ id_concursante: this.idConcursante.toString(),
9230
+ cedper: this.codigoConcursante,
9231
+ nomper: this.nombreConcursante,
9232
+ id_tipoeval: this.idTipoEvaluacion.toString(),
9233
+ codtipeval: this.codigoTipoEvaluacion,
9234
+ dentipeval: this.nombreTipoEvaluacion,
9235
+ fecha: this.fechaRegistro,
9236
+ punreqmin: this.valorMinimoRequerido.toString(),
9237
+ usuario: this.usuarioRegistro,
9238
+ hora: this.horaRegistro,
9239
+ estatus: this.estatusRegistro.toString(),
9240
+ tipo: this.tipo,
9241
+ detalles: this.detallesRegistro.map(function (e) { return e.dataInterface(); })
9242
+ };
9243
+ };
9244
+ return MPrevioEvaluacion;
9245
+ }(MBasicModel));
9246
+ var MPrevioEvaluacionDt = /** @class */ (function (_super) {
9247
+ __extends(MPrevioEvaluacionDt, _super);
9248
+ function MPrevioEvaluacionDt(e) {
9249
+ if (e === void 0) { e = null; }
9250
+ var _this = _super.call(this) || this;
9251
+ _this.idEmpresa = 0;
9252
+ _this.idPrevio = 0;
9253
+ _this.idAspecto = 0;
9254
+ _this.idTipoEvaluacion = 0;
9255
+ _this.idItem = 0;
9256
+ _this.idDtPrevio = 0;
9257
+ _this.codigo = '';
9258
+ _this.descripcion = '';
9259
+ _this.puntos = 0;
9260
+ _this.valorMaximo = 0;
9261
+ if (e) {
9262
+ _this.idEmpresa = parseInt(e.id_empresa);
9263
+ _this.idPrevio = parseInt(e.id_previo);
9264
+ _this.idAspecto = parseInt(e.id_aspecto);
9265
+ _this.idTipoEvaluacion = parseInt(e.id_tipoeval);
9266
+ _this.idItem = parseInt(e.id_item);
9267
+ _this.idDtPrevio = parseInt(e.id_dt_previo);
9268
+ _this.codigo = e.codite;
9269
+ _this.descripcion = e.denite;
9270
+ _this.puntos = parseInt(e.puntos);
9271
+ _this.valorMaximo = parseInt(e.valormax);
9272
+ }
9273
+ else {
9274
+ _this.isNew = true;
9275
+ }
9276
+ return _this;
9277
+ }
9278
+ MPrevioEvaluacionDt.prototype.dataInterface = function () {
9279
+ return {
9280
+ id_empresa: this.idEmpresa.toString(),
9281
+ id_previo: this.idPrevio.toString(),
9282
+ id_tipoeval: this.idTipoEvaluacion.toString(),
9283
+ id_aspecto: this.idAspecto.toString(),
9284
+ id_item: this.idItem.toString(),
9285
+ codite: this.codigo,
9286
+ denite: this.descripcion,
9287
+ puntos: this.puntos.toString(),
9288
+ valormax: this.valorMaximo.toString(),
9289
+ id_dt_previo: this.idDtPrevio.toString(),
9290
+ };
9291
+ };
9292
+ return MPrevioEvaluacionDt;
9293
+ }(MBasicModel));
9294
+ var MResultadosEvaluacion = /** @class */ (function (_super) {
9295
+ __extends(MResultadosEvaluacion, _super);
9296
+ function MResultadosEvaluacion(e) {
9297
+ var _this = _super.call(this) || this;
9298
+ _this.idEmpresa = 0;
9299
+ _this.idEvaluacion = 0;
9300
+ _this.idConcurso = 0;
9301
+ _this.codigoConcurso = '';
9302
+ _this.nombreConcurso = '';
9303
+ _this.idConcursante = 0;
9304
+ _this.codigoConcursante = '';
9305
+ _this.nombreConcursante = '';
9306
+ _this.observacion = '';
9307
+ _this.fechaRegistro = '';
9308
+ _this.resultado_tec = 0;
9309
+ _this.resultado_total = 0;
9310
+ _this.resultado_psi = 0;
9311
+ _this.resultado_rqm = 0;
9312
+ _this.usuarioRegistro = '';
9313
+ if (e) {
9314
+ _this.idEmpresa = parseInt(e.id_empresa);
9315
+ _this.idEvaluacion = parseInt(e.id_evaluacion);
9316
+ _this.idConcurso = parseInt(e.id_concurso);
9317
+ _this.codigoConcurso = e.codcon,
9318
+ _this.nombreConcurso = e.dencon,
9319
+ _this.idConcursante = parseInt(e.id_concursante);
9320
+ _this.codigoConcursante = e.cedper,
9321
+ _this.nombreConcursante = e.nomper,
9322
+ _this.observacion = e.observacion,
9323
+ _this.fechaRegistro = e.fecha;
9324
+ _this.usuarioRegistro = e.usuario;
9325
+ _this.resultado_tec = parseFloat(e.resultado_tec);
9326
+ _this.resultado_total = parseFloat(e.resultado_total);
9327
+ _this.resultado_psi = parseFloat(e.resultado_psi);
9328
+ _this.resultado_rqm = parseFloat(e.resultado_rqm);
9329
+ _this.conclusion = e.conclusion;
9330
+ }
9331
+ else {
9332
+ _this.isNew = true;
9333
+ }
9334
+ return _this;
9335
+ }
9336
+ MResultadosEvaluacion.prototype.dataInterface = function () {
9337
+ return {
9338
+ id_empresa: this.idEmpresa.toString(),
9339
+ id_evaluacion: this.idEvaluacion.toString(),
9340
+ id_concurso: this.idConcurso.toString(),
9341
+ codcon: this.codigoConcurso,
9342
+ dencon: this.nombreConcurso,
9343
+ id_concursante: this.idConcursante.toString(),
9344
+ cedper: this.codigoConcursante,
9345
+ nomper: this.nombreConcursante,
9346
+ observacion: this.observacion,
9347
+ fecha: this.fechaRegistro,
9348
+ usuario: this.usuarioRegistro,
9349
+ resultado_tec: this.resultado_tec.toString(),
9350
+ resultado_psi: this.resultado_psi.toString(),
9351
+ resultado_total: this.resultado_total.toString(),
9352
+ resultado_rqm: this.resultado_rqm.toString(),
9353
+ conclusion: this.conclusion,
9354
+ };
9355
+ };
9356
+ return MResultadosEvaluacion;
8732
9357
  }(MBasicModel));
8733
9358
 
8734
9359
  var MTipoPersonal = /** @class */ (function (_super) {
@@ -8970,6 +9595,25 @@
8970
9595
  _this.idEp4 = 0;
8971
9596
  _this.idEp5 = 0;
8972
9597
  _this.codigoPadre = '';
9598
+ _this.codigoPais = '000058';
9599
+ _this.nombrePais = 'Venezuela';
9600
+ _this.codigoEstado = '';
9601
+ _this.nombreEstado = '';
9602
+ _this.codigoMunicipio = '';
9603
+ _this.nombreMunicipio = '';
9604
+ _this.codigoParroquia = '';
9605
+ _this.nombreParroquia = '';
9606
+ _this.estatusmpppe = 0;
9607
+ _this.ubicacionBolivariana = 0;
9608
+ _this.ubicacionFrontera = 0;
9609
+ _this.ubicacionIndigena = 0;
9610
+ _this.ubicacionInsular = 0;
9611
+ _this.ubicacionMarginal = 0;
9612
+ _this.ubicacionNocturno = 0;
9613
+ _this.ubicacionPlanta = 0;
9614
+ _this.ubicacionRobinson = 0;
9615
+ _this.ubicacionZona = 0;
9616
+ _this.ubicacionNoAplica = 0;
8973
9617
  if (e) {
8974
9618
  _this.idEmpresa = parseInt(e.id_empresa);
8975
9619
  _this.idOrganigrama = parseInt(e.id_organigrama);
@@ -8984,6 +9628,25 @@
8984
9628
  _this.idEp4 = parseInt(e.id_ep4);
8985
9629
  _this.idEp5 = parseInt(e.id_ep5);
8986
9630
  _this.codigoPadre = e.codpadre;
9631
+ _this.codigoPais = e.codpai;
9632
+ _this.nombrePais = e.despai;
9633
+ _this.codigoEstado = e.codest;
9634
+ _this.nombreEstado = e.desest;
9635
+ _this.codigoMunicipio = e.codmun;
9636
+ _this.nombreMunicipio = e.desmun;
9637
+ _this.codigoParroquia = e.codpar;
9638
+ _this.nombreParroquia = e.despar;
9639
+ _this.estatusmpppe = e.estmpppe;
9640
+ _this.ubicacionBolivariana = e.ubibolivariana;
9641
+ _this.ubicacionFrontera = e.ubifrontera;
9642
+ _this.ubicacionIndigena = e.ubiindigena;
9643
+ _this.ubicacionInsular = e.ubiinsular;
9644
+ _this.ubicacionMarginal = e.ubimarginal;
9645
+ _this.ubicacionNocturno = e.ubinocturno;
9646
+ _this.ubicacionPlanta = e.ubiplanta;
9647
+ _this.ubicacionRobinson = e.ubirobinson;
9648
+ _this.ubicacionZona = e.ubizona;
9649
+ _this.ubicacionNoAplica = e.ubinoaplica;
8987
9650
  }
8988
9651
  return _this;
8989
9652
  }
@@ -9002,6 +9665,25 @@
9002
9665
  id_ep4: this.idEp4.toString(),
9003
9666
  id_ep5: this.idEp5.toString(),
9004
9667
  codpadre: this.codigoPadre,
9668
+ codpai: this.codigoPais,
9669
+ despai: this.nombrePais,
9670
+ codest: this.codigoEstado,
9671
+ desest: this.nombreEstado,
9672
+ codmun: this.codigoMunicipio,
9673
+ desmun: this.nombreMunicipio,
9674
+ codpar: this.codigoParroquia,
9675
+ despar: this.nombreParroquia,
9676
+ estmpppe: this.estatusmpppe,
9677
+ ubibolivariana: this.ubicacionBolivariana,
9678
+ ubifrontera: this.ubicacionFrontera,
9679
+ ubiindigena: this.ubicacionIndigena,
9680
+ ubiinsular: this.ubicacionInsular,
9681
+ ubimarginal: this.ubicacionMarginal,
9682
+ ubinocturno: this.ubicacionNocturno,
9683
+ ubiplanta: this.ubicacionPlanta,
9684
+ ubirobinson: this.ubicacionRobinson,
9685
+ ubizona: this.ubicacionZona,
9686
+ ubinoaplica: this.ubicacionNoAplica
9005
9687
  };
9006
9688
  };
9007
9689
  return MEstructuraOrganizativa;
@@ -9030,6 +9712,7 @@
9030
9712
  _this.codigoFamiliar = '';
9031
9713
  _this.direccionFamiliar = '';
9032
9714
  _this.telefonoFamiliar = '';
9715
+ _this.hijoDiscapacidad = '0';
9033
9716
  if (e) {
9034
9717
  _this.idEmpresa = parseInt(e.id_empresa);
9035
9718
  _this.idPersonal = parseInt(e.id_personal);
@@ -9050,6 +9733,10 @@
9050
9733
  _this.codigoFamiliar = e.codfam;
9051
9734
  _this.direccionFamiliar = e.dirfam;
9052
9735
  _this.telefonoFamiliar = e.telfam;
9736
+ _this.hijoDiscapacidad = e.hijodiscapacitado;
9737
+ }
9738
+ else {
9739
+ _this.isNew = true;
9053
9740
  }
9054
9741
  return _this;
9055
9742
  }
@@ -9074,6 +9761,7 @@
9074
9761
  codfam: this.codigoFamiliar,
9075
9762
  dirfam: this.direccionFamiliar,
9076
9763
  telfam: this.telefonoFamiliar,
9764
+ hijodiscapacitado: this.hijoDiscapacidad,
9077
9765
  };
9078
9766
  };
9079
9767
  return MFamiliares;
@@ -9597,7 +10285,6 @@
9597
10285
  _this.descripcionPrima = '';
9598
10286
  _this.montoPrima = 0;
9599
10287
  _this.IdDetallePrima = 0;
9600
- _this.isNew = true;
9601
10288
  if (e) {
9602
10289
  _this.idEmpresa = parseInt(e.id_empresa);
9603
10290
  _this.idTabulador = parseInt(e.id_tabulador);
@@ -9607,7 +10294,6 @@
9607
10294
  _this.descripcionPrima = e.despri;
9608
10295
  _this.montoPrima = parseInt(e.monpri);
9609
10296
  _this.IdDetallePrima = parseInt(e.id_dt_prima);
9610
- _this.isNew = false;
9611
10297
  }
9612
10298
  else {
9613
10299
  _this.isNew = true;
@@ -9718,9 +10404,9 @@
9718
10404
  return MPrimasConcepto;
9719
10405
  }(MBasicModel));
9720
10406
 
9721
- var MRequisitosConcursante = /** @class */ (function (_super) {
9722
- __extends(MRequisitosConcursante, _super);
9723
- function MRequisitosConcursante(e) {
10407
+ var MRequisitosConcursantes = /** @class */ (function (_super) {
10408
+ __extends(MRequisitosConcursantes, _super);
10409
+ function MRequisitosConcursantes(e) {
9724
10410
  if (e === void 0) { e = null; }
9725
10411
  var _this = _super.call(this) || this;
9726
10412
  _this.idEmpresa = 0;
@@ -9748,7 +10434,7 @@
9748
10434
  }
9749
10435
  return _this;
9750
10436
  }
9751
- MRequisitosConcursante.prototype.dataInterface = function () {
10437
+ MRequisitosConcursantes.prototype.dataInterface = function () {
9752
10438
  return {
9753
10439
  id_empresa: this.idEmpresa.toString(),
9754
10440
  id_concurso: this.idConcurso.toString(),
@@ -9761,7 +10447,7 @@
9761
10447
  canentreqcon: this.cantidadEntregado.toString()
9762
10448
  };
9763
10449
  };
9764
- return MRequisitosConcursante;
10450
+ return MRequisitosConcursantes;
9765
10451
  }(MBasicModel));
9766
10452
 
9767
10453
  var MRequisitosMinimos = /** @class */ (function (_super) {
@@ -10523,6 +11209,7 @@
10523
11209
  _this.codigoUsuario = '';
10524
11210
  _this.diaVacacionesCalendario = 0;
10525
11211
  _this.diasHabiles = 0;
11212
+ _this.procesarFueraPeriodo = 0;
10526
11213
  if (e) {
10527
11214
  _this.idEmpresa = parseInt(e.id_empresa);
10528
11215
  _this.idPersonal = parseInt(e.id_personal);
@@ -10556,6 +11243,7 @@
10556
11243
  _this.codigoUsuario = (e.codusu);
10557
11244
  _this.diaVacacionesCalendario = parseInt(e.diavaccal);
10558
11245
  _this.diasHabiles = parseInt(e.diahab);
11246
+ _this.procesarFueraPeriodo = parseInt(e.profueper);
10559
11247
  }
10560
11248
  return _this;
10561
11249
  }
@@ -10593,6 +11281,7 @@
10593
11281
  codusu: this.codigoUsuario,
10594
11282
  diavaccal: this.diaVacacionesCalendario.toString(),
10595
11283
  diahab: this.diasHabiles.toString(),
11284
+ profueper: this.procesarFueraPeriodo.toString(),
10596
11285
  };
10597
11286
  };
10598
11287
  return MVacacionesPersonal;
@@ -10955,6 +11644,887 @@
10955
11644
  return MPlantillasConstancia;
10956
11645
  }(MBasicModel));
10957
11646
 
11647
+ var MImpuestoSobreRenta = /** @class */ (function (_super) {
11648
+ __extends(MImpuestoSobreRenta, _super);
11649
+ function MImpuestoSobreRenta(e) {
11650
+ var _this = _super.call(this) || this;
11651
+ _this.idEmpresa = 0;
11652
+ _this.idPersonal = 0;
11653
+ _this.idImpuestoSobreRenta = 0;
11654
+ _this.porcentajeIsr = 0;
11655
+ _this.idConcepto = 0;
11656
+ _this.enero = 0;
11657
+ _this.febrero = 0;
11658
+ _this.marzo = 0;
11659
+ _this.abril = 0;
11660
+ _this.mayo = 0;
11661
+ _this.junio = 0;
11662
+ _this.julio = 0;
11663
+ _this.agosto = 0;
11664
+ _this.septiembre = 0;
11665
+ _this.octubre = 0;
11666
+ _this.noviembre = 0;
11667
+ _this.diciembre = 0;
11668
+ _this.denominacionConcepto = '';
11669
+ if (e) {
11670
+ _this.idEmpresa = +e.id_empresa;
11671
+ _this.idPersonal = +e.id_personal;
11672
+ _this.idImpuestoSobreRenta = +e.id_isr;
11673
+ _this.porcentajeIsr = +e.porisr;
11674
+ _this.idConcepto = +e.id_conret;
11675
+ _this.enero = +e.enero;
11676
+ _this.febrero = +e.febrero;
11677
+ _this.marzo = +e.marzo;
11678
+ _this.abril = +e.abril;
11679
+ _this.mayo = +e.mayo;
11680
+ _this.junio = +e.junio;
11681
+ _this.julio = +e.julio;
11682
+ _this.agosto = +e.agosto;
11683
+ _this.septiembre = +e.septiembre;
11684
+ _this.octubre = +e.octubre;
11685
+ _this.noviembre = +e.noviembre;
11686
+ _this.diciembre = +e.diciembre;
11687
+ _this.denominacionConcepto = e.desact;
11688
+ }
11689
+ else {
11690
+ _this.isNew = true;
11691
+ }
11692
+ return _this;
11693
+ }
11694
+ MImpuestoSobreRenta.prototype.dataInterface = function () {
11695
+ return {
11696
+ id_empresa: this.idEmpresa,
11697
+ id_personal: this.idPersonal,
11698
+ id_isr: this.idImpuestoSobreRenta,
11699
+ porisr: this.porcentajeIsr,
11700
+ id_conret: this.idConcepto,
11701
+ enero: this.enero,
11702
+ febrero: this.febrero,
11703
+ marzo: this.marzo,
11704
+ abril: this.abril,
11705
+ mayo: this.mayo,
11706
+ junio: this.junio,
11707
+ julio: this.julio,
11708
+ agosto: this.agosto,
11709
+ septiembre: this.septiembre,
11710
+ octubre: this.octubre,
11711
+ noviembre: this.noviembre,
11712
+ diciembre: this.diciembre,
11713
+ desact: this.denominacionConcepto
11714
+ };
11715
+ };
11716
+ return MImpuestoSobreRenta;
11717
+ }(MBasicModel));
11718
+
11719
+ var MMetodoBanco = /** @class */ (function (_super) {
11720
+ __extends(MMetodoBanco, _super);
11721
+ function MMetodoBanco(e) {
11722
+ if (e === void 0) { e = null; }
11723
+ var _this = _super.call(this) || this;
11724
+ _this.idEmpresa = 0;
11725
+ _this.idMetodoBanco = 0;
11726
+ _this.id = 0;
11727
+ _this.codigoMetodo = '';
11728
+ _this.denominacionMetodo = '';
11729
+ _this.tipoMetodo = '';
11730
+ _this.codigoEmpresaNominal = '';
11731
+ _this.tipoCuentaCreditoNominal = '';
11732
+ _this.tipoCuentaDebitoNominal = '';
11733
+ _this.codigoOficinaNomina = '';
11734
+ _this.pagoTaquillaNomina = 0;
11735
+ _this.numeroReferencia = 0;
11736
+ _this.numeroConvenio = '';
11737
+ _this.activo = 0;
11738
+ if (e) {
11739
+ _this.idEmpresa = parseInt(e.id_empresa);
11740
+ _this.idMetodoBanco = parseInt(e.id_metbco);
11741
+ _this.codigoMetodo = e.codmet;
11742
+ _this.denominacionMetodo = e.denmet;
11743
+ _this.tipoMetodo = e.tipmet;
11744
+ _this.id = parseInt(e.id_banco);
11745
+ _this.codigoEmpresaNominal = e.codempnom;
11746
+ _this.tipoCuentaCreditoNominal = e.tipcuecrenom;
11747
+ _this.tipoCuentaDebitoNominal = e.tipcuedebnom;
11748
+ _this.codigoOficinaNomina = e.codofinom;
11749
+ _this.pagoTaquillaNomina = parseInt(e.pagtaqnom);
11750
+ _this.numeroReferencia = parseInt(e.nroref);
11751
+ _this.activo = parseInt(e.activo);
11752
+ _this.numeroConvenio = e.numconnom;
11753
+ }
11754
+ else {
11755
+ _this.isNew = true;
11756
+ }
11757
+ return _this;
11758
+ }
11759
+ MMetodoBanco.prototype.dataInterface = function () {
11760
+ return {
11761
+ id_empresa: this.idEmpresa.toString(),
11762
+ id_metbco: this.idMetodoBanco.toString(),
11763
+ codmet: this.codigoMetodo,
11764
+ denmet: this.denominacionMetodo,
11765
+ tipmet: this.tipoMetodo,
11766
+ id_banco: this.id.toString(),
11767
+ codempnom: this.codigoEmpresaNominal,
11768
+ tipcuecrenom: this.tipoCuentaCreditoNominal,
11769
+ tipcuedebnom: this.tipoCuentaDebitoNominal,
11770
+ codofinom: this.codigoOficinaNomina,
11771
+ pagtaqnom: this.pagoTaquillaNomina.toString(),
11772
+ nroref: this.numeroReferencia.toString(),
11773
+ activo: this.activo.toString(),
11774
+ numconnom: this.numeroConvenio,
11775
+ };
11776
+ };
11777
+ return MMetodoBanco;
11778
+ }(MBasicModel));
11779
+ var MMetodos = /** @class */ (function (_super) {
11780
+ __extends(MMetodos, _super);
11781
+ function MMetodos(e) {
11782
+ if (e === void 0) { e = null; }
11783
+ var _this = _super.call(this) || this;
11784
+ _this.idEmpresa = 0;
11785
+ _this.idMetodo = 0;
11786
+ _this.codigoMetodo = '';
11787
+ _this.denominacionMetodo = '';
11788
+ _this.montoMetodo = 0;
11789
+ _this.metodoCestaTicket = '';
11790
+ _this.codigoProducto = '';
11791
+ _this.montoDescuentoDia = 0;
11792
+ _this.numeroTarjeta = '';
11793
+ if (e) {
11794
+ _this.idEmpresa = parseInt(e.id_empresa);
11795
+ _this.idMetodo = parseInt(e.id_metodo);
11796
+ _this.codigoMetodo = e.codmet;
11797
+ _this.denominacionMetodo = e.denmet;
11798
+ _this.montoMetodo = +e.monmet;
11799
+ _this.metodoCestaTicket = e.metcestic;
11800
+ _this.codigoProducto = e.codprod;
11801
+ _this.montoDescuentoDia = +e.mondesdia;
11802
+ _this.numeroTarjeta = e.nrotarjeta;
11803
+ }
11804
+ else {
11805
+ _this.isNew = true;
11806
+ }
11807
+ return _this;
11808
+ }
11809
+ MMetodos.prototype.dataInterface = function () {
11810
+ return {
11811
+ id_empresa: this.idEmpresa.toString(),
11812
+ id_metodo: this.idMetodo.toString(),
11813
+ codmet: this.codigoMetodo,
11814
+ denmet: this.denominacionMetodo,
11815
+ monmet: this.montoMetodo,
11816
+ metcestic: this.metodoCestaTicket,
11817
+ codprod: this.codigoProducto,
11818
+ mondesdia: this.montoDescuentoDia,
11819
+ nrotarjeta: this.numeroTarjeta,
11820
+ };
11821
+ };
11822
+ return MMetodos;
11823
+ }(MBasicModel));
11824
+
11825
+ var MPeriodosPlan = /** @class */ (function (_super) {
11826
+ __extends(MPeriodosPlan, _super);
11827
+ function MPeriodosPlan(e) {
11828
+ if (e === void 0) { e = null; }
11829
+ var _this = _super.call(this) || this;
11830
+ _this.idEmpresa = 0;
11831
+ _this.idPlanHorario = 0;
11832
+ _this.codigoPeriodoPlan = '';
11833
+ _this.denominacionPeriodoPlan = '';
11834
+ _this.fechaPeriodoPlan = '1900-01-01';
11835
+ _this.idPeriodo = 0;
11836
+ _this.codigoPeriodo = '';
11837
+ _this.idHorario = 0;
11838
+ _this.incidencias = '';
11839
+ _this.idDetalle = 0;
11840
+ if (e) {
11841
+ _this.idEmpresa = +e.id_empresa;
11842
+ _this.idPlanHorario = +e.id_planhor;
11843
+ _this.codigoPeriodo = e.codperplan;
11844
+ _this.denominacionPeriodoPlan = e.denperplan;
11845
+ _this.fechaPeriodoPlan = e.fecperplan;
11846
+ _this.idPeriodo = +e.id_periodo;
11847
+ _this.codigoPeriodo = e.codperi;
11848
+ _this.idHorario = +e.id_hora;
11849
+ _this.incidencias = e.incidencias;
11850
+ _this.idDetalle = +e.id_detalle;
11851
+ }
11852
+ else {
11853
+ _this.isNew = true;
11854
+ }
11855
+ return _this;
11856
+ }
11857
+ MPeriodosPlan.prototype.dataInterface = function () {
11858
+ return {
11859
+ id_empresa: this.idEmpresa.toString(),
11860
+ id_planhor: this.idPlanHorario.toString(),
11861
+ codperplan: this.codigoPeriodoPlan,
11862
+ denperplan: this.denominacionPeriodoPlan,
11863
+ fecperplan: this.fechaPeriodoPlan,
11864
+ id_periodo: this.idPeriodo.toString(),
11865
+ codperi: this.codigoPeriodo,
11866
+ id_hora: this.idHorario.toString(),
11867
+ incidencias: this.incidencias,
11868
+ id_detalle: this.idDetalle.toString(),
11869
+ };
11870
+ };
11871
+ return MPeriodosPlan;
11872
+ }(MBasicModel));
11873
+
11874
+ var MPrestamo = /** @class */ (function (_super) {
11875
+ __extends(MPrestamo, _super);
11876
+ function MPrestamo(e) {
11877
+ if (e === void 0) { e = null; }
11878
+ var _this = _super.call(this) || this;
11879
+ _this.idEmpresa = 0;
11880
+ _this.idPersonal = 0;
11881
+ _this.idPrestamo = 0;
11882
+ _this.numeroPrestamo = 0;
11883
+ _this.idTipoPrestamo = 0;
11884
+ _this.idNomina = 0;
11885
+ _this.idConcepto = 0;
11886
+ _this.montoPrestamo = 0;
11887
+ _this.numeroCuotasPrestamo = 0;
11888
+ _this.idPeriodo = 0;
11889
+ _this.motoAmortizacionPrestamo = 0;
11890
+ _this.estatusPrestamo = 1;
11891
+ _this.fechaPrestamo = '1900-01-01';
11892
+ _this.observacionRecalculoPrestamo = '';
11893
+ _this.observacionSuspencionPrestamo = '';
11894
+ _this.tipoCuota = '0';
11895
+ _this.denominacionTipoPrestamo = '';
11896
+ _this.codigoTipoPrestamo = '';
11897
+ _this.denominacionNomina = '';
11898
+ _this.codigoNomina = '';
11899
+ _this.denominacionConcepto = '';
11900
+ _this.codigoConcepto = '';
11901
+ _this.codigoPeriodo = '';
11902
+ _this.fechaFinPeriodo = '1900-01-01';
11903
+ _this.montoCuotaPrestamo = 0;
11904
+ _this.saldoPrestamo = 0;
11905
+ _this.numeroPeriodoNomina = 0;
11906
+ _this.periodos = [];
11907
+ _this.amortizacion = [];
11908
+ if (e) {
11909
+ _this.idEmpresa = +e.id_empresa;
11910
+ _this.idPrestamo = +e.id_prestamo;
11911
+ _this.idPersonal = +e.id_personal;
11912
+ _this.numeroPrestamo = +e.numpre;
11913
+ _this.idTipoPrestamo = +e.id_tipoprestamo;
11914
+ _this.idNomina = +e.id_nomina;
11915
+ _this.idConcepto = +e.id_concepto;
11916
+ _this.montoPrestamo = +e.monpre;
11917
+ _this.numeroCuotasPrestamo = +e.numcuopre;
11918
+ _this.idPeriodo = +e.id_periodo;
11919
+ _this.motoAmortizacionPrestamo = +e.monamopre;
11920
+ _this.estatusPrestamo = +e.estpre;
11921
+ _this.fechaPrestamo = e.fecpre;
11922
+ _this.observacionRecalculoPrestamo = e.obsrecpre;
11923
+ _this.observacionSuspencionPrestamo = e.obssuspre;
11924
+ _this.tipoCuota = e.tipcuopre;
11925
+ _this.denominacionTipoPrestamo = e.destippre;
11926
+ _this.codigoTipoPrestamo = e.codtippre;
11927
+ _this.denominacionNomina = e.dennom;
11928
+ _this.codigoNomina = e.codnom;
11929
+ _this.denominacionConcepto = e.nomcon;
11930
+ _this.codigoConcepto = e.codconc;
11931
+ _this.codigoPeriodo = e.codperi;
11932
+ _this.fechaFinPeriodo = e.fechasper;
11933
+ _this.numeroPeriodoNomina = +e.numpernom;
11934
+ _this.periodos = e.periodos.map(function (e) { return new MPrestamosPeriodo(e); });
11935
+ _this.amortizacion = e.amortizacion.map(function (e) { return new MPrestamoAmortizacion(e); });
11936
+ _this.montoCuotaPrestamo = _this.calcularCuotas();
11937
+ _this.saldoPrestamo = _this.calcularSaldo();
11938
+ }
11939
+ else {
11940
+ _this.isNew = true;
11941
+ }
11942
+ return _this;
11943
+ }
11944
+ MPrestamo.prototype.dataInterface = function () {
11945
+ return {
11946
+ id_empresa: this.idEmpresa,
11947
+ id_personal: this.idPersonal,
11948
+ id_prestamo: this.idPrestamo,
11949
+ numpre: this.numeroPrestamo,
11950
+ id_tipoprestamo: this.idTipoPrestamo,
11951
+ id_nomina: this.idNomina,
11952
+ id_concepto: this.idConcepto,
11953
+ monpre: this.montoPrestamo,
11954
+ numcuopre: this.numeroCuotasPrestamo,
11955
+ id_periodo: this.idPeriodo,
11956
+ monamopre: this.motoAmortizacionPrestamo,
11957
+ estpre: this.estatusPrestamo,
11958
+ fecpre: this.fechaPrestamo,
11959
+ obsrecpre: this.observacionRecalculoPrestamo,
11960
+ obssuspre: this.observacionSuspencionPrestamo,
11961
+ tipcuopre: this.tipoCuota,
11962
+ dennom: this.denominacionNomina,
11963
+ codnom: this.codigoNomina,
11964
+ destippre: this.denominacionTipoPrestamo,
11965
+ codtippre: this.codigoTipoPrestamo,
11966
+ nomcon: this.denominacionConcepto,
11967
+ codconc: this.codigoConcepto,
11968
+ codperi: this.codigoPeriodo,
11969
+ fechasper: this.fechaFinPeriodo,
11970
+ numpernom: this.numeroPeriodoNomina,
11971
+ periodos: this.periodos.map((function (e) { return e.dataInterface(); })),
11972
+ amortizacion: this.amortizacion.map((function (e) { return e.dataInterface(); }))
11973
+ };
11974
+ };
11975
+ MPrestamo.prototype.calcularCuotas = function () {
11976
+ var i = this.periodos.length - 1;
11977
+ if (i > 0) {
11978
+ return this.periodos[i].montoCuota;
11979
+ }
11980
+ return 0;
11981
+ };
11982
+ MPrestamo.prototype.calcularSaldo = function () {
11983
+ var montoPago = 0;
11984
+ this.periodos.forEach(function (element) {
11985
+ if (element.estatusCuota == 1) {
11986
+ montoPago = montoPago + element.montoCuota;
11987
+ }
11988
+ });
11989
+ return this.montoPrestamo - this.motoAmortizacionPrestamo - montoPago;
11990
+ };
11991
+ MPrestamo.prototype.cuotasCanceladas = function () {
11992
+ var cuotas = 0;
11993
+ this.periodos.forEach(function (element) {
11994
+ if (element.estatusCuota == 1) {
11995
+ cuotas = cuotas + 1;
11996
+ }
11997
+ });
11998
+ return cuotas;
11999
+ };
12000
+ return MPrestamo;
12001
+ }(MBasicModel));
12002
+ var MPrestamosPeriodo = /** @class */ (function (_super) {
12003
+ __extends(MPrestamosPeriodo, _super);
12004
+ function MPrestamosPeriodo(e) {
12005
+ var _this = _super.call(this) || this;
12006
+ _this.idEmpresa = 0;
12007
+ _this.idPersonal = 0;
12008
+ _this.idPrestamo = 0;
12009
+ _this.numeroCuota = 0;
12010
+ _this.idPeriodo = 0;
12011
+ _this.fechaInicioPeriodo = '';
12012
+ _this.fechaFinPeriodo = '';
12013
+ _this.montoCuota = 0;
12014
+ _this.estatusCuota = 0;
12015
+ if (e) {
12016
+ _this.idEmpresa = +e.id_empresa;
12017
+ _this.idPersonal = +e.id_personal;
12018
+ _this.idPrestamo = +e.id_prestamo;
12019
+ _this.numeroCuota = +e.numcuo;
12020
+ _this.idPeriodo = +e.id_periodocob;
12021
+ _this.fechaInicioPeriodo = e.feciniper;
12022
+ _this.fechaFinPeriodo = e.fecfinper;
12023
+ _this.montoCuota = +e.moncuo;
12024
+ _this.estatusCuota = +e.estcuo;
12025
+ _this.codigoPeriodo = e.codperipre;
12026
+ _this.denominacionEstatus = _this.denominacion();
12027
+ }
12028
+ else {
12029
+ _this.isNew = true;
12030
+ }
12031
+ return _this;
12032
+ }
12033
+ MPrestamosPeriodo.prototype.dataInterface = function () {
12034
+ return {
12035
+ id_empresa: this.idEmpresa,
12036
+ id_personal: this.idPersonal,
12037
+ id_prestamo: this.idPrestamo,
12038
+ numcuo: this.numeroCuota,
12039
+ id_periodocob: this.idPeriodo,
12040
+ feciniper: this.fechaInicioPeriodo,
12041
+ fecfinper: this.fechaFinPeriodo,
12042
+ moncuo: this.montoCuota,
12043
+ estcuo: this.estatusCuota,
12044
+ codperipre: this.codigoPeriodo
12045
+ };
12046
+ };
12047
+ MPrestamosPeriodo.prototype.denominacion = function () {
12048
+ if (this.estatusCuota == 1) {
12049
+ return 'Cancelado';
12050
+ }
12051
+ else
12052
+ return 'No Cancelado';
12053
+ };
12054
+ return MPrestamosPeriodo;
12055
+ }(MBasicModel));
12056
+ var MPrestamoAmortizacion = /** @class */ (function (_super) {
12057
+ __extends(MPrestamoAmortizacion, _super);
12058
+ function MPrestamoAmortizacion(e) {
12059
+ var _this = _super.call(this) || this;
12060
+ _this.idEmpresa = 0;
12061
+ _this.idPersonal = 0;
12062
+ _this.idPrestamo = 0;
12063
+ _this.numeroAmortizacion = 0;
12064
+ _this.idPeriodoAmortizacion = 0;
12065
+ _this.fecchaAmortizacion = '1900-01-01';
12066
+ _this.montoAmortizacion = 0;
12067
+ _this.descripcionAmortizacion = '';
12068
+ if (e) {
12069
+ _this.idEmpresa = +e.id_empresa;
12070
+ _this.idPersonal = +e.id_personal;
12071
+ _this.idPrestamo = +e.id_prestamo;
12072
+ _this.numeroAmortizacion = +e.numamo;
12073
+ _this.idPeriodoAmortizacion = +e.id_periodoamo;
12074
+ _this.fecchaAmortizacion = e.fecamo;
12075
+ _this.montoAmortizacion = +e.monamo;
12076
+ _this.descripcionAmortizacion = e.desamo;
12077
+ }
12078
+ return _this;
12079
+ }
12080
+ MPrestamoAmortizacion.prototype.dataInterface = function () {
12081
+ return {
12082
+ id_empresa: this.idEmpresa,
12083
+ id_personal: this.idPersonal,
12084
+ id_prestamo: this.idPrestamo,
12085
+ numamo: this.numeroAmortizacion,
12086
+ id_periodoamo: this.idPeriodoAmortizacion,
12087
+ fecamo: this.fecchaAmortizacion,
12088
+ monamo: this.montoAmortizacion,
12089
+ desamo: this.descripcionAmortizacion,
12090
+ };
12091
+ };
12092
+ return MPrestamoAmortizacion;
12093
+ }(MBasicModel));
12094
+
12095
+ var MRConsolidadoConceptos = /** @class */ (function (_super) {
12096
+ __extends(MRConsolidadoConceptos, _super);
12097
+ function MRConsolidadoConceptos(e) {
12098
+ if (e === void 0) { e = null; }
12099
+ var _this = _super.call(this) || this;
12100
+ _this.idNominaDes = 0;
12101
+ _this.idNominaHas = 0;
12102
+ _this.codigoNominaDes = "";
12103
+ _this.codigoNominaHas = "";
12104
+ _this.idPersonalDes = 0;
12105
+ _this.idPersonalHas = 0;
12106
+ _this.codigoPersonalDes = "";
12107
+ _this.codigoPersonalHas = "";
12108
+ _this.ordenDesde = 0;
12109
+ _this.ordenHasta = 0;
12110
+ _this.idConceptoDes = 0;
12111
+ _this.idConceptoHas = 0;
12112
+ _this.codigoConceptoDes = "";
12113
+ _this.codigoConceptoHas = "";
12114
+ _this.tipoConcepto = "";
12115
+ _this.idPeriodoDes = 0;
12116
+ _this.idPeriodoHas = 0;
12117
+ _this.codidoPeriodoDes = "";
12118
+ _this.codidoPeriodoHas = "";
12119
+ _this.annocurso = 0;
12120
+ _this.orden = "1";
12121
+ _this.reporte = "";
12122
+ if (e) {
12123
+ _this.idNominaDes = e.id_nominaDes;
12124
+ _this.idNominaHas = e.id_nominaHas;
12125
+ _this.codigoNominaDes = e.codnomDes;
12126
+ _this.codigoNominaHas = e.codnomHas;
12127
+ _this.idPersonalDes = e.id_personalDes;
12128
+ _this.idPersonalHas = e.id_personalHas;
12129
+ _this.codigoPersonalDes = e.codperDes;
12130
+ _this.codigoPersonalHas = e.codperHas;
12131
+ _this.ordenDesde = e.ordenDesde;
12132
+ _this.ordenHasta = e.ordenHasta;
12133
+ _this.idConceptoDes = e.id_conceptoDes;
12134
+ _this.idConceptoHas = e.id_conceptoHas;
12135
+ _this.codigoConceptoDes = e.codconcDes;
12136
+ _this.codigoConceptoHas = e.codconcHas;
12137
+ _this.tipoConcepto = e.tipconc;
12138
+ _this.idPeriodoDes = e.id_periodoDes;
12139
+ _this.idPeriodoHas = e.id_periodoHas;
12140
+ _this.codidoPeriodoDes = e.codperiDes;
12141
+ _this.codidoPeriodoHas = e.codperiHas;
12142
+ _this.annocurso = e.anocur;
12143
+ _this.orden = e.orden;
12144
+ _this.reporte = e.reporte;
12145
+ }
12146
+ else {
12147
+ _this.isNew = true;
12148
+ }
12149
+ return _this;
12150
+ }
12151
+ MRConsolidadoConceptos.prototype.dataInterface = function () {
12152
+ return {
12153
+ id_nominaDes: this.idNominaDes,
12154
+ id_nominaHas: this.idNominaHas,
12155
+ codnomDes: this.codigoNominaDes,
12156
+ codnomHas: this.codigoNominaHas,
12157
+ id_personalDes: this.idPersonalDes,
12158
+ id_personalHas: this.idPersonalHas,
12159
+ codperDes: this.codigoPersonalDes,
12160
+ codperHas: this.codigoPersonalHas,
12161
+ ordenDesde: this.ordenDesde,
12162
+ ordenHasta: this.ordenHasta,
12163
+ id_conceptoDes: this.idConceptoDes,
12164
+ id_conceptoHas: this.idConceptoHas,
12165
+ codconcDes: this.codigoConceptoDes,
12166
+ codconcHas: this.codigoConceptoHas,
12167
+ tipconc: this.tipoConcepto,
12168
+ id_periodoDes: this.idPeriodoDes,
12169
+ id_periodoHas: this.idPeriodoHas,
12170
+ codperiDes: this.codidoPeriodoDes,
12171
+ codperiHas: this.codidoPeriodoHas,
12172
+ anocur: this.annocurso,
12173
+ orden: this.orden,
12174
+ reporte: this.reporte
12175
+ };
12176
+ };
12177
+ return MRConsolidadoConceptos;
12178
+ }(MBasicModel));
12179
+ var MRConstanciaTrabajo = /** @class */ (function (_super) {
12180
+ __extends(MRConstanciaTrabajo, _super);
12181
+ function MRConstanciaTrabajo(e) {
12182
+ if (e === void 0) { e = null; }
12183
+ var _this = _super.call(this) || this;
12184
+ _this.id_constancia = 0;
12185
+ _this.codigoconstancia = '';
12186
+ _this.plantilla_rtf = '';
12187
+ _this.archivo = '';
12188
+ _this.id_nomina = 0;
12189
+ _this.codigonomina = '';
12190
+ _this.id_personalDes = 0;
12191
+ _this.id_personalHas = 0;
12192
+ _this.codigopersonalDes = '';
12193
+ _this.codigopersonalHas = '';
12194
+ _this.orden = '1';
12195
+ if (e) {
12196
+ _this.id_constancia = e.id_constancia;
12197
+ _this.codigoconstancia = e.codconstra;
12198
+ _this.plantilla_rtf = e.plantilla_rtf;
12199
+ _this.archivo = e.archivo;
12200
+ _this.id_nomina = e.id_nomina;
12201
+ _this.codigonomina = e.codnom;
12202
+ _this.id_personalDes = e.id_personalDes;
12203
+ _this.id_personalHas = e.id_personalHas;
12204
+ _this.codigopersonalDes = e.codperDes;
12205
+ _this.codigopersonalHas = e.codperHas;
12206
+ _this.orden = e.orden;
12207
+ }
12208
+ else {
12209
+ _this.isNew = true;
12210
+ }
12211
+ return _this;
12212
+ }
12213
+ MRConstanciaTrabajo.prototype.dataInterface = function () {
12214
+ return {
12215
+ id_constancia: this.id_constancia,
12216
+ codconstra: this.codigoconstancia,
12217
+ plantilla_rtf: this.plantilla_rtf,
12218
+ archivo: this.archivo,
12219
+ id_nomina: this.id_nomina,
12220
+ codnom: this.codigonomina,
12221
+ id_personalDes: this.id_personalDes,
12222
+ id_personalHas: this.id_personalHas,
12223
+ codperDes: this.codigopersonalDes,
12224
+ codperHas: this.codigopersonalHas,
12225
+ orden: this.orden,
12226
+ };
12227
+ };
12228
+ return MRConstanciaTrabajo;
12229
+ }(MBasicModel));
12230
+ var MRArchivoTXT = /** @class */ (function (_super) {
12231
+ __extends(MRArchivoTXT, _super);
12232
+ function MRArchivoTXT(e) {
12233
+ if (e === void 0) { e = null; }
12234
+ var _this = _super.call(this) || this;
12235
+ _this.nombrearchivo = '';
12236
+ if (e) {
12237
+ _this.nombrearchivo = e.nombrearchivo;
12238
+ }
12239
+ else {
12240
+ _this.isNew = true;
12241
+ }
12242
+ return _this;
12243
+ }
12244
+ MRArchivoTXT.prototype.dataInterface = function () {
12245
+ return {
12246
+ nombrearchivo: this.nombrearchivo
12247
+ };
12248
+ };
12249
+ return MRArchivoTXT;
12250
+ }(MBasicModel));
12251
+ var MRListadoPersonal = /** @class */ (function (_super) {
12252
+ __extends(MRListadoPersonal, _super);
12253
+ function MRListadoPersonal(e) {
12254
+ if (e === void 0) { e = null; }
12255
+ var _this = _super.call(this) || this;
12256
+ _this.idNominaDes = 0;
12257
+ _this.idNominaHas = 0;
12258
+ _this.codigoNominaDes = "";
12259
+ _this.codigoNominaHas = "";
12260
+ _this.denominacionNominaDes = "";
12261
+ _this.denominacionNominaHas = "";
12262
+ _this.id_personalDes = 0;
12263
+ _this.id_personalHas = 0;
12264
+ _this.codigoPersonalDes = "";
12265
+ _this.codigoPersonalHas = "";
12266
+ _this.nombrePersonalDes = "";
12267
+ _this.nombrePersonalHas = "";
12268
+ _this.estatusPersonal = 1;
12269
+ _this.causaEgresoPer = "";
12270
+ _this.sexo = "";
12271
+ _this.codigoPais = "000058";
12272
+ _this.codigoEstado = "";
12273
+ _this.codigoMunicipio = "";
12274
+ _this.codigoParroquia = "";
12275
+ _this.nombrePais = "Venezuela";
12276
+ _this.nombreEstado = "";
12277
+ _this.nombreMunicipio = "";
12278
+ _this.nombreParroquia = "";
12279
+ _this.statusPersonalNomina = "";
12280
+ _this.fechaDesde = "";
12281
+ _this.fechaHasta = "";
12282
+ _this.orden = "1";
12283
+ _this.reporte = "";
12284
+ if (e) {
12285
+ _this.idNominaDes = e.id_nominaDes;
12286
+ _this.idNominaHas = e.id_nominaHas;
12287
+ _this.codigoNominaDes = e.codnomDes;
12288
+ _this.codigoNominaHas = e.codnomHas;
12289
+ _this.denominacionNominaDes = e.dennomDes;
12290
+ _this.denominacionNominaHas = e.dennomHas;
12291
+ _this.id_personalDes = e.id_personalDes;
12292
+ _this.id_personalHas = e.id_personalHas;
12293
+ _this.codigoPersonalDes = e.codperDes;
12294
+ _this.codigoPersonalHas = e.codperHas;
12295
+ _this.nombrePersonalDes = e.nomperDes;
12296
+ _this.nombrePersonalHas = e.nomperHas;
12297
+ _this.estatusPersonal = e.estper;
12298
+ _this.causaEgresoPer = e.cauegrper;
12299
+ _this.sexo = e.sexper;
12300
+ _this.codigoPais = e.codpai;
12301
+ _this.codigoEstado = e.codest;
12302
+ _this.codigoMunicipio = e.codmun;
12303
+ _this.codigoParroquia = e.codpar;
12304
+ _this.nombrePais = e.despai;
12305
+ _this.nombreEstado = e.desest;
12306
+ _this.nombreMunicipio = e.desmun;
12307
+ _this.nombreParroquia = e.despar;
12308
+ _this.statusPersonalNomina = e.staper;
12309
+ _this.fechaDesde = e.fechaDes;
12310
+ _this.fechaHasta = e.fechaHas;
12311
+ _this.orden = e.orden;
12312
+ _this.reporte = e.reporte;
12313
+ }
12314
+ else {
12315
+ _this.isNew = true;
12316
+ }
12317
+ return _this;
12318
+ }
12319
+ MRListadoPersonal.prototype.dataInterface = function () {
12320
+ return {
12321
+ id_nominaDes: this.idNominaDes,
12322
+ id_nominaHas: this.idNominaHas,
12323
+ codnomDes: this.codigoNominaDes,
12324
+ codnomHas: this.codigoNominaHas,
12325
+ dennomDes: this.denominacionNominaDes,
12326
+ dennomHas: this.denominacionNominaHas,
12327
+ id_personalDes: this.id_personalDes,
12328
+ id_personalHas: this.id_personalHas,
12329
+ codperDes: this.codigoPersonalDes,
12330
+ codperHas: this.codigoPersonalHas,
12331
+ nomperDes: this.nombrePersonalDes,
12332
+ nomperHas: this.nombrePersonalHas,
12333
+ estper: this.estatusPersonal,
12334
+ cauegrper: this.causaEgresoPer,
12335
+ sexper: this.sexo,
12336
+ codpai: this.codigoPais,
12337
+ codest: this.codigoEstado,
12338
+ codmun: this.codigoMunicipio,
12339
+ codpar: this.codigoParroquia,
12340
+ despai: this.nombrePais,
12341
+ desest: this.nombreEstado,
12342
+ desmun: this.nombreMunicipio,
12343
+ despar: this.nombreParroquia,
12344
+ staper: this.statusPersonalNomina,
12345
+ fechaDes: this.fechaDesde,
12346
+ fechaHas: this.fechaHasta,
12347
+ orden: this.orden,
12348
+ reporte: this.reporte
12349
+ };
12350
+ };
12351
+ return MRListadoPersonal;
12352
+ }(MBasicModel));
12353
+ var MRListadoSindicato = /** @class */ (function (_super) {
12354
+ __extends(MRListadoSindicato, _super);
12355
+ function MRListadoSindicato(e) {
12356
+ if (e === void 0) { e = null; }
12357
+ var _this = _super.call(this) || this;
12358
+ _this.idSindicatoDes = 0;
12359
+ _this.idSindicatoHas = 0;
12360
+ _this.codigoSindicatoDes = '';
12361
+ _this.codigoSindicatoHas = '';
12362
+ _this.reporte = '';
12363
+ if (e) {
12364
+ _this.idSindicatoDes = e.id_sindicatoDes;
12365
+ _this.idSindicatoHas = e.id_sindicatoHas;
12366
+ _this.codigoSindicatoDes = e.codSindicatoDes;
12367
+ _this.codigoSindicatoHas = e.codSindicatoHas;
12368
+ _this.reporte = e.reporte;
12369
+ }
12370
+ else {
12371
+ _this.isNew = true;
12372
+ }
12373
+ return _this;
12374
+ }
12375
+ MRListadoSindicato.prototype.dataInterface = function () {
12376
+ return {
12377
+ id_sindicatoDes: this.idSindicatoDes,
12378
+ id_sindicatoHas: this.idSindicatoHas,
12379
+ codSindicatoDes: this.codigoSindicatoDes,
12380
+ codSindicatoHas: this.codigoSindicatoHas,
12381
+ reporte: this.reporte,
12382
+ };
12383
+ };
12384
+ return MRListadoSindicato;
12385
+ }(MBasicModel));
12386
+ var MRListadoTipoPersonal = /** @class */ (function (_super) {
12387
+ __extends(MRListadoTipoPersonal, _super);
12388
+ function MRListadoTipoPersonal(e) {
12389
+ if (e === void 0) { e = null; }
12390
+ var _this = _super.call(this) || this;
12391
+ _this.idUbicacionFisica = 0;
12392
+ _this.codigoUbicacionFisica = "";
12393
+ _this.denominacionUbicacionFisica = "";
12394
+ _this.codigoPais = '000058';
12395
+ _this.nombrePais = 'Venezuela';
12396
+ _this.codigoEstado = '---';
12397
+ _this.nombreEstado = '';
12398
+ _this.codigoMunicipio = '---';
12399
+ _this.nombreMunicipio = '';
12400
+ _this.codigoParroquia = '---';
12401
+ _this.nombreParroquia = '';
12402
+ _this.reporte = '';
12403
+ _this.estatusPersonal = '';
12404
+ _this.idOrganigrama = 0;
12405
+ _this.codigoEstOrganizativa = '';
12406
+ _this.denominacionEstOrganizativa = '';
12407
+ _this.orden = '1';
12408
+ if (e) {
12409
+ _this.idUbicacionFisica = e.id_ubifis;
12410
+ _this.codigoUbicacionFisica = e.codubifis;
12411
+ _this.denominacionUbicacionFisica = e.denubifis;
12412
+ _this.codigoPais = '000058';
12413
+ _this.nombrePais = 'Venezuela';
12414
+ _this.codigoEstado = e.codest;
12415
+ _this.nombreEstado = e.desest;
12416
+ _this.codigoMunicipio = e.codmun;
12417
+ _this.nombreMunicipio = e.desmun;
12418
+ _this.codigoParroquia = e.codpar;
12419
+ _this.nombreParroquia = e.despar;
12420
+ _this.estatusPersonal = e.estper;
12421
+ _this.idOrganigrama = e.id_organigrama;
12422
+ _this.codigoEstOrganizativa = e.codestorg;
12423
+ _this.denominacionEstOrganizativa = e.denestorg;
12424
+ _this.reporte = e.reporte;
12425
+ _this.orden = e.orden;
12426
+ }
12427
+ else {
12428
+ _this.isNew = true;
12429
+ }
12430
+ return _this;
12431
+ }
12432
+ MRListadoTipoPersonal.prototype.dataInterface = function () {
12433
+ return {
12434
+ id_ubifis: this.idUbicacionFisica,
12435
+ codubifis: this.codigoUbicacionFisica,
12436
+ denubifis: this.denominacionUbicacionFisica,
12437
+ codpai: this.codigoPais,
12438
+ despai: this.nombrePais,
12439
+ codest: this.codigoEstado,
12440
+ desest: this.nombreEstado,
12441
+ codmun: this.codigoMunicipio,
12442
+ desmun: this.nombreMunicipio,
12443
+ codpar: this.codigoParroquia,
12444
+ despar: this.nombreParroquia,
12445
+ estper: this.estatusPersonal,
12446
+ id_organigrama: this.idOrganigrama,
12447
+ codestorg: this.codigoEstOrganizativa,
12448
+ denestorg: this.denominacionEstOrganizativa,
12449
+ reporte: this.reporte,
12450
+ orden: this.orden
12451
+ };
12452
+ };
12453
+ return MRListadoTipoPersonal;
12454
+ }(MBasicModel));
12455
+ var MRPeriodo = /** @class */ (function (_super) {
12456
+ __extends(MRPeriodo, _super);
12457
+ function MRPeriodo(e) {
12458
+ if (e === void 0) { e = null; }
12459
+ var _this = _super.call(this) || this;
12460
+ _this.idPeriodo = 0;
12461
+ _this.codigoPeriodo = '';
12462
+ _this.fechaDesdePeriodo = '1900-01-01';
12463
+ _this.fechaHastaperiodo = '1900-01-01';
12464
+ if (e) {
12465
+ _this.idPeriodo = parseInt(e.id_periodo);
12466
+ _this.codigoPeriodo = e.codperi;
12467
+ _this.fechaDesdePeriodo = e.fecdesper;
12468
+ _this.fechaHastaperiodo = e.fechasper;
12469
+ }
12470
+ else {
12471
+ _this.isNew = true;
12472
+ }
12473
+ return _this;
12474
+ }
12475
+ MRPeriodo.prototype.dataInterface = function () {
12476
+ return {
12477
+ id_periodo: this.idPeriodo.toString(),
12478
+ codperi: this.codigoPeriodo,
12479
+ fecdesper: this.fechaDesdePeriodo,
12480
+ fechasper: this.fechaHastaperiodo
12481
+ };
12482
+ };
12483
+ return MRPeriodo;
12484
+ }(MBasicModel));
12485
+ var MRRetenciones = /** @class */ (function (_super) {
12486
+ __extends(MRRetenciones, _super);
12487
+ function MRRetenciones(e) {
12488
+ if (e === void 0) { e = null; }
12489
+ var _this = _super.call(this) || this;
12490
+ _this.id_nomina = 0;
12491
+ _this.codigonomina = '';
12492
+ _this.id_personalDes = 0;
12493
+ _this.id_personalHas = 0;
12494
+ _this.codigopersonalDes = "";
12495
+ _this.codigopersonalHas = "";
12496
+ _this.annocurso = "";
12497
+ _this.reporte = "";
12498
+ if (e) {
12499
+ _this.id_nomina = e.id_nomina;
12500
+ _this.codigonomina = e.codnom;
12501
+ _this.id_personalDes = e.id_personalDes;
12502
+ _this.id_personalHas = e.id_personalHas;
12503
+ _this.codigopersonalDes = e.codperDes;
12504
+ _this.codigopersonalHas = e.codperHas;
12505
+ _this.annocurso = e.annocurso;
12506
+ _this.reporte = e.reporte;
12507
+ }
12508
+ else {
12509
+ _this.isNew = true;
12510
+ }
12511
+ return _this;
12512
+ }
12513
+ MRRetenciones.prototype.dataInterface = function () {
12514
+ return {
12515
+ id_nomina: this.id_nomina,
12516
+ codnom: this.codigonomina,
12517
+ id_personalDes: this.id_personalDes,
12518
+ id_personalHas: this.id_personalHas,
12519
+ codperDes: this.codigopersonalDes,
12520
+ codperHas: this.codigopersonalHas,
12521
+ annocurso: this.annocurso,
12522
+ reporte: this.reporte
12523
+ };
12524
+ };
12525
+ return MRRetenciones;
12526
+ }(MBasicModel));
12527
+
10958
12528
  var customPaginator = /** @class */ (function (_super) {
10959
12529
  __extends(customPaginator, _super);
10960
12530
  function customPaginator() {
@@ -10997,6 +12567,7 @@
10997
12567
  exports.MAllStructure = MAllStructure;
10998
12568
  exports.MAnticipoPrestaciones = MAnticipoPrestaciones;
10999
12569
  exports.MArchivoTxtCampo = MArchivoTxtCampo;
12570
+ exports.MArchivosTxt = MArchivosTxt;
11000
12571
  exports.MAsignacionCargo = MAsignacionCargo;
11001
12572
  exports.MAspectoEvaluacion = MAspectoEvaluacion;
11002
12573
  exports.MBank = MBank;
@@ -11004,9 +12575,12 @@
11004
12575
  exports.MBasicModel = MBasicModel;
11005
12576
  exports.MBeneficiario = MBeneficiario;
11006
12577
  exports.MCalculoPrestacion = MCalculoPrestacion;
12578
+ exports.MCambioEstatusPersonal = MCambioEstatusPersonal;
11007
12579
  exports.MCargaFamiliar = MCargaFamiliar;
11008
12580
  exports.MCargaMasiva = MCargaMasiva;
11009
12581
  exports.MCargo = MCargo;
12582
+ exports.MCargoEstructuraOrganizativa = MCargoEstructuraOrganizativa;
12583
+ exports.MCargosNominas = MCargosNominas;
11010
12584
  exports.MCargosPersonal = MCargosPersonal;
11011
12585
  exports.MCentroCosto = MCentroCosto;
11012
12586
  exports.MCity = MCity;
@@ -11063,6 +12637,9 @@
11063
12637
  exports.MEstructuraPresupuestariaOne = MEstructuraPresupuestariaOne;
11064
12638
  exports.MEstructuraPresupuestariaThree = MEstructuraPresupuestariaThree;
11065
12639
  exports.MEstructuraPresupuestariaTwo = MEstructuraPresupuestariaTwo;
12640
+ exports.MEstudiosConcursantes = MEstudiosConcursantes;
12641
+ exports.MExperienciaLaboral = MExperienciaLaboral;
12642
+ exports.MFamiliaConcursante = MFamiliaConcursante;
11066
12643
  exports.MFamiliares = MFamiliares;
11067
12644
  exports.MFeriados = MFeriados;
11068
12645
  exports.MFideicomiso = MFideicomiso;
@@ -11071,11 +12648,16 @@
11071
12648
  exports.MFideicomisoPeriodoInteres = MFideicomisoPeriodoInteres;
11072
12649
  exports.MFideicomisoPeriodoInteresCatalogo = MFideicomisoPeriodoInteresCatalogo;
11073
12650
  exports.MFormacionAcademica = MFormacionAcademica;
12651
+ exports.MFormacionInformal = MFormacionInformal;
11074
12652
  exports.MFuenteFinanciamiento = MFuenteFinanciamiento;
11075
12653
  exports.MGrados = MGrados;
11076
12654
  exports.MGroup = MGroup;
11077
12655
  exports.MHojaTiempo = MHojaTiempo;
12656
+ exports.MImpuestoSobreRenta = MImpuestoSobreRenta;
12657
+ exports.MItemsEvalucion = MItemsEvalucion;
11078
12658
  exports.MLog = MLog;
12659
+ exports.MMetodoBanco = MMetodoBanco;
12660
+ exports.MMetodos = MMetodos;
11079
12661
  exports.MMoneda = MMoneda;
11080
12662
  exports.MMonedaConfig = MMonedaConfig;
11081
12663
  exports.MMunicipality = MMunicipality;
@@ -11083,21 +12665,32 @@
11083
12665
  exports.MOrganizationType = MOrganizationType;
11084
12666
  exports.MParish = MParish;
11085
12667
  exports.MPeriodoNomina = MPeriodoNomina;
12668
+ exports.MPeriodosPlan = MPeriodosPlan;
11086
12669
  exports.MPermisos = MPermisos;
11087
12670
  exports.MPersonal = MPersonal;
12671
+ exports.MPersonalCuentaBanco = MPersonalCuentaBanco;
11088
12672
  exports.MPersonalJubilado = MPersonalJubilado;
11089
12673
  exports.MPersonalNomina = MPersonalNomina;
11090
12674
  exports.MPlanUnicoCuenta = MPlanUnicoCuenta;
11091
12675
  exports.MPlantillasConstancia = MPlantillasConstancia;
12676
+ exports.MPrestamo = MPrestamo;
12677
+ exports.MPrestamoAmortizacion = MPrestamoAmortizacion;
12678
+ exports.MPrestamosPeriodo = MPrestamosPeriodo;
12679
+ exports.MPrevioEvaluacion = MPrevioEvaluacion;
12680
+ exports.MPrevioEvaluacionDt = MPrevioEvaluacionDt;
11092
12681
  exports.MPrimaGrados = MPrimaGrados;
11093
12682
  exports.MPrimasConcepto = MPrimasConcepto;
11094
12683
  exports.MProveedor = MProveedor;
11095
12684
  exports.MProviderBankAccount = MProviderBankAccount;
11096
12685
  exports.MProviderBeneficiary = MProviderBeneficiary;
12686
+ exports.MRArchivoTXT = MRArchivoTXT;
12687
+ exports.MRConsolidadoConceptos = MRConsolidadoConceptos;
12688
+ exports.MRConstanciaTrabajo = MRConstanciaTrabajo;
11097
12689
  exports.MRango = MRango;
11098
- exports.MRequisitosConcursante = MRequisitosConcursante;
12690
+ exports.MRequisitosConcursantes = MRequisitosConcursantes;
11099
12691
  exports.MRequisitosConcursos = MRequisitosConcursos;
11100
12692
  exports.MRequisitosMinimos = MRequisitosMinimos;
12693
+ exports.MResultadosEvaluacion = MResultadosEvaluacion;
11101
12694
  exports.MRights = MRights;
11102
12695
  exports.MSalarioHistorico = MSalarioHistorico;
11103
12696
  exports.MService = MService;
@@ -11131,16 +12724,16 @@
11131
12724
  exports.Signo = Signo;
11132
12725
  exports.TipoCestaTicket = TipoCestaTicket;
11133
12726
  exports.customPaginator = customPaginator;
11134
- exports.ɵc = AppComponent;
11135
- exports.ɵd = SharedModule;
11136
- exports.ɵe = CatalogoComponent;
11137
- exports.ɵg = ConfirmComponent;
11138
- exports.ɵh = IconComponent;
11139
- exports.ɵi = TableSelectComponent;
11140
- exports.ɵj = CatalogoEstructurasComponent;
11141
- exports.ɵk = CatalogoDobleInputComponent;
11142
- exports.ɵl = IsoCurrencyPipe;
11143
- exports.ɵm = CustonMaterialModule;
12727
+ exports.ɵe = AppComponent;
12728
+ exports.ɵf = SharedModule;
12729
+ exports.ɵg = CatalogoComponent;
12730
+ exports.ɵi = ConfirmComponent;
12731
+ exports.ɵj = IconComponent;
12732
+ exports.ɵk = TableSelectComponent;
12733
+ exports.ɵl = CatalogoEstructurasComponent;
12734
+ exports.ɵm = CatalogoDobleInputComponent;
12735
+ exports.ɵn = IsoCurrencyPipe;
12736
+ exports.ɵo = CustonMaterialModule;
11144
12737
 
11145
12738
  Object.defineProperty(exports, '__esModule', { value: true });
11146
12739