sigesp 1.1.2-20240905 → 1.1.3-20240912
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/Banco.mjs +1 -1
- package/esm2020/lib/core/interfaces/CentroCosto.mjs +1 -1
- package/esm2020/lib/core/interfaces/ComprobantePresupuestario.mjs +1 -1
- package/esm2020/lib/core/interfaces/Configuracion.mjs +1 -1
- package/esm2020/lib/core/interfaces/IBancoCuentasPorPagar.mjs +1 -1
- package/esm2020/lib/core/interfaces/Moneda.mjs +1 -1
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +1 -1
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/CFG/Empresa.model.mjs +12 -9
- package/esm2020/lib/core/models/CFG/TasaCambio.model.mjs +7 -4
- package/esm2020/lib/core/models/CFG/moneda.model.mjs +7 -7
- package/esm2020/lib/core/models/SCG/centroCosto.model.mjs +3 -2
- package/esm2020/lib/core/models/SNO/MEstructuraOrganizativa.model.mjs +4 -1
- package/esm2020/lib/core/models/SNO/MPersonalNomina.model.mjs +3 -5
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +4 -1
- package/esm2020/lib/core/models/SPG/comprobantePresupuestario.model.mjs +5 -2
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +2 -2
- package/esm2020/lib/sigesp.service.mjs +3 -3
- package/fesm2015/sigesp.mjs +40 -25
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +40 -25
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Banco.d.ts +6 -0
- package/lib/core/interfaces/CentroCosto.d.ts +1 -1
- package/lib/core/interfaces/ComprobantePresupuestario.d.ts +3 -0
- package/lib/core/interfaces/Configuracion.d.ts +5 -3
- package/lib/core/interfaces/IBancoCuentasPorPagar.d.ts +4 -0
- package/lib/core/interfaces/Moneda.d.ts +2 -2
- package/lib/core/interfaces/Presupuesto.d.ts +3 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -0
- package/lib/core/models/CFG/Empresa.model.d.ts +5 -3
- package/lib/core/models/CFG/TasaCambio.model.d.ts +2 -1
- package/lib/core/models/CFG/moneda.model.d.ts +2 -2
- package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +1 -0
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +1 -1
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +1 -0
- package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +3 -1
- package/package.json +1 -1
|
@@ -238,6 +238,7 @@ export interface IDetallesContable {
|
|
|
238
238
|
id_ctabanco: string;
|
|
239
239
|
numdoc: string;
|
|
240
240
|
codope: string;
|
|
241
|
+
id_cencos: string;
|
|
241
242
|
codcencos: string;
|
|
242
243
|
sc_cuenta: string;
|
|
243
244
|
debhab: string;
|
|
@@ -261,6 +262,7 @@ export interface IDetalle {
|
|
|
261
262
|
id_banco: string;
|
|
262
263
|
id_ctabanco: string;
|
|
263
264
|
id_uniadm: string;
|
|
265
|
+
id_cencos: string;
|
|
264
266
|
numdoc: string;
|
|
265
267
|
codope: string;
|
|
266
268
|
spg_spi_cuenta: string;
|
|
@@ -299,6 +301,7 @@ export interface IDetalleSpgSpi {
|
|
|
299
301
|
codestpre: string;
|
|
300
302
|
spg_cuenta: string;
|
|
301
303
|
codfuefin: string;
|
|
304
|
+
id_cencos: string;
|
|
302
305
|
codcencos: string;
|
|
303
306
|
operacion: string;
|
|
304
307
|
desmov: string;
|
|
@@ -339,6 +342,7 @@ export interface IDetalleMovimiento {
|
|
|
339
342
|
ctabanben: string;
|
|
340
343
|
}
|
|
341
344
|
export interface ICuentasSpSc {
|
|
345
|
+
id_cencos: string;
|
|
342
346
|
codcencos: string;
|
|
343
347
|
codigoftefin: string;
|
|
344
348
|
coduniadm: string;
|
|
@@ -360,6 +364,7 @@ export interface IDivisas {
|
|
|
360
364
|
codope: string;
|
|
361
365
|
codestpre: string;
|
|
362
366
|
codfuefin: string;
|
|
367
|
+
id_cencos: string;
|
|
363
368
|
codcencos: string;
|
|
364
369
|
cuenta: string;
|
|
365
370
|
debhab: string;
|
|
@@ -479,6 +484,7 @@ export interface IIntegracion {
|
|
|
479
484
|
spg_cuenta: string;
|
|
480
485
|
sc_cuenta: string;
|
|
481
486
|
codfuefin: string;
|
|
487
|
+
id_cencos: string;
|
|
482
488
|
codcencos: string;
|
|
483
489
|
id_uniadm: string;
|
|
484
490
|
estpre: string;
|
|
@@ -10,10 +10,10 @@ export interface ICentroCosto {
|
|
|
10
10
|
export interface IUsuariosCentroCosto {
|
|
11
11
|
id_empresa: string;
|
|
12
12
|
id_enterprise: string;
|
|
13
|
-
id_usuario: string;
|
|
14
13
|
id_cencos: string;
|
|
15
14
|
codcencos: string;
|
|
16
15
|
codusu: string;
|
|
16
|
+
id_usuario: string;
|
|
17
17
|
nomusu?: string;
|
|
18
18
|
apeusu?: string;
|
|
19
19
|
id_dt_cencos: string;
|
|
@@ -6,8 +6,10 @@ export interface IComprobantePresupuestarioEgresos {
|
|
|
6
6
|
id_ep5: string;
|
|
7
7
|
spg_cuenta: string;
|
|
8
8
|
operacion: string;
|
|
9
|
+
id_fuefin: string;
|
|
9
10
|
codfuefin: string;
|
|
10
11
|
documento: string;
|
|
12
|
+
id_cencos: string;
|
|
11
13
|
codcencos: string;
|
|
12
14
|
moncmp: string;
|
|
13
15
|
id_dt_spgcmp: string;
|
|
@@ -31,6 +33,7 @@ export interface IComprobantePresupuestarioIngresos {
|
|
|
31
33
|
id_ep4: string;
|
|
32
34
|
id_ep5: string;
|
|
33
35
|
operacion: string;
|
|
36
|
+
id_cencos: string;
|
|
34
37
|
codcencos: string;
|
|
35
38
|
procede_doc: string;
|
|
36
39
|
documento: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IUsuarioPrefijo } from "./UsuarioPrefijo";
|
|
2
2
|
export interface IEmpresa {
|
|
3
3
|
id_empresa: string;
|
|
4
|
+
id_cencos: string;
|
|
4
5
|
rifemp: string;
|
|
5
6
|
nitemp: string;
|
|
6
7
|
nomemp: string;
|
|
@@ -18,7 +19,7 @@ export interface IEmpresa {
|
|
|
18
19
|
codmun: string;
|
|
19
20
|
codpar: string;
|
|
20
21
|
codcom: string;
|
|
21
|
-
|
|
22
|
+
id_moneda: string;
|
|
22
23
|
nomrepleg: string;
|
|
23
24
|
cedrepleg: string;
|
|
24
25
|
telrepleg: string;
|
|
@@ -38,7 +39,7 @@ export interface IEmpresa {
|
|
|
38
39
|
id_ep3: string;
|
|
39
40
|
id_ep4: string;
|
|
40
41
|
id_ep5: string;
|
|
41
|
-
|
|
42
|
+
id_fuefin: string;
|
|
42
43
|
codigoftefin?: string;
|
|
43
44
|
id_uniadm: string;
|
|
44
45
|
coduniadm?: string;
|
|
@@ -92,7 +93,8 @@ export interface IPrefijo {
|
|
|
92
93
|
usuarios: IUsuarioPrefijo[];
|
|
93
94
|
}
|
|
94
95
|
export interface ITasaCambio {
|
|
95
|
-
|
|
96
|
+
id_moneda: string;
|
|
97
|
+
id_tascam: string;
|
|
96
98
|
fectasdes: string;
|
|
97
99
|
horcamtas: string;
|
|
98
100
|
fectashas: string;
|
|
@@ -5,6 +5,7 @@ export interface IDetallesContableOP {
|
|
|
5
5
|
id_recdoc: string;
|
|
6
6
|
id_tipodocumento: string;
|
|
7
7
|
id_proveedor: string;
|
|
8
|
+
id_cencos: string;
|
|
8
9
|
procede_doc: string;
|
|
9
10
|
numdoc: string;
|
|
10
11
|
debhab: string;
|
|
@@ -22,6 +23,7 @@ export interface IDetallesContableRD {
|
|
|
22
23
|
codope: string;
|
|
23
24
|
id_sol_dc: string;
|
|
24
25
|
debhab: string;
|
|
26
|
+
id_cencos: string;
|
|
25
27
|
codcencos: string;
|
|
26
28
|
sc_cuenta: string;
|
|
27
29
|
monto: string;
|
|
@@ -65,7 +67,9 @@ export interface IRecepcionDocumento {
|
|
|
65
67
|
fecanurd: string;
|
|
66
68
|
usuanurd: string;
|
|
67
69
|
conanurd: string;
|
|
70
|
+
id_fuefin: string;
|
|
68
71
|
codfuefin: string;
|
|
72
|
+
id_cencos: string;
|
|
69
73
|
codcencos: string;
|
|
70
74
|
id_uniadm: string;
|
|
71
75
|
id_ep1: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export interface IMoneda {
|
|
2
|
-
|
|
2
|
+
id_moneda: string;
|
|
3
3
|
denmon: string;
|
|
4
4
|
codiso: string;
|
|
5
5
|
simmon: string;
|
|
@@ -9,7 +9,7 @@ export interface IMoneda {
|
|
|
9
9
|
decimal_alt: string;
|
|
10
10
|
}
|
|
11
11
|
export interface IMonedaConfig {
|
|
12
|
-
|
|
12
|
+
id_moneda: string;
|
|
13
13
|
denmon: string;
|
|
14
14
|
codiso: string;
|
|
15
15
|
simmon: string;
|
|
@@ -12,6 +12,7 @@ export interface IUnidadAdministradoraCentral {
|
|
|
12
12
|
export interface IUnitAdministrative {
|
|
13
13
|
id_empresa: string;
|
|
14
14
|
id_enterprise: string;
|
|
15
|
+
id_cencos: string;
|
|
15
16
|
coduniadm: string;
|
|
16
17
|
coduac: string;
|
|
17
18
|
denuniadm: string;
|
|
@@ -48,6 +49,7 @@ export interface IEstructuras {
|
|
|
48
49
|
denominacion3?: string;
|
|
49
50
|
}
|
|
50
51
|
export interface ICuentasSpSc {
|
|
52
|
+
id_cencos: string;
|
|
51
53
|
codcencos: string;
|
|
52
54
|
codigoftefin: string;
|
|
53
55
|
coduniadm: string;
|
|
@@ -98,6 +100,7 @@ export interface ICuentaEgresos {
|
|
|
98
100
|
id_del_spgcta?: string;
|
|
99
101
|
}
|
|
100
102
|
export interface IEstructuraPresupuestariaFiveComplete {
|
|
103
|
+
id_cencos: string;
|
|
101
104
|
codcencos: string;
|
|
102
105
|
codestpro1: string;
|
|
103
106
|
codestpro2: string;
|
|
@@ -19,7 +19,7 @@ export declare class MEmpresa extends MBasicModel {
|
|
|
19
19
|
codigoMunicipio: string;
|
|
20
20
|
codigoParroquia: string;
|
|
21
21
|
codigoComunidad: string;
|
|
22
|
-
|
|
22
|
+
id_moneda: number;
|
|
23
23
|
nombreRepresentanteLegal: string;
|
|
24
24
|
cedulaRepresentanteLegal: string;
|
|
25
25
|
telefonoRepresentanteLegal: string;
|
|
@@ -39,14 +39,16 @@ export declare class MEmpresa extends MBasicModel {
|
|
|
39
39
|
idEP3: number;
|
|
40
40
|
idEP4: number;
|
|
41
41
|
idEP5: number;
|
|
42
|
-
|
|
42
|
+
idFuenteFinanciaminto: number;
|
|
43
43
|
idUnidadAdministrativa: number;
|
|
44
44
|
denominacionUnidadAdministrativa: string;
|
|
45
45
|
codigoUnidadAdministrativa: string;
|
|
46
|
-
|
|
46
|
+
codigoFuenteFinanciaminto: string;
|
|
47
|
+
idCentroCosto: number;
|
|
47
48
|
codigoCentroCosto: string;
|
|
48
49
|
estructuraPresupuestaria: string;
|
|
49
50
|
tipoEmpresa: number;
|
|
51
|
+
idMoneda: number;
|
|
50
52
|
constructor(e?: IEmpresa);
|
|
51
53
|
dataInterface(): IEmpresa;
|
|
52
54
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ITasaCambio } from "../../interfaces/Configuracion";
|
|
2
2
|
import { MBasicModel } from "../basic-model.model";
|
|
3
3
|
export declare class MExchangeRate extends MBasicModel {
|
|
4
|
-
|
|
4
|
+
idTasaCambio: number;
|
|
5
|
+
idMoneda: number;
|
|
5
6
|
fechaDesde: string;
|
|
6
7
|
horaCambioTasa: string;
|
|
7
8
|
fechaHasta: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IMoneda, IMonedaConfig } from '../../interfaces/Moneda';
|
|
2
2
|
import { MBasicModel } from '../basic-model.model';
|
|
3
3
|
export declare class MMoneda extends MBasicModel {
|
|
4
|
-
|
|
4
|
+
id_moneda: number;
|
|
5
5
|
denominacion: string;
|
|
6
6
|
iso: string;
|
|
7
7
|
simbolo: string;
|
|
@@ -13,7 +13,7 @@ export declare class MMoneda extends MBasicModel {
|
|
|
13
13
|
dataInterface(): IMonedaConfig;
|
|
14
14
|
}
|
|
15
15
|
export declare class MMonedaConfig extends MBasicModel {
|
|
16
|
-
|
|
16
|
+
idMoneda: number;
|
|
17
17
|
denominacion: string;
|
|
18
18
|
codigoIso: string;
|
|
19
19
|
simbolo: string;
|
|
@@ -37,6 +37,7 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
|
|
|
37
37
|
idUnidadAdministrativa: number;
|
|
38
38
|
codigoUnidadAdministrativa: string;
|
|
39
39
|
denominacionUnidadAdministraiva: string;
|
|
40
|
+
idCentroCosto: number;
|
|
40
41
|
constructor(e?: IEstructuraOrganizativa);
|
|
41
42
|
dataInterface(): IEstructuraOrganizativa;
|
|
42
43
|
}
|
|
@@ -97,7 +97,7 @@ export declare class MPersonalNomina extends MBasicModel {
|
|
|
97
97
|
denominacionPermisoPersonal: string;
|
|
98
98
|
tipoCargo: string;
|
|
99
99
|
denominacionTipoCargo: string;
|
|
100
|
-
TipoCargo:
|
|
100
|
+
TipoCargo: any;
|
|
101
101
|
constructor(e?: IPersonalNomina);
|
|
102
102
|
dataInterface(): IPersonalNomina;
|
|
103
103
|
}
|
|
@@ -10,7 +10,8 @@ export declare class MComprobantePresupuestarioEgresos {
|
|
|
10
10
|
idEp5: number;
|
|
11
11
|
SPGCuenta: number;
|
|
12
12
|
operacion: string;
|
|
13
|
-
|
|
13
|
+
idfuenteFinanciamiento: number;
|
|
14
|
+
codigoFuenteFinanciamiento: string;
|
|
14
15
|
procede_DOC: string;
|
|
15
16
|
documento: string;
|
|
16
17
|
codigoCentroCosto: string;
|
|
@@ -33,6 +34,7 @@ export declare class MComprobantePresupuestarioIngresos {
|
|
|
33
34
|
idEp5: number;
|
|
34
35
|
cuenta: number;
|
|
35
36
|
operacion: string;
|
|
37
|
+
idCentroCosto: string;
|
|
36
38
|
centroCosto: string;
|
|
37
39
|
procede: string;
|
|
38
40
|
documento: string;
|