sigesp 1.1.23-20241113 → 1.1.24-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.
@@ -32,10 +32,16 @@ export interface ICuentaEgresos {
32
32
  septiembre: string;
33
33
  spg_cuenta: string;
34
34
  status: string;
35
- estructura?: IEstructuraPresupuestariaFiveComplete;
36
- id_del_spgcta?: string;
37
35
  id_enterprise: string;
38
36
  perfiscal: string;
37
+ codestpro1?: string;
38
+ codestpro2?: string;
39
+ codestpro3?: string;
40
+ codestpro4?: string;
41
+ codestpro5?: string;
42
+ estructura?: string;
43
+ denestructura?: string;
44
+ id_del_spgcta?: string;
39
45
  }
40
46
  export interface IEstructuraPresupuestariaFiveComplete {
41
47
  codcencos: string;
@@ -45,11 +45,11 @@ export interface IEstructuras {
45
45
  fuentes?: IFuenteFinanciamiento[];
46
46
  monto?: string;
47
47
  status?: string;
48
- codeep1?: string;
49
- codeep2?: string;
50
- codeep3?: string;
51
- codeep4?: string;
52
- codeep5?: string;
48
+ codestpro1?: string;
49
+ codestpro2?: string;
50
+ codestpro3?: string;
51
+ codestpro4?: string;
52
+ codestpro5?: string;
53
53
  denestructura?: string;
54
54
  denestpro5?: string;
55
55
  denestpro3?: string;
@@ -8,7 +8,6 @@ export declare class MCuentaEgresos extends MBasicModel {
8
8
  denominacion: string;
9
9
  cuenta: string;
10
10
  cuentaContable: string;
11
- cuentaONCOP: string;
12
11
  clasificador: string;
13
12
  referencia: string;
14
13
  aumento: number;
@@ -35,16 +34,17 @@ export declare class MCuentaEgresos extends MBasicModel {
35
34
  idEP3: number;
36
35
  idEP4: number;
37
36
  idEP5: number;
38
- codestpro1: string;
39
- codestpro2: string;
40
- codestpro3: string;
41
- codestpro4: string;
42
- codestpro5: string;
37
+ codigoEp1: string;
38
+ codigoEp2: string;
39
+ codigoEp3: string;
40
+ codigoEp4: string;
41
+ codigoEp5: string;
43
42
  estructura: string;
44
43
  selected: boolean;
45
44
  isNew: boolean;
46
45
  error: boolean;
47
46
  status: string;
48
47
  id: number;
49
- constructor(cuenta?: ICuentaEgresos, level?: number, isNew?: boolean);
48
+ denominacionEstructura: string;
49
+ constructor(cuenta?: ICuentaEgresos);
50
50
  }
@@ -344,7 +344,7 @@ export declare class SigespService {
344
344
  * @params presupuesto: Indica si se a trabajar con estructura de presupuesto o no
345
345
  */
346
346
  openCatalogoCuentasEgreso(idEnterprise: number, periodoFiscal: number, titulo: string, presupuesto?: boolean, ancho?: string): Promise<MCuentaEgresos>;
347
- getExpenseAccounts(idEnterprise: number, periodoFiscal: number): Observable<MCuentaEgresos[]>;
347
+ getExpenseAccounts(idEnterprise: number, periodoFiscal: number, estatus?: string): Observable<MCuentaEgresos[]>;
348
348
  /**
349
349
  * @description Abre el cátalogo de cuentas de la tabla "scg_plan_unico_re"
350
350
  * @returns Promise<MCuentaPresupuesto>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.23-20241113",
3
+ "version": "1.1.24-20241113",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },