sigesp 1.1.27-20240512 → 1.1.29-20241208
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/esm2020/lib/core/interfaces/ConfigurationSPG.mjs +1 -1
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +7 -3
- package/esm2020/lib/sigesp.service.mjs +5 -8
- package/fesm2015/sigesp.mjs +10 -9
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +10 -9
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/ConfigurationSPG.d.ts +2 -2
- package/lib/core/models/SPG/configurationSPG.model.d.ts +2 -0
- package/lib/sigesp.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -37,10 +37,10 @@ export interface IConfigurationSPG {
|
|
|
37
37
|
estmodape: string;
|
|
38
38
|
coduniadm?: string;
|
|
39
39
|
denuniadm?: string;
|
|
40
|
-
|
|
40
|
+
denominacion?: string;
|
|
41
41
|
dencencos?: string;
|
|
42
42
|
codigoftefin?: string;
|
|
43
|
-
|
|
43
|
+
denfuefin?: string;
|
|
44
44
|
editable?: string;
|
|
45
45
|
codigo?: string;
|
|
46
46
|
titulo?: string;
|
|
@@ -31,7 +31,9 @@ export declare class MConfigurationSPG {
|
|
|
31
31
|
idEP5: number;
|
|
32
32
|
denominacionUnidadAdministrativa: string;
|
|
33
33
|
codigoUnidadAdministrativa: string;
|
|
34
|
+
denominacionFuenteFinanciaminto: string;
|
|
34
35
|
codigoFuenteFinanciaminto: string;
|
|
36
|
+
denominacionCentroCosto: string;
|
|
35
37
|
codigoCentroCosto: string;
|
|
36
38
|
estructuraPresupuestaria: string;
|
|
37
39
|
editable: boolean;
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -128,14 +128,14 @@ export declare class SigespService {
|
|
|
128
128
|
* @return Observable<MConfiguracionSNO[]>
|
|
129
129
|
* @date 27-07-2021
|
|
130
130
|
*/
|
|
131
|
-
getConfigurationSNO(): Observable<IResponse>;
|
|
131
|
+
getConfigurationSNO(idEnterprise: number): Observable<IResponse>;
|
|
132
132
|
dateToString(date: Date): string;
|
|
133
133
|
/**
|
|
134
134
|
* @description Obtiene las configuraciones de Seguridad
|
|
135
135
|
* @return Observable<IResponse>
|
|
136
136
|
* @author Carlos Albornoz
|
|
137
137
|
*/
|
|
138
|
-
getConfigSSS(): Observable<IResponse>;
|
|
138
|
+
getConfigSSS(idEnterprise?: number): Observable<IResponse>;
|
|
139
139
|
getComponents(systemCode: string, permit: boolean): Observable<IResponse>;
|
|
140
140
|
/**
|
|
141
141
|
* @description Obtiene las fuentes de financiamiento
|