sigesp 0.9.101-20240224 → 0.9.103-20240401
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 +8 -2
- 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/Constantes.js +2 -1
- package/esm2015/lib/core/models/SPG/fuenteFinanciamiento.model.js +6 -1
- package/esm2015/lib/sigesp.service.js +3 -3
- package/fesm2015/sigesp.js +8 -2
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/sigesp.service.d.ts +1 -1
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -542,6 +542,7 @@
|
|
|
542
542
|
{ value: "9", denominacion: 'Clasificación de Personal' },
|
|
543
543
|
{ value: "3", denominacion: 'Nivel de Selección' },
|
|
544
544
|
{ value: "4", denominacion: 'Profesiones' },
|
|
545
|
+
{ value: "16", denominacion: 'Permisos Personal' },
|
|
545
546
|
{ value: "14", denominacion: 'Sindicato' },
|
|
546
547
|
{ value: "5", denominacion: 'Tipo de Accidentes' },
|
|
547
548
|
{ value: "6", denominacion: 'Tipo de Cobertura de Salud' },
|
|
@@ -2347,6 +2348,11 @@
|
|
|
2347
2348
|
__extends(MFuenteFinanciamiento, _super);
|
|
2348
2349
|
function MFuenteFinanciamiento(fuente) {
|
|
2349
2350
|
var _this = _super.call(this) || this;
|
|
2351
|
+
_this.codigoFuenteFinanciamiento = '';
|
|
2352
|
+
_this.denominacionFuenteFinanciamiento = '';
|
|
2353
|
+
_this.explicacionFuenteFinanciamiento = '';
|
|
2354
|
+
_this.idEmpresa = '0';
|
|
2355
|
+
_this.codigo = '0';
|
|
2350
2356
|
if (fuente) {
|
|
2351
2357
|
_this.codigoFuenteFinanciamiento = fuente.codfuefin;
|
|
2352
2358
|
_this.denominacionFuenteFinanciamiento = fuente.denfuefin;
|
|
@@ -7850,8 +7856,8 @@
|
|
|
7850
7856
|
* @return Observable<MCuentaPresupuesto>
|
|
7851
7857
|
* @author Miguel Ramírez
|
|
7852
7858
|
*/
|
|
7853
|
-
SigespService.prototype.getCuentasPresupuesto = function () {
|
|
7854
|
-
return this.http.get(this.URL + "/dao/scg/plan_unico_cuentas_dao.php", { headers: this.getHttpHeaders() }).pipe(operators.map(function (res) { return res.data.map(function (element) { return new MCuentaPresupuesto(element); }); }));
|
|
7859
|
+
SigespService.prototype.getCuentasPresupuesto = function (filter) {
|
|
7860
|
+
return this.http.get(this.URL + "/dao/scg/plan_unico_cuentas_dao.php?filter=" + filter, { headers: this.getHttpHeaders() }).pipe(operators.map(function (res) { return res.data.map(function (element) { return new MCuentaPresupuesto(element); }); }));
|
|
7855
7861
|
};
|
|
7856
7862
|
/**
|
|
7857
7863
|
* @description Abre el cátalogo de cuentas de la tabla "scg_plan_unico_re"
|