sigesp 1.1.21-20241106 → 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/esm2020/lib/core/interfaces/CuentaIngreso.mjs +1 -1
- package/esm2020/lib/core/models/SCG/IncomeAccount.mjs +45 -5
- package/esm2020/lib/sigesp.service.mjs +56 -16
- package/fesm2015/sigesp.mjs +101 -19
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +99 -19
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/CuentaIngreso.d.ts +0 -1
- package/lib/core/models/SCG/IncomeAccount.d.ts +2 -2
- package/lib/sigesp.service.d.ts +15 -7
- package/package.json +1 -1
|
@@ -8,7 +8,6 @@ export declare class MCuentaIngresos extends MBasicModel {
|
|
|
8
8
|
denominacion: string;
|
|
9
9
|
cuenta: string;
|
|
10
10
|
cuentaContable: string;
|
|
11
|
-
cuentaONCOP: string;
|
|
12
11
|
clasificador: string;
|
|
13
12
|
referencia: number;
|
|
14
13
|
estado: string;
|
|
@@ -41,5 +40,6 @@ export declare class MCuentaIngresos extends MBasicModel {
|
|
|
41
40
|
idEP5: number;
|
|
42
41
|
id: number;
|
|
43
42
|
estructura: string;
|
|
44
|
-
constructor(cuenta?: ICuentaIngresos
|
|
43
|
+
constructor(cuenta?: ICuentaIngresos);
|
|
44
|
+
dataInterface(): ICuentaIngresos;
|
|
45
45
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ export declare class SigespService {
|
|
|
116
116
|
* @return Observable<MConfigurationSPG[]>
|
|
117
117
|
* @author Miguel Ramírez
|
|
118
118
|
*/
|
|
119
|
-
getConfigurationSPG(idEnterprise: number,
|
|
119
|
+
getConfigurationSPG(idEnterprise: number, periodoFiscal: number): Observable<MConfigurationSPG>;
|
|
120
120
|
/**
|
|
121
121
|
* @description Obtiene las configuraciones de los proveedores
|
|
122
122
|
* @return Observable<MConfigurationRPC[]>
|
|
@@ -142,7 +142,7 @@ export declare class SigespService {
|
|
|
142
142
|
* @return Observable<MFuenteFinanciamiento[]>
|
|
143
143
|
* @author Miguel Ramírez
|
|
144
144
|
*/
|
|
145
|
-
getFuenteFinanciamiento(): Observable<MFuenteFinanciamiento[]>;
|
|
145
|
+
getFuenteFinanciamiento(idEnterprise: number, periodoFiscal: number): Observable<MFuenteFinanciamiento[]>;
|
|
146
146
|
/**
|
|
147
147
|
* @description Obtiene los centros de costo
|
|
148
148
|
* @return Observable<IResponse>
|
|
@@ -318,13 +318,13 @@ export declare class SigespService {
|
|
|
318
318
|
* @return Promise<McuentaInstitucional>
|
|
319
319
|
* @author Miguel Ramírez
|
|
320
320
|
*/
|
|
321
|
-
openDialogCuentasInstitucionales(idEnterprise: number,
|
|
321
|
+
openDialogCuentasInstitucionales(idEnterprise: number, periodoFiscal: number): Promise<MCuentaInstitucional>;
|
|
322
322
|
/**
|
|
323
323
|
* @description Obtiene las cuentas contables (Cuentas Institucionales)
|
|
324
324
|
* @return Observable<MCuentaInstitucional[]>
|
|
325
325
|
* @author Miguel Ramírez
|
|
326
326
|
*/
|
|
327
|
-
getCuentasInstitucionales(idEnterprise: number,
|
|
327
|
+
getCuentasInstitucionales(idEnterprise: number, periodoFiscal: number, inventory?: boolean): Observable<MCuentaInstitucional[]>;
|
|
328
328
|
/**
|
|
329
329
|
* @description Abre el dialog de las cuentas de presupuesto (Recursos y Egresos)
|
|
330
330
|
* @return Promise<MCuentaPresupuesto>
|
|
@@ -337,6 +337,14 @@ export declare class SigespService {
|
|
|
337
337
|
* @author Miguel Ramírez
|
|
338
338
|
*/
|
|
339
339
|
getCuentasPresupuesto(filter?: string): Observable<MCuentaPresupuesto[]>;
|
|
340
|
+
/**
|
|
341
|
+
* @description Abre el cátalogo de cuentas de la tabla "spg_cuentas"
|
|
342
|
+
* @returns Promise<MCuentaEgresos>
|
|
343
|
+
* @author Carlos Albornoz
|
|
344
|
+
* @params presupuesto: Indica si se a trabajar con estructura de presupuesto o no
|
|
345
|
+
*/
|
|
346
|
+
openCatalogoCuentasEgreso(idEnterprise: number, periodoFiscal: number, titulo: string, presupuesto?: boolean, ancho?: string): Promise<MCuentaEgresos>;
|
|
347
|
+
getExpenseAccounts(idEnterprise: number, periodoFiscal: number): Observable<MCuentaEgresos[]>;
|
|
340
348
|
/**
|
|
341
349
|
* @description Abre el cátalogo de cuentas de la tabla "scg_plan_unico_re"
|
|
342
350
|
* @returns Promise<MCuentaPresupuesto>
|
|
@@ -350,8 +358,8 @@ export declare class SigespService {
|
|
|
350
358
|
* @author Carlos Albornoz
|
|
351
359
|
* @params presupuesto: Indica si se a trabajar con estructura de presupuesto o no
|
|
352
360
|
*/
|
|
353
|
-
openCatalogoCuentasIngreso(titulo: string,
|
|
354
|
-
getUnidadAdministrativa(tipo?: string, idEnterprise?: number,
|
|
361
|
+
openCatalogoCuentasIngreso(idEnterprise: number, periodoFiscal: number, nivel: number, idEP: number, titulo: string, ancho?: string, presupuesto?: boolean): Promise<MCuentaIngresos>;
|
|
362
|
+
getUnidadAdministrativa(tipo?: string, idEnterprise?: number, periodoFiscal?: number, idUnidadOrganizativa?: number): Observable<any>;
|
|
355
363
|
/**
|
|
356
364
|
* @description Obtiene los cargos de servicios
|
|
357
365
|
* @return Observable<IResponse>
|
|
@@ -546,7 +554,7 @@ export declare class SigespService {
|
|
|
546
554
|
* @author Carlos Albornoz
|
|
547
555
|
*/
|
|
548
556
|
getDeductionTypes(): Observable<IResponse>;
|
|
549
|
-
getIncomeAccounts(
|
|
557
|
+
getIncomeAccounts(tipo: string, idEnterprise: number, periodoFiscal: number, nivel?: number, idEP?: number, estatus?: string): Observable<any>;
|
|
550
558
|
getCharges(): Observable<IResponse>;
|
|
551
559
|
getDeductions(): Observable<IResponse>;
|
|
552
560
|
/**
|