sigesp 0.9.49-20230719 → 0.9.51-20230813
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 +82 -85
- 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/models/CFG/Empresa.model.js +3 -51
- package/esm2015/lib/core/models/SPG/estructuraPresupuestaria.model.js +74 -32
- package/esm2015/lib/sigesp.service.js +8 -4
- package/fesm2015/sigesp.js +82 -84
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/models/CFG/Empresa.model.d.ts +0 -1
- package/lib/core/models/SPG/estructuraPresupuestaria.model.d.ts +2 -0
- package/lib/sigesp.service.d.ts +1 -1
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -75,6 +75,7 @@ export declare class MEstructuraPresupuestariaFive {
|
|
|
75
75
|
codigoFuenteFinanciamiento: string;
|
|
76
76
|
isNew: boolean;
|
|
77
77
|
constructor(ep: IEstructuraPresupuestariaFive);
|
|
78
|
+
dataInterface(): IEstructuraPresupuestariaFive;
|
|
78
79
|
}
|
|
79
80
|
export declare class MEstructuraPresupuestariaFiveComplete {
|
|
80
81
|
codigoCentroCosto: string;
|
|
@@ -104,6 +105,7 @@ export declare class MEstructuraPresupuestariaFiveComplete {
|
|
|
104
105
|
level: number;
|
|
105
106
|
isNew: boolean;
|
|
106
107
|
constructor(ep: IEstructuraPresupuestariaFiveComplete, level?: number);
|
|
108
|
+
dataInterface(): IEstructuraPresupuestariaFiveComplete;
|
|
107
109
|
}
|
|
108
110
|
export declare class MAllStructure {
|
|
109
111
|
structureOne: MEstructuraPresupuestariaOne[];
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -887,7 +887,7 @@ export declare class SigespService {
|
|
|
887
887
|
* @description obtiene el personal segun filtro
|
|
888
888
|
* @return Observable<IResponse>
|
|
889
889
|
* @date 15-11-2021
|
|
890
|
-
* @param tipo: valores ['catalogo','default','nomina']
|
|
890
|
+
* @param tipo: valores ['catalogo','default','nomina','responsables']
|
|
891
891
|
* @params dato:object {nombre:string, apellido:string, cedula.string} use para la opcion 'catalogo'
|
|
892
892
|
*/
|
|
893
893
|
getPersonal(tipo: string, dato?: any): Observable<any>;
|