sigesp 0.9.91-20231211 → 0.9.93-20240125
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 +222 -44
- 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/interfaces/CuentaEgresos.js +1 -1
- package/esm2015/lib/core/interfaces/Presupuesto.js +1 -1
- package/esm2015/lib/core/models/SNO/MDefinicionNomina.model.js +4 -4
- package/esm2015/lib/core/models/SPG/cuentaPresupuesto.model.js +108 -1
- package/esm2015/lib/core/models/SPG/expensiveAccount.model.js +106 -38
- package/esm2015/lib/sigesp.service.js +3 -3
- package/fesm2015/sigesp.js +215 -42
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CuentaEgresos.d.ts +26 -1
- package/lib/core/interfaces/Presupuesto.d.ts +61 -0
- package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +49 -0
- package/lib/core/models/SPG/expensiveAccount.model.d.ts +19 -8
- package/lib/sigesp.service.d.ts +1 -1
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -31,8 +31,33 @@ export interface ICuentaEgresos {
|
|
|
31
31
|
sc_cuenta: string;
|
|
32
32
|
septiembre: string;
|
|
33
33
|
spg_cuenta: string;
|
|
34
|
+
codfuefin: string;
|
|
34
35
|
status: string;
|
|
35
|
-
estructura?:
|
|
36
|
+
estructura?: IEstructuraPresupuestariaFiveComplete;
|
|
37
|
+
id_del_spgcta?: string;
|
|
38
|
+
}
|
|
39
|
+
export interface IEstructuraPresupuestariaFiveComplete {
|
|
40
|
+
codcencos: string;
|
|
41
|
+
codestpro1: string;
|
|
42
|
+
codestpro2: string;
|
|
43
|
+
codestpro3: string;
|
|
44
|
+
codestpro4?: string;
|
|
45
|
+
codestpro5?: string;
|
|
46
|
+
codfuefin: string;
|
|
47
|
+
denestpro1: string;
|
|
48
|
+
denestpro2: string;
|
|
49
|
+
denestpro3: string;
|
|
50
|
+
denestpro4?: string;
|
|
51
|
+
denestpro5?: string;
|
|
52
|
+
estcla: string;
|
|
53
|
+
id_empresa: string;
|
|
54
|
+
id_ep1: string;
|
|
55
|
+
id_ep2: string;
|
|
56
|
+
id_ep3: string;
|
|
57
|
+
id_ep4?: string;
|
|
58
|
+
id_ep5?: string;
|
|
59
|
+
codigoftefin?: string;
|
|
60
|
+
denfuefin?: string;
|
|
36
61
|
}
|
|
37
62
|
export interface IUpdateDistribution {
|
|
38
63
|
spg_cuenta: string;
|
|
@@ -47,3 +47,64 @@ export interface ICuentasSpSc {
|
|
|
47
47
|
denestcla: string;
|
|
48
48
|
tipo: string;
|
|
49
49
|
}
|
|
50
|
+
export interface ICuentaEgresos {
|
|
51
|
+
abril: string;
|
|
52
|
+
agosto: string;
|
|
53
|
+
asignado: string;
|
|
54
|
+
aumento: string;
|
|
55
|
+
causado: string;
|
|
56
|
+
codcuecla: string;
|
|
57
|
+
cueoncop: string;
|
|
58
|
+
denspgcta: string;
|
|
59
|
+
diciembre: string;
|
|
60
|
+
disminiucion: string;
|
|
61
|
+
distribuir: string;
|
|
62
|
+
enero: string;
|
|
63
|
+
febrero: string;
|
|
64
|
+
id_empresa: string;
|
|
65
|
+
id_ep1: string;
|
|
66
|
+
id_ep2: string;
|
|
67
|
+
id_ep3: string;
|
|
68
|
+
id_ep4: string;
|
|
69
|
+
id_ep5: string;
|
|
70
|
+
julio: string;
|
|
71
|
+
junio: string;
|
|
72
|
+
marzo: string;
|
|
73
|
+
mayo: string;
|
|
74
|
+
nivel: "4";
|
|
75
|
+
noviembre: string;
|
|
76
|
+
octubre: string;
|
|
77
|
+
pagado: string;
|
|
78
|
+
precomprometido: string;
|
|
79
|
+
referencia: string;
|
|
80
|
+
sc_cuenta: string;
|
|
81
|
+
septiembre: string;
|
|
82
|
+
spg_cuenta: string;
|
|
83
|
+
codfuefin: string;
|
|
84
|
+
status: string;
|
|
85
|
+
estructura?: IEstructuraPresupuestariaFiveComplete;
|
|
86
|
+
id_del_spgcta?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface IEstructuraPresupuestariaFiveComplete {
|
|
89
|
+
codcencos: string;
|
|
90
|
+
codestpro1: string;
|
|
91
|
+
codestpro2: string;
|
|
92
|
+
codestpro3: string;
|
|
93
|
+
codestpro4?: string;
|
|
94
|
+
codestpro5?: string;
|
|
95
|
+
codfuefin: string;
|
|
96
|
+
denestpro1: string;
|
|
97
|
+
denestpro2: string;
|
|
98
|
+
denestpro3: string;
|
|
99
|
+
denestpro4?: string;
|
|
100
|
+
denestpro5?: string;
|
|
101
|
+
estcla: string;
|
|
102
|
+
id_empresa: string;
|
|
103
|
+
id_ep1: string;
|
|
104
|
+
id_ep2: string;
|
|
105
|
+
id_ep3: string;
|
|
106
|
+
id_ep4?: string;
|
|
107
|
+
id_ep5?: string;
|
|
108
|
+
codigoftefin?: string;
|
|
109
|
+
denfuefin?: string;
|
|
110
|
+
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { ICuentaEgresos } from '../../interfaces/Presupuesto';
|
|
1
2
|
import { ICuentaPresupuesto } from '../../interfaces/CuentaPresupuesto';
|
|
3
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
4
|
export declare class MCuentaPresupuesto {
|
|
3
5
|
cuenta: string;
|
|
4
6
|
denominacion: string;
|
|
@@ -6,3 +8,50 @@ export declare class MCuentaPresupuesto {
|
|
|
6
8
|
tipo: string;
|
|
7
9
|
constructor(cuentaPresupuesto: ICuentaPresupuesto);
|
|
8
10
|
}
|
|
11
|
+
export declare class MCuentaEgresos extends MBasicModel {
|
|
12
|
+
idEmpresa: number;
|
|
13
|
+
nivel: number;
|
|
14
|
+
denominacion: string;
|
|
15
|
+
cuenta: string;
|
|
16
|
+
cuentaContable: string;
|
|
17
|
+
cuentaONCOP: string;
|
|
18
|
+
clasificador: string;
|
|
19
|
+
referencia: string;
|
|
20
|
+
aumento: number;
|
|
21
|
+
asignado: number;
|
|
22
|
+
causado: number;
|
|
23
|
+
disminucion: number;
|
|
24
|
+
distribuir: number;
|
|
25
|
+
precomprometido: number;
|
|
26
|
+
pagado: number;
|
|
27
|
+
enero: number;
|
|
28
|
+
febrero: number;
|
|
29
|
+
marzo: number;
|
|
30
|
+
abril: number;
|
|
31
|
+
mayo: number;
|
|
32
|
+
junio: number;
|
|
33
|
+
julio: number;
|
|
34
|
+
agosto: number;
|
|
35
|
+
septiembre: number;
|
|
36
|
+
octubre: number;
|
|
37
|
+
noviembre: number;
|
|
38
|
+
diciembre: number;
|
|
39
|
+
idEP1: number;
|
|
40
|
+
idEP2: number;
|
|
41
|
+
idEP3: number;
|
|
42
|
+
idEP4: number;
|
|
43
|
+
idEP5: number;
|
|
44
|
+
codestpro1: string;
|
|
45
|
+
codestpro2: string;
|
|
46
|
+
codestpro3: string;
|
|
47
|
+
codestpro4: string;
|
|
48
|
+
codestpro5: string;
|
|
49
|
+
estructura: string;
|
|
50
|
+
selected: boolean;
|
|
51
|
+
isNew: boolean;
|
|
52
|
+
error: boolean;
|
|
53
|
+
status: string;
|
|
54
|
+
id: number;
|
|
55
|
+
codfuefin: number;
|
|
56
|
+
constructor(cuenta?: ICuentaEgresos, level?: number, isNew?: boolean);
|
|
57
|
+
}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { ICuentaEgresos } from '../../interfaces/CuentaEgresos';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MCuentaEgresos extends MBasicModel {
|
|
3
4
|
idEmpresa: number;
|
|
4
5
|
nivel: number;
|
|
5
6
|
denominacion: string;
|
|
6
|
-
cuenta:
|
|
7
|
-
cuentaContable:
|
|
8
|
-
cuentaONCOP:
|
|
9
|
-
clasificador:
|
|
10
|
-
referencia:
|
|
7
|
+
cuenta: string;
|
|
8
|
+
cuentaContable: string;
|
|
9
|
+
cuentaONCOP: string;
|
|
10
|
+
clasificador: string;
|
|
11
|
+
referencia: string;
|
|
11
12
|
aumento: number;
|
|
12
13
|
asignado: number;
|
|
13
14
|
causado: number;
|
|
@@ -32,7 +33,17 @@ export declare class MCuentaEgresos {
|
|
|
32
33
|
idEP3: number;
|
|
33
34
|
idEP4: number;
|
|
34
35
|
idEP5: number;
|
|
35
|
-
|
|
36
|
+
codestpro1: string;
|
|
37
|
+
codestpro2: string;
|
|
38
|
+
codestpro3: string;
|
|
39
|
+
codestpro4: string;
|
|
40
|
+
codestpro5: string;
|
|
36
41
|
estructura: string;
|
|
37
|
-
|
|
42
|
+
selected: boolean;
|
|
43
|
+
isNew: boolean;
|
|
44
|
+
error: boolean;
|
|
45
|
+
status: string;
|
|
46
|
+
id: number;
|
|
47
|
+
codfuefin: number;
|
|
48
|
+
constructor(cuenta?: ICuentaEgresos, level?: number, isNew?: boolean);
|
|
38
49
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -628,7 +628,7 @@ export declare class SigespService {
|
|
|
628
628
|
* @author Dimaly Crespo
|
|
629
629
|
* @actualizado: 5-12-20222
|
|
630
630
|
*/
|
|
631
|
-
getEnterprise(tipo?: '
|
|
631
|
+
getEnterprise(tipo?: 'linea' | 'proceso' | 'default', id?: number): Observable<IResponse>;
|
|
632
632
|
/**
|
|
633
633
|
* @description Obtiene los tipos de organizacion
|
|
634
634
|
* @return Observable<IResponse>
|