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/fesm2015/sigesp.mjs
CHANGED
|
@@ -6809,7 +6809,7 @@ class SigespService {
|
|
|
6809
6809
|
* @returns
|
|
6810
6810
|
*/
|
|
6811
6811
|
getBudgetStructureComplete(tipo = 'completa', idEnterprise, periodoFiscal, codigo = '') {
|
|
6812
|
-
return this.http.get(`${this.URL}/dao/spg/estructura_presupuestaria_dao.php?tipo=${tipo}
|
|
6812
|
+
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))));
|
|
6813
6813
|
}
|
|
6814
6814
|
/**
|
|
6815
6815
|
* @description Obtiene las configuraciones de la estructura presupuestaria
|