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.
- package/esm2020/lib/core/interfaces/ITipoDepositos.mjs +1 -1
- package/esm2020/lib/core/models/SIV/MTipoDepositos.model.mjs +4 -1
- package/fesm2015/sigesp.mjs +3 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +3 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/ITipoDepositos.d.ts +1 -0
- package/lib/core/models/SIV/MTipoDepositos.model.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -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
|
}
|