sigesp 0.9.32-20230208 → 0.9.33-20230209
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 +1 -1
- 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/sigesp.service.js +2 -3
- package/fesm2015/sigesp.js +1 -2
- package/fesm2015/sigesp.js.map +1 -1
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -6189,7 +6189,7 @@
|
|
|
6189
6189
|
* @return Observable<MCuentaEgresos[]>
|
|
6190
6190
|
*/
|
|
6191
6191
|
SigespService.prototype.getExpenseAccountsForLevel = function (level, id) {
|
|
6192
|
-
return this.http.get(this.URL + "/dao/spg/cuentas_egresos_dao.php
|
|
6192
|
+
return this.http.get(this.URL + "/dao/spg/cuentas_egresos_dao.php?level=" + level + "&id=" + id, { headers: this.getHttpHeaders() })
|
|
6193
6193
|
.pipe(operators.map(function (res) { return res.data.map(function (element) { return new MCuentaEgresos(element); }); }));
|
|
6194
6194
|
};
|
|
6195
6195
|
/**
|