sigesp 0.9.43-23230413 → 0.9.44-23230418
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 +18 -0
- 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/Configuracion.js +1 -1
- package/esm2015/lib/core/interfaces/EstructuraPresupuestaria.js +1 -1
- package/esm2015/lib/core/models/CFG/Empresa.model.js +19 -1
- package/fesm2015/sigesp.js +18 -0
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Configuracion.d.ts +7 -0
- package/lib/core/interfaces/EstructuraPresupuestaria.d.ts +1 -0
- package/lib/core/models/CFG/Empresa.model.d.ts +7 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -3396,6 +3396,13 @@
|
|
|
3396
3396
|
_this.idEP3 = 0;
|
|
3397
3397
|
_this.idEP4 = 0;
|
|
3398
3398
|
_this.idEP5 = 0;
|
|
3399
|
+
_this.codigoFuenteFinanciaminto = 0;
|
|
3400
|
+
_this.idUnidadAdministrativa = 0;
|
|
3401
|
+
_this.denominacionUnidadAdministrativa = '';
|
|
3402
|
+
_this.codigoUnidadAdministrativa = '';
|
|
3403
|
+
_this.codigoFuenteFinanciamintoMostrar = '';
|
|
3404
|
+
_this.codigoCentroCosto = '';
|
|
3405
|
+
_this.estructuraPresupuestaria = '';
|
|
3399
3406
|
if (emp) {
|
|
3400
3407
|
_this.idEmpresa = parseInt(emp.id_empresa);
|
|
3401
3408
|
_this.rif = emp.rifemp;
|
|
@@ -3436,6 +3443,13 @@
|
|
|
3436
3443
|
_this.idEP3 = +emp.id_ep3;
|
|
3437
3444
|
_this.idEP4 = +emp.id_ep4;
|
|
3438
3445
|
_this.idEP5 = +emp.id_ep5;
|
|
3446
|
+
_this.codigoFuenteFinanciaminto = +emp.codfuefin;
|
|
3447
|
+
_this.idUnidadAdministrativa = +emp.id_uniadm;
|
|
3448
|
+
_this.denominacionUnidadAdministrativa = emp.denuniadm;
|
|
3449
|
+
_this.codigoUnidadAdministrativa = emp.coduniadm;
|
|
3450
|
+
_this.codigoFuenteFinanciamintoMostrar = emp.codigoftefin;
|
|
3451
|
+
_this.codigoCentroCosto = emp.codcencos;
|
|
3452
|
+
_this.estructuraPresupuestaria = emp.estpre;
|
|
3439
3453
|
}
|
|
3440
3454
|
return _this;
|
|
3441
3455
|
}
|
|
@@ -3479,6 +3493,10 @@
|
|
|
3479
3493
|
id_ep3: this.idEP3.toString(),
|
|
3480
3494
|
id_ep4: this.idEP4.toString(),
|
|
3481
3495
|
id_ep5: this.idEP5.toString(),
|
|
3496
|
+
id_uniadm: this.idUnidadAdministrativa.toString(),
|
|
3497
|
+
codcencos: this.codigoCentroCosto,
|
|
3498
|
+
codfuefin: this.codigoFuenteFinanciaminto.toString(),
|
|
3499
|
+
estpre: this.estructuraPresupuestaria,
|
|
3482
3500
|
};
|
|
3483
3501
|
};
|
|
3484
3502
|
return MEmpresa;
|