sigesp 1.1.17-20241018 → 1.1.19-20241105
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/ConfiguracionSCG.mjs +1 -1
- package/esm2020/lib/core/interfaces/ConfigurationSPG.mjs +1 -1
- package/esm2020/lib/core/interfaces/CuentaPresupuesto.mjs +1 -1
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +1 -1
- package/esm2020/lib/core/interfaces/Proveedor.mjs +1 -1
- package/esm2020/lib/core/models/RPC/providerBeneficiary.model.mjs +201 -80
- package/esm2020/lib/core/models/SCG/configuracionSCG.model.mjs +5 -1
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +2 -2
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +5 -1
- package/esm2020/lib/core/models/SPG/cuentaPresupuesto.model.mjs +126 -64
- package/esm2020/lib/sigesp.service.mjs +2 -2
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/sigesp.mjs +336 -145
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +336 -145
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/ConfiguracionSCG.d.ts +2 -0
- package/lib/core/interfaces/ConfigurationSPG.d.ts +2 -0
- package/lib/core/interfaces/CuentaPresupuesto.d.ts +3 -0
- package/lib/core/interfaces/Presupuesto.d.ts +1 -1
- package/lib/core/interfaces/Proveedor.d.ts +26 -3
- package/lib/core/models/RPC/providerBeneficiary.model.d.ts +45 -4
- package/lib/core/models/SCG/configuracionSCG.model.d.ts +2 -0
- package/lib/core/models/SPG/configurationSPG.model.d.ts +2 -0
- package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +17 -10
- package/package.json +1 -1
- package/public-api.d.ts +2 -2
|
@@ -74,7 +74,6 @@ export interface ICuentaEgresos {
|
|
|
74
74
|
aumento: string;
|
|
75
75
|
causado: string;
|
|
76
76
|
codcuecla: string;
|
|
77
|
-
cueoncop: string;
|
|
78
77
|
denspgcta: string;
|
|
79
78
|
diciembre: string;
|
|
80
79
|
disminiucion: string;
|
|
@@ -105,6 +104,7 @@ export interface ICuentaEgresos {
|
|
|
105
104
|
perfiscal: string;
|
|
106
105
|
estructura?: IEstructuraPresupuestariaFiveComplete;
|
|
107
106
|
id_del_spgcta?: string;
|
|
107
|
+
distff?: string;
|
|
108
108
|
}
|
|
109
109
|
export interface IEstructuraPresupuestariaFiveComplete {
|
|
110
110
|
id_cencos: string;
|
|
@@ -10,6 +10,7 @@ export interface IOrganizationType {
|
|
|
10
10
|
}
|
|
11
11
|
export interface IProviderBeneficiary {
|
|
12
12
|
id_empresa: string;
|
|
13
|
+
id_enterprise: string;
|
|
13
14
|
id_proveedor: string;
|
|
14
15
|
rifpro: string;
|
|
15
16
|
cedben: string;
|
|
@@ -29,7 +30,7 @@ export interface IProviderBeneficiary {
|
|
|
29
30
|
codest: string;
|
|
30
31
|
codmun: string;
|
|
31
32
|
codpar: string;
|
|
32
|
-
|
|
33
|
+
id_moneda: string;
|
|
33
34
|
id_tiporg: string;
|
|
34
35
|
fecregsis: string;
|
|
35
36
|
numlic: string;
|
|
@@ -55,12 +56,13 @@ export interface IProviderBeneficiary {
|
|
|
55
56
|
inspector: string;
|
|
56
57
|
sc_cuenta: string;
|
|
57
58
|
sc_cuentaant: string;
|
|
58
|
-
sc_cuentarecdoc: string;
|
|
59
59
|
tipperpro: string;
|
|
60
60
|
estpropri: string;
|
|
61
|
-
codsigcof: string;
|
|
62
61
|
pasaporte: string;
|
|
63
62
|
cuentas: IProviderBankAccount[];
|
|
63
|
+
especialidad: ISpecialtyProv[];
|
|
64
|
+
deducciones: IDeductionProv[];
|
|
65
|
+
documentos: IDocumentProv[];
|
|
64
66
|
}
|
|
65
67
|
export interface IProviderBankAccount {
|
|
66
68
|
id_empresa: string;
|
|
@@ -73,3 +75,24 @@ export interface IProviderBankAccount {
|
|
|
73
75
|
id_ctabcoprov: string;
|
|
74
76
|
denctabcoprov: string;
|
|
75
77
|
}
|
|
78
|
+
export interface IDeductionProv {
|
|
79
|
+
id_proveedor: number;
|
|
80
|
+
id_deduccion: number;
|
|
81
|
+
codded: string;
|
|
82
|
+
dended: string;
|
|
83
|
+
}
|
|
84
|
+
export interface ISpecialtyProv {
|
|
85
|
+
id_proveedor: number;
|
|
86
|
+
id_especialidad: number;
|
|
87
|
+
denesp: string;
|
|
88
|
+
}
|
|
89
|
+
export interface IDocumentProv {
|
|
90
|
+
id_proveedor: number;
|
|
91
|
+
id_doc: number;
|
|
92
|
+
dendoc: string;
|
|
93
|
+
fecrecdoc: string;
|
|
94
|
+
fecvendoc: string;
|
|
95
|
+
estdoc: number;
|
|
96
|
+
estoridoc: number;
|
|
97
|
+
obsdocpro: string;
|
|
98
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { IProviderBeneficiary, IProviderBankAccount } from '../../interfaces/Proveedor';
|
|
1
|
+
import { IProviderBeneficiary, IProviderBankAccount, IDocumentProv, IDeductionProv, ISpecialtyProv } from '../../interfaces/Proveedor';
|
|
2
2
|
import { MBasicModel } from '../basic-model.model';
|
|
3
3
|
export declare class MProviderBeneficiary extends MBasicModel {
|
|
4
4
|
idEmpresa: number;
|
|
5
|
+
idEnterprise: number;
|
|
5
6
|
id: number;
|
|
6
7
|
rif: string;
|
|
7
|
-
|
|
8
|
+
cedben: string;
|
|
8
9
|
name: string;
|
|
9
10
|
address: string;
|
|
10
11
|
nit: string;
|
|
@@ -50,12 +51,16 @@ export declare class MProviderBeneficiary extends MBasicModel {
|
|
|
50
51
|
advanceAccountableAccount: string;
|
|
51
52
|
receptionAccountableAccount: string;
|
|
52
53
|
estpropri: string;
|
|
53
|
-
sigecofCode: string;
|
|
54
54
|
passport: string;
|
|
55
55
|
accounts: MProviderBankAccount[];
|
|
56
|
+
deductions: MDeductionProv[];
|
|
57
|
+
documents: MDocumentProv[];
|
|
58
|
+
specialties: MSpecialtyProv[];
|
|
59
|
+
fechaRegistroProveedor: string;
|
|
56
60
|
personType: string;
|
|
57
61
|
isNew: boolean;
|
|
58
|
-
constructor(proben
|
|
62
|
+
constructor(proben: IProviderBeneficiary);
|
|
63
|
+
dataInterface(): IProviderBeneficiary;
|
|
59
64
|
}
|
|
60
65
|
export declare class MProviderBankAccount {
|
|
61
66
|
id: number;
|
|
@@ -73,3 +78,39 @@ export declare class MProviderBankAccount {
|
|
|
73
78
|
constructor(account: IProviderBankAccount);
|
|
74
79
|
dataInterface(): IProviderBankAccount;
|
|
75
80
|
}
|
|
81
|
+
export declare class MDocumentProv {
|
|
82
|
+
providerId: number;
|
|
83
|
+
documentId: number;
|
|
84
|
+
denomination: string;
|
|
85
|
+
dateReception: string;
|
|
86
|
+
dateExpiration: string;
|
|
87
|
+
statusDocument: number;
|
|
88
|
+
statusOriginal: number;
|
|
89
|
+
observation: string;
|
|
90
|
+
isNew: boolean;
|
|
91
|
+
error: boolean;
|
|
92
|
+
selected: boolean;
|
|
93
|
+
constructor(doc: IDocumentProv);
|
|
94
|
+
dataInterface(): IDocumentProv;
|
|
95
|
+
}
|
|
96
|
+
export declare class MDeductionProv {
|
|
97
|
+
providerId: number;
|
|
98
|
+
id: number;
|
|
99
|
+
codigo: string;
|
|
100
|
+
denomination: string;
|
|
101
|
+
isNew: boolean;
|
|
102
|
+
error: boolean;
|
|
103
|
+
selected: boolean;
|
|
104
|
+
constructor(ded: IDeductionProv);
|
|
105
|
+
dataInterface(): IDeductionProv;
|
|
106
|
+
}
|
|
107
|
+
export declare class MSpecialtyProv {
|
|
108
|
+
providerId: number;
|
|
109
|
+
id: number;
|
|
110
|
+
denomination: string;
|
|
111
|
+
isNew: boolean;
|
|
112
|
+
error: boolean;
|
|
113
|
+
selected: boolean;
|
|
114
|
+
constructor(ded: ISpecialtyProv);
|
|
115
|
+
dataInterface(): ISpecialtyProv;
|
|
116
|
+
}
|
|
@@ -49,6 +49,8 @@ export declare class MConfiguracionSCG extends MBasicModel {
|
|
|
49
49
|
SCFResultadoTesoro: string;
|
|
50
50
|
costo: number;
|
|
51
51
|
cuentaResultadoPresupuesto: string;
|
|
52
|
+
codigoEnterprise: string;
|
|
53
|
+
denominacionEnterprise: string;
|
|
52
54
|
constructor(configuracion?: IConfiguracionSCG);
|
|
53
55
|
dataInterface(): IConfiguracionSCG;
|
|
54
56
|
}
|
|
@@ -35,6 +35,8 @@ export declare class MConfigurationSPG {
|
|
|
35
35
|
codigoCentroCosto: string;
|
|
36
36
|
estructuraPresupuestaria: string;
|
|
37
37
|
editable: boolean;
|
|
38
|
+
codigoEnterprise: string;
|
|
39
|
+
denominacionEnterprise: string;
|
|
38
40
|
constructor(configuration?: IConfigurationSPG);
|
|
39
41
|
dataInteface(): IConfigurationSPG;
|
|
40
42
|
}
|
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
import { ICuentaEgresos } from '../../interfaces/Presupuesto';
|
|
2
2
|
import { ICuentaPresupuesto } from '../../interfaces/CuentaPresupuesto';
|
|
3
3
|
import { MBasicModel } from '../basic-model.model';
|
|
4
|
-
export declare class MCuentaPresupuesto {
|
|
4
|
+
export declare class MCuentaPresupuesto extends MBasicModel {
|
|
5
|
+
idEmpresa: number;
|
|
6
|
+
idEnterprise: number;
|
|
7
|
+
periodoFiscal: number;
|
|
5
8
|
cuenta: string;
|
|
6
9
|
denominacion: string;
|
|
7
10
|
status: string;
|
|
8
11
|
tipo: string;
|
|
9
|
-
|
|
12
|
+
denominacionTipo: string;
|
|
13
|
+
denominacionStatus: string;
|
|
14
|
+
constructor(e?: ICuentaPresupuesto);
|
|
15
|
+
dataInterface(): ICuentaPresupuesto;
|
|
10
16
|
}
|
|
11
|
-
export declare class MCuentaEgresos
|
|
17
|
+
export declare class MCuentaEgresos {
|
|
12
18
|
idEmpresa: number;
|
|
13
19
|
idEnterprise: number;
|
|
14
20
|
periodoFiscal: number;
|
|
@@ -16,7 +22,6 @@ export declare class MCuentaEgresos extends MBasicModel {
|
|
|
16
22
|
denominacion: string;
|
|
17
23
|
cuenta: string;
|
|
18
24
|
cuentaContable: string;
|
|
19
|
-
cuentaONCOP: string;
|
|
20
25
|
clasificador: string;
|
|
21
26
|
referencia: string;
|
|
22
27
|
aumento: number;
|
|
@@ -43,16 +48,18 @@ export declare class MCuentaEgresos extends MBasicModel {
|
|
|
43
48
|
idEP3: number;
|
|
44
49
|
idEP4: number;
|
|
45
50
|
idEP5: number;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
+
codigoEP1: string;
|
|
52
|
+
codigoEP2: string;
|
|
53
|
+
codigoEP3: string;
|
|
54
|
+
codigoEP4: string;
|
|
55
|
+
codigoEP5: string;
|
|
51
56
|
estructura: string;
|
|
52
57
|
selected: boolean;
|
|
53
58
|
isNew: boolean;
|
|
54
59
|
error: boolean;
|
|
55
60
|
status: string;
|
|
56
61
|
id: number;
|
|
57
|
-
|
|
62
|
+
distribuirFF: number;
|
|
63
|
+
constructor(cuenta?: ICuentaEgresos, level?: number);
|
|
64
|
+
dataInterface(): ICuentaEgresos;
|
|
58
65
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export { MDocument } from './lib/core/models/RPC/document.model';
|
|
|
33
33
|
export { MOrganizationType } from './lib/core/models/SPG/organizationType.model';
|
|
34
34
|
export { MSpecialty } from './lib/core/models/RPC/specialty.model';
|
|
35
35
|
export { MConfigurationRPC } from './lib/core/models/RPC/configuracionRPC.model';
|
|
36
|
-
export { MProviderBeneficiary, MProviderBankAccount, } from './lib/core/models/RPC/providerBeneficiary.model';
|
|
36
|
+
export { MProviderBeneficiary, MProviderBankAccount, MDeductionProv, MDocumentProv } from './lib/core/models/RPC/providerBeneficiary.model';
|
|
37
37
|
export { MBank, MBankAccountType, MSigecofBank, MCuentaBanco, MAgenciaBanco, } from './lib/core/models/SCB/bank.model';
|
|
38
38
|
export { MCuentaInstitucional } from './lib/core/models/SCG/cuentaInstitucional.model';
|
|
39
39
|
export { MConfiguracionSCG } from './lib/core/models/SCG/configuracionSCG.model';
|
|
@@ -134,7 +134,7 @@ export { MPrestamo, MPrestamoAmortizacion, MPrestamosPeriodo } from './lib/core/
|
|
|
134
134
|
export { MRConsolidadoConceptos, MRArchivoTXT, MRConstanciaTrabajo } from './lib/core/models/SNO/MReportesRRHH';
|
|
135
135
|
export { MSnoLog } from './lib/core/models/SNO/MAuditoria.model';
|
|
136
136
|
export { MPlanHorario, MPeriodosPlan } from './lib/core/models/SNO/MPlanHorario.model';
|
|
137
|
-
export { IProveedor, IOrganizationType, IProviderBeneficiary, IProviderBankAccount } from './lib/core/interfaces/Proveedor';
|
|
137
|
+
export { IProveedor, IOrganizationType, IProviderBeneficiary, IProviderBankAccount, IDeductionProv, IDocumentProv, ISpecialtyProv } from './lib/core/interfaces/Proveedor';
|
|
138
138
|
export { IConexion } from './lib/core/interfaces/Usuario';
|
|
139
139
|
export { IResponse } from './lib/core/interfaces/Response';
|
|
140
140
|
export { ICentroCosto } from './lib/core/interfaces/CentroCosto';
|