sigesp 0.9.59-20230906 → 0.9.60-20230910

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.
@@ -5255,6 +5255,9 @@
5255
5255
  _this.descripcionPuestoTrabajo = '';
5256
5256
  _this.codigoPuestoTrabajo = '';
5257
5257
  _this.descripcionHorario = '';
5258
+ _this.fechaDefuncion = '';
5259
+ _this.fechaActaDefuncion = '';
5260
+ _this.numeroActaDefuncion = '';
5258
5261
  if (p) {
5259
5262
  _this.idEnterprise = +p.id_enterprise;
5260
5263
  _this.idEmpresa = p.id_empresa;
@@ -5371,6 +5374,9 @@
5371
5374
  _this.montoPension = +p.monpen;
5372
5375
  _this.idPlanHorario = +p.id_planhor;
5373
5376
  _this.idHora = +p.id_hora;
5377
+ _this.fechaDefuncion = p.fecdef;
5378
+ _this.fechaActaDefuncion = p.fecactdef;
5379
+ _this.numeroActaDefuncion = p.numactdef;
5374
5380
  if (_this.idPlanHorario > 0) {
5375
5381
  _this.codigoPlanHorario = p.codplanhor;
5376
5382
  _this.descripcionPlanHorario = p.denplanhor;
@@ -5488,6 +5494,9 @@
5488
5494
  id_planhor: this.idPlanHorario.toString(),
5489
5495
  id_hora: this.idHora.toString(),
5490
5496
  id_puetra: this.idPuestoTrabajo.toString(),
5497
+ fecdef: this.fechaDefuncion,
5498
+ fecactdef: this.fechaActaDefuncion,
5499
+ numactdef: this.numeroActaDefuncion,
5491
5500
  };
5492
5501
  };
5493
5502
  return MPersonal;
@@ -9255,6 +9264,8 @@
9255
9264
  _this.denominacionTipoCuenta = '';
9256
9265
  _this.medidaActiva = false;
9257
9266
  _this.tribunal = '';
9267
+ _this.fechaResolucion = '';
9268
+ _this.numeroResolucion = '';
9258
9269
  if (e) {
9259
9270
  _this.idEnterprise = +e.id_enterprise;
9260
9271
  _this.idEmpresa = +e.id_empresa;
@@ -9282,6 +9293,8 @@
9282
9293
  _this.nexoFamiliar = e.nexfam;
9283
9294
  _this.nombreBanco = e.nomban;
9284
9295
  _this.denominacionTipoCuenta = e.nomtipcta;
9296
+ _this.fechaResolucion = e.fecres;
9297
+ _this.numeroResolucion = e.numres;
9285
9298
  }
9286
9299
  else {
9287
9300
  _this.isNew = true;
@@ -9306,6 +9319,8 @@
9306
9319
  numexpben: this.numeroExpedienteBeneficiario,
9307
9320
  medact: this.medidaActiva ? '1' : '0',
9308
9321
  tribunal: this.tribunal,
9322
+ fecres: this.fechaResolucion,
9323
+ numres: this.numeroResolucion,
9309
9324
  };
9310
9325
  };
9311
9326
  return MBeneficiario;