sigesp 1.1.45-20250326 → 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.
- package/esm2020/lib/core/interfaces/ITipoDepositos.mjs +1 -1
- package/esm2020/lib/core/interfaces/Nomina.mjs +3 -1
- package/esm2020/lib/core/models/SIV/MTipoDepositos.model.mjs +5 -2
- package/fesm2015/sigesp.mjs +6 -1
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +6 -1
- 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
|
@@ -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
|
}
|
|
@@ -10286,6 +10289,8 @@ const Signo = [
|
|
|
10286
10289
|
{ value: "R", denominacion: 'Reporte' },
|
|
10287
10290
|
{ value: "B", denominacion: 'Reintegro de Deducciones' },
|
|
10288
10291
|
{ value: "E", denominacion: 'Reintegro de Asignación' },
|
|
10292
|
+
{ value: "S", denominacion: 'Asignación de Provisiones' },
|
|
10293
|
+
{ value: "G", denominacion: 'Pago de Provisiones' },
|
|
10289
10294
|
{ value: "X", denominacion: 'Prestación de Antiguedad' },
|
|
10290
10295
|
{ value: "I", denominacion: 'Interés de Prestación' },
|
|
10291
10296
|
];
|