sigesp 1.1.39-20250123 → 1.1.40-20250123

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.
@@ -6368,6 +6368,7 @@ class MTipoDepositos extends MBasicModel {
6368
6368
  this.despacho = 0;
6369
6369
  this.disponible = 0;
6370
6370
  this.seriaLote = '';
6371
+ this.cantidad = 0;
6371
6372
  if (e) {
6372
6373
  this.idEmpresa = +e.id_empresa;
6373
6374
  this.idEnterprise = +e.id_enterprise;
@@ -6396,6 +6397,7 @@ class MTipoDepositos extends MBasicModel {
6396
6397
  this.disponible = +e.disponible;
6397
6398
  this.codigoLote = e.codlote;
6398
6399
  this.seriaLote = e.serlot;
6400
+ this.cantidad = +e.cantidad;
6399
6401
  }
6400
6402
  else {
6401
6403
  this.isNew = true;
@@ -6430,6 +6432,7 @@ class MTipoDepositos extends MBasicModel {
6430
6432
  reservacion: this.reservacion.toString(),
6431
6433
  despacho: this.despacho.toString(),
6432
6434
  disponible: this.disponible.toString(),
6435
+ cantidad: this.cantidad.toString()
6433
6436
  };
6434
6437
  }
6435
6438
  }