sigesp 1.1.46-20250328 → 1.1.48-20250405

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
  }