sigesp 1.1.22-20241107 → 1.1.23-20241113
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/fesm2020/sigesp.mjs
CHANGED
|
@@ -6798,7 +6798,7 @@ class SigespService {
|
|
|
6798
6798
|
* @returns
|
|
6799
6799
|
*/
|
|
6800
6800
|
getBudgetStructureComplete(tipo = 'completa', idEnterprise, periodoFiscal, codigo = '') {
|
|
6801
|
-
return this.http.get(`${this.URL}/dao/spg/estructura_presupuestaria_dao.php?tipo=${tipo}
|
|
6801
|
+
return this.http.get(`${this.URL}/dao/spg/estructura_presupuestaria_dao.php?tipo=${tipo}&e=${idEnterprise}&per=${periodoFiscal}&cod=${codigo}`, { headers: this.getHttpHeaders() }).pipe(map((resp) => resp.data.map(e => new MEstructuras(e))));
|
|
6802
6802
|
}
|
|
6803
6803
|
/**
|
|
6804
6804
|
* @description Obtiene las configuraciones de la estructura presupuestaria
|