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.
@@ -28,7 +28,6 @@ export interface ICuentaIngresos {
28
28
  spi_cuenta: string;
29
29
  stamov: string;
30
30
  codcuecla: string;
31
- cueoncop: string;
32
31
  id_ep1: string;
33
32
  id_ep2: string;
34
33
  id_ep3: string;
@@ -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, isNew?: boolean);
43
+ constructor(cuenta?: ICuentaIngresos);
44
+ dataInterface(): ICuentaIngresos;
45
45
  }
@@ -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, periodoFical: number): Observable<MConfigurationSPG>;
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, periodoFical: number): Promise<MCuentaInstitucional>;
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, periodoFical: number, inventory?: boolean): Observable<MCuentaInstitucional[]>;
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, presupuesto?: boolean, ancho?: string): Promise<MCuentaIngresos>;
354
- getUnidadAdministrativa(tipo?: string, idEnterprise?: number, periodoFical?: number, idUnidadOrganizativa?: number): Observable<any>;
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(onlyAvailable?: boolean): Observable<any>;
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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.21-20241106",
3
+ "version": "1.1.23-20241113",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },