sigesp 0.9.19-20221221 → 0.9.20-20221228
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 +21 -11
- 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/CentroCosto.js +1 -1
- package/esm2015/lib/core/models/SCG/centroCosto.model.js +7 -2
- package/esm2015/lib/shared/shared.module.js +2 -2
- package/esm2015/lib/sigesp.service.js +14 -10
- package/fesm2015/sigesp.js +20 -11
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CentroCosto.d.ts +1 -0
- package/lib/core/models/SCG/centroCosto.model.d.ts +1 -0
- package/lib/sigesp.service.d.ts +4 -3
- package/package.json +1 -1
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ export declare class SigespService {
|
|
|
115
115
|
* @return Promise<any[]>
|
|
116
116
|
* @author Miguel Ramírez
|
|
117
117
|
*/
|
|
118
|
-
getBudgetStructureComplete(): Promise<any[]>;
|
|
118
|
+
getBudgetStructureComplete(nivel: number): Promise<any[]>;
|
|
119
119
|
/**
|
|
120
120
|
* @description Elimina una o varias estructuras presupuestarias
|
|
121
121
|
* @param idStructures Id de las estructuras presupuestarias 5 que van a ser eliminadas
|
|
@@ -304,9 +304,10 @@ export declare class SigespService {
|
|
|
304
304
|
* @description Obtiene los centros de costo
|
|
305
305
|
* @return Observable<MCentroCosto[]>
|
|
306
306
|
* @author Miguel Ramírez
|
|
307
|
-
*
|
|
307
|
+
* @param id:idusurio o id del ecntro de costo
|
|
308
|
+
* modificado 28-12-2022
|
|
308
309
|
*/
|
|
309
|
-
getCentroCosto(tipo
|
|
310
|
+
getCentroCosto(tipo?: 'all' | 'one' | 'user', id?: number): Observable<MCentroCosto[]>;
|
|
310
311
|
/**
|
|
311
312
|
* @description Obtiene los centros de costo
|
|
312
313
|
* @return Observable<IResponse>
|