sigesp 1.1.48-20250405 → 1.1.49-20250508

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.
@@ -6480,6 +6480,7 @@ class MExchangeRate extends MBasicModel {
6480
6480
  this.fechaHasta = '1900-01-01';
6481
6481
  this.montoTasa = 0;
6482
6482
  this.denominacionMoneda = '';
6483
+ this.activo = true;
6483
6484
  if (e) {
6484
6485
  this.idTasaCambio = +e.id_tascam;
6485
6486
  this.idMoneda = +e.id_moneda;
@@ -6488,6 +6489,7 @@ class MExchangeRate extends MBasicModel {
6488
6489
  this.fechaHasta = e.fectashas;
6489
6490
  this.montoTasa = +e.montascam;
6490
6491
  this.denominacionMoneda = e.denmon;
6492
+ e.activo == '1' ? this.activo = true : this.activo = false;
6491
6493
  }
6492
6494
  else {
6493
6495
  this.isNew = true;
@@ -6502,6 +6504,7 @@ class MExchangeRate extends MBasicModel {
6502
6504
  fectashas: this.fechaHasta,
6503
6505
  montascam: this.montoTasa.toString(),
6504
6506
  denmon: this.denominacionMoneda,
6507
+ activo: this.activo ? '1' : '0',
6505
6508
  };
6506
6509
  }
6507
6510
  }