sigesp 1.1.46-20250328 → 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.
@@ -6378,6 +6378,7 @@ class MTipoDepositos extends MBasicModel {
6378
6378
  this.disponible = 0;
6379
6379
  this.seriaLote = '';
6380
6380
  this.cantidad = 0;
6381
+ this.tipoDocumento = 'O';
6381
6382
  if (e) {
6382
6383
  this.idEmpresa = +e.id_empresa;
6383
6384
  this.idEnterprise = +e.id_enterprise;
@@ -6407,6 +6408,7 @@ class MTipoDepositos extends MBasicModel {
6407
6408
  this.codigoLote = e.codlote;
6408
6409
  this.seriaLote = e.serlot;
6409
6410
  this.cantidad = +e.cantidad;
6411
+ this.tipoDocumento = e.tipdoc;
6410
6412
  }
6411
6413
  else {
6412
6414
  this.isNew = true;
@@ -6441,7 +6443,8 @@ class MTipoDepositos extends MBasicModel {
6441
6443
  reservacion: this.reservacion.toString(),
6442
6444
  despacho: this.despacho.toString(),
6443
6445
  disponible: this.disponible.toString(),
6444
- cantidad: this.cantidad.toString()
6446
+ cantidad: this.cantidad.toString(),
6447
+ tipdoc: this.tipoDocumento,
6445
6448
  };
6446
6449
  }
6447
6450
  }
@@ -6477,6 +6480,7 @@ class MExchangeRate extends MBasicModel {
6477
6480
  this.fechaHasta = '1900-01-01';
6478
6481
  this.montoTasa = 0;
6479
6482
  this.denominacionMoneda = '';
6483
+ this.activo = true;
6480
6484
  if (e) {
6481
6485
  this.idTasaCambio = +e.id_tascam;
6482
6486
  this.idMoneda = +e.id_moneda;
@@ -6485,6 +6489,7 @@ class MExchangeRate extends MBasicModel {
6485
6489
  this.fechaHasta = e.fectashas;
6486
6490
  this.montoTasa = +e.montascam;
6487
6491
  this.denominacionMoneda = e.denmon;
6492
+ e.activo == '1' ? this.activo = true : this.activo = false;
6488
6493
  }
6489
6494
  else {
6490
6495
  this.isNew = true;
@@ -6499,6 +6504,7 @@ class MExchangeRate extends MBasicModel {
6499
6504
  fectashas: this.fechaHasta,
6500
6505
  montascam: this.montoTasa.toString(),
6501
6506
  denmon: this.denominacionMoneda,
6507
+ activo: this.activo ? '1' : '0',
6502
6508
  };
6503
6509
  }
6504
6510
  }