sigesp 0.9.95-20240130 → 0.9.97-20240222
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/bundles/sigesp.umd.js +19 -19
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Presupuesto.js +1 -1
- package/esm2015/lib/core/models/SPG/expensiveAccount.model.js +20 -20
- package/fesm2015/sigesp.js +19 -19
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Presupuesto.d.ts +2 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -2427,25 +2427,25 @@
|
|
|
2427
2427
|
_this.cuentaContable = cuenta.sc_cuenta;
|
|
2428
2428
|
_this.status = cuenta.status;
|
|
2429
2429
|
_this.referencia = cuenta.referencia;
|
|
2430
|
-
_this.aumento =
|
|
2431
|
-
_this.asignado =
|
|
2432
|
-
_this.causado =
|
|
2433
|
-
_this.pagado =
|
|
2434
|
-
_this.distribuir =
|
|
2435
|
-
_this.disminucion =
|
|
2436
|
-
_this.precomprometido =
|
|
2437
|
-
_this.enero =
|
|
2438
|
-
_this.febrero =
|
|
2439
|
-
_this.marzo =
|
|
2440
|
-
_this.abril =
|
|
2441
|
-
_this.mayo =
|
|
2442
|
-
_this.junio =
|
|
2443
|
-
_this.julio =
|
|
2444
|
-
_this.agosto =
|
|
2445
|
-
_this.septiembre =
|
|
2446
|
-
_this.octubre =
|
|
2447
|
-
_this.noviembre =
|
|
2448
|
-
_this.diciembre =
|
|
2430
|
+
_this.aumento = parseFloat(cuenta.aumento);
|
|
2431
|
+
_this.asignado = parseFloat(cuenta.asignado);
|
|
2432
|
+
_this.causado = parseFloat(cuenta.causado);
|
|
2433
|
+
_this.pagado = parseFloat(cuenta.pagado);
|
|
2434
|
+
_this.distribuir = parseFloat(cuenta.distribuir);
|
|
2435
|
+
_this.disminucion = parseFloat(cuenta.disminiucion);
|
|
2436
|
+
_this.precomprometido = parseFloat(cuenta.precomprometido);
|
|
2437
|
+
_this.enero = parseFloat(cuenta.enero);
|
|
2438
|
+
_this.febrero = parseFloat(cuenta.febrero);
|
|
2439
|
+
_this.marzo = parseFloat(cuenta.marzo);
|
|
2440
|
+
_this.abril = parseFloat(cuenta.abril);
|
|
2441
|
+
_this.mayo = parseFloat(cuenta.mayo);
|
|
2442
|
+
_this.junio = parseFloat(cuenta.junio);
|
|
2443
|
+
_this.julio = parseFloat(cuenta.julio);
|
|
2444
|
+
_this.agosto = parseFloat(cuenta.agosto);
|
|
2445
|
+
_this.septiembre = parseFloat(cuenta.septiembre);
|
|
2446
|
+
_this.octubre = parseFloat(cuenta.octubre);
|
|
2447
|
+
_this.noviembre = parseFloat(cuenta.noviembre);
|
|
2448
|
+
_this.diciembre = parseFloat(cuenta.diciembre);
|
|
2449
2449
|
_this.clasificador = cuenta.codcuecla;
|
|
2450
2450
|
_this.cuentaONCOP = cuenta.cueoncop;
|
|
2451
2451
|
_this.idEP1 = parseInt(cuenta.id_ep1);
|