sigesp 0.9.87-20231113 → 0.9.88-20231115
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 +152 -43
- 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/Presupuesto.js +1 -1
- package/esm2015/lib/core/interfaces/Tributos.js +1 -1
- package/esm2015/lib/core/models/SPG/administrativeUnit.model.js +63 -1
- package/esm2015/lib/core/models/SPG/fuenteFinanciamiento.model.js +23 -7
- package/esm2015/lib/core/models/STB/MCargosAdicionales.js +25 -3
- package/esm2015/public-api.js +2 -2
- package/fesm2015/sigesp.js +106 -9
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Presupuesto.d.ts +38 -0
- package/lib/core/interfaces/Tributos.d.ts +8 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +42 -2
- package/lib/core/models/SPG/fuenteFinanciamiento.model.d.ts +4 -2
- package/lib/core/models/STB/MCargosAdicionales.d.ts +10 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -3
- package/sigesp.metadata.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IFuenteFinanciamiento } from "./FuenteFinanciamiento";
|
|
1
2
|
export interface IUnitAdministrative {
|
|
2
3
|
id_empresa: number;
|
|
3
4
|
id_enterprise: number;
|
|
@@ -8,4 +9,41 @@ export interface IUnitAdministrative {
|
|
|
8
9
|
codcencos: string;
|
|
9
10
|
id_uniadm: number;
|
|
10
11
|
denuac?: string;
|
|
12
|
+
estructuras: IEstructuras[];
|
|
13
|
+
}
|
|
14
|
+
export interface IEstructuras {
|
|
15
|
+
id_ep1: string;
|
|
16
|
+
id_ep2: string;
|
|
17
|
+
id_ep3: string;
|
|
18
|
+
id_ep4: string;
|
|
19
|
+
id_ep5: string;
|
|
20
|
+
id_dt_uniadm: string;
|
|
21
|
+
id_uniadm: string;
|
|
22
|
+
cuentacontable?: string;
|
|
23
|
+
cuentapresupuestaria?: string;
|
|
24
|
+
denominacion?: string;
|
|
25
|
+
estructura?: string;
|
|
26
|
+
fuentes?: IFuenteFinanciamiento[];
|
|
27
|
+
monto?: string;
|
|
28
|
+
status?: string;
|
|
29
|
+
codeep1?: string;
|
|
30
|
+
codeep2?: string;
|
|
31
|
+
codeep3?: string;
|
|
32
|
+
codeep4?: string;
|
|
33
|
+
codeep5?: string;
|
|
34
|
+
denestructura?: string;
|
|
35
|
+
denominacion5?: string;
|
|
36
|
+
denominacion3?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface ICuentasSpSc {
|
|
39
|
+
codcencos: string;
|
|
40
|
+
codigoftefin: string;
|
|
41
|
+
coduniadm: string;
|
|
42
|
+
denominacion: string;
|
|
43
|
+
estructura: string;
|
|
44
|
+
cuentacontable: string;
|
|
45
|
+
cuentapresupuestaria: string;
|
|
46
|
+
estcla: string;
|
|
47
|
+
denestcla: string;
|
|
48
|
+
tipo: string;
|
|
11
49
|
}
|
|
@@ -62,4 +62,12 @@ export interface ICargoAdicional {
|
|
|
62
62
|
id_ep4: string;
|
|
63
63
|
id_ep5: string;
|
|
64
64
|
dencuenta: string;
|
|
65
|
+
id_uniadm: string;
|
|
66
|
+
codcencos: string;
|
|
67
|
+
codfuefin: string;
|
|
68
|
+
coduniadm?: string;
|
|
69
|
+
denuniadm?: string;
|
|
70
|
+
denfuefin?: string;
|
|
71
|
+
codigoftefin?: string;
|
|
72
|
+
dencencos?: string;
|
|
65
73
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MBasicModel } from '../basic-model.model';
|
|
2
|
-
import { IUnitAdministrative } from '../../interfaces/Presupuesto';
|
|
2
|
+
import { ICuentasSpSc, IEstructuras, IUnitAdministrative } from '../../interfaces/Presupuesto';
|
|
3
|
+
import { MFuenteFinanciamiento } from './fuenteFinanciamiento.model';
|
|
3
4
|
export declare class MAdministrativeUnit extends MBasicModel {
|
|
4
5
|
idEmpresa: number;
|
|
5
6
|
idEnterprise: number;
|
|
@@ -10,7 +11,46 @@ export declare class MAdministrativeUnit extends MBasicModel {
|
|
|
10
11
|
centroCosto: string;
|
|
11
12
|
id: number;
|
|
12
13
|
denominacionUnidadCentral: string;
|
|
13
|
-
estructuras:
|
|
14
|
+
estructuras: MEstructuras[];
|
|
14
15
|
constructor(unidad?: IUnitAdministrative);
|
|
15
16
|
dataInterface(): IUnitAdministrative;
|
|
16
17
|
}
|
|
18
|
+
export declare class MEstructuras extends MBasicModel {
|
|
19
|
+
cuentaContable: string;
|
|
20
|
+
cuentaPresupuestaria: string;
|
|
21
|
+
denominacion: string;
|
|
22
|
+
estructura: string;
|
|
23
|
+
idEp1: number;
|
|
24
|
+
idEp2: number;
|
|
25
|
+
idEp3: number;
|
|
26
|
+
idEp4: number;
|
|
27
|
+
idEp5: number;
|
|
28
|
+
monto: number;
|
|
29
|
+
estatus: string;
|
|
30
|
+
codigoEep1: string;
|
|
31
|
+
codigoEep2: string;
|
|
32
|
+
codigoEep3: string;
|
|
33
|
+
codigoEep4: string;
|
|
34
|
+
codigoEep5: string;
|
|
35
|
+
denominacionEstructura: string;
|
|
36
|
+
denominacion5: string;
|
|
37
|
+
denominacion3: string;
|
|
38
|
+
idDtUni: number;
|
|
39
|
+
idUnidadAdministrativa: number;
|
|
40
|
+
fuentes: MFuenteFinanciamiento[];
|
|
41
|
+
constructor(dt?: IEstructuras);
|
|
42
|
+
dataInterface(): IEstructuras;
|
|
43
|
+
}
|
|
44
|
+
export declare class MCuentasSpSC extends MBasicModel {
|
|
45
|
+
codioCentroCosto: string;
|
|
46
|
+
codigoFFMostrar: string;
|
|
47
|
+
codigoUnidadAdministradora: string;
|
|
48
|
+
denominacionCuenta: string;
|
|
49
|
+
estructura: string;
|
|
50
|
+
cuentaContable: string;
|
|
51
|
+
cuentaPresupuestaria: string;
|
|
52
|
+
estatusClasificacion: string;
|
|
53
|
+
denominacionEstatusClasificacion: string;
|
|
54
|
+
tipo: string;
|
|
55
|
+
constructor(dt: ICuentasSpSc);
|
|
56
|
+
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { IFuenteFinanciamiento } from '../../interfaces/FuenteFinanciamiento';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MFuenteFinanciamiento extends MBasicModel {
|
|
3
4
|
codigoFuenteFinanciamiento: string;
|
|
4
5
|
denominacionFuenteFinanciamiento: string;
|
|
5
6
|
explicacionFuenteFinanciamiento: string;
|
|
6
7
|
idEmpresa: string;
|
|
7
8
|
codigo: string;
|
|
8
|
-
constructor(fuente
|
|
9
|
+
constructor(fuente?: IFuenteFinanciamiento);
|
|
10
|
+
dataInterface(): IFuenteFinanciamiento;
|
|
9
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ICargoAdicional } from "../../interfaces/Tributos";
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from "../basic-model.model";
|
|
3
|
+
export declare class MCargosAdicionales extends MBasicModel {
|
|
3
4
|
isNew: boolean;
|
|
4
5
|
error: boolean;
|
|
5
6
|
idEmpresa: number;
|
|
@@ -17,6 +18,14 @@ export declare class MCargosAdicionales {
|
|
|
17
18
|
idEp4: number;
|
|
18
19
|
idEp5: number;
|
|
19
20
|
denominacionCuenta: string;
|
|
21
|
+
idUnidadOrganizativa: number;
|
|
22
|
+
codigoUnidadOrganizativa: string;
|
|
23
|
+
denominacionUnidadOrganizativa: string;
|
|
24
|
+
codigoCentroCosto: string;
|
|
25
|
+
denominacionCentroCosto: string;
|
|
26
|
+
codigoFuenteFinanciamiento: number;
|
|
27
|
+
codigoFuenteFinanciamientoMostrar: string;
|
|
28
|
+
denominacionFuenteFinanciamiento: string;
|
|
20
29
|
constructor(charge?: ICargoAdicional);
|
|
21
30
|
dataInterface(): ICargoAdicional;
|
|
22
31
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export { MConceptosCXP } from './lib/core/models/CXP/MConceptosCXP.model';
|
|
|
15
15
|
export { MCuentaPresupuesto } from './lib/core/models/SPG/cuentaPresupuesto.model';
|
|
16
16
|
export { MFuenteFinanciamiento } from './lib/core/models/SPG/fuenteFinanciamiento.model';
|
|
17
17
|
export { MCuentaEgresos } from './lib/core/models/SPG/expensiveAccount.model';
|
|
18
|
-
export { MAdministrativeUnit } from './lib/core/models/SPG/administrativeUnit.model';
|
|
18
|
+
export { MAdministrativeUnit, MCuentasSpSC, MEstructuras } from './lib/core/models/SPG/administrativeUnit.model';
|
|
19
19
|
export { MComprobantePresupuestarioIngresos, MComprobantePresupuestarioEgresos } from './lib/core/models/SPG/comprobantePresupuestario.model';
|
|
20
20
|
export { MEstructuraPresupuestariaOne, MEstructuraPresupuestariaTwo, MEstructuraPresupuestariaFive, MEstructuraPresupuestariaThree, MEstructuraPresupuestariaFour, MEstructuraPresupuestariaFiveComplete, MAllStructure } from './lib/core/models/SPG/estructuraPresupuestaria.model';
|
|
21
21
|
export { MClasification } from './lib/core/models/RPC/clasification.model';
|
|
@@ -134,7 +134,7 @@ export { ISpecialty } from './lib/core/interfaces/Especialidad';
|
|
|
134
134
|
export { IDocument } from './lib/core/interfaces/Documento';
|
|
135
135
|
export { IClasification } from './lib/core/interfaces/Clasificacion';
|
|
136
136
|
export { ICountry, IMunicipality, IParish, IState, ICity } from './lib/core/interfaces/Lugares';
|
|
137
|
-
export { IBank, IBankAccountType, ISigecofBank, IAgencia, ICuentaBanco, ICartaOrden, IMovimientoBanco, IConfigBanco, IConceptoMovimiento, IControlDocumento, IConciliacion, IChequera,
|
|
137
|
+
export { IBank, IBankAccountType, ISigecofBank, IAgencia, ICuentaBanco, ICartaOrden, IMovimientoBanco, IConfigBanco, IConceptoMovimiento, IControlDocumento, IConciliacion, IChequera, IDetalle, IDivisas, IMovimiento, ICatalogoIntegracion, IDetalleConciliacion, IDetalleMovimiento, IDetalleSpgSpi, IDetallesContable, IIntegracion, IMovimientoBancoConciliar, ISelect2, ITipoFondoAvance, ITrasferencia, IVoucherMedidas } from './lib/core/interfaces/Banco';
|
|
138
138
|
export { IConfigurationRPC } from './lib/core/interfaces/ConfiguracionRPC';
|
|
139
139
|
export { IServiceType, IService, IClause, IConfigSOC, IClauseModality, IServiceCharges } from './lib/core/interfaces/Servicios';
|
|
140
140
|
export { IDeductionType, ICargo, IDeduction, IConceptoRetencion, ICargoAdicional, } from './lib/core/interfaces/Tributos';
|
|
@@ -142,7 +142,7 @@ export { customPaginator } from './lib/shared/material/customPaginator';
|
|
|
142
142
|
export { ICuentaIngresos } from './lib/core/interfaces/CuentaIngreso';
|
|
143
143
|
export { IConfigSSS, IUserDetail, IGroup, IComponent, IRights, IUserPermit, ILog, } from './lib/core/interfaces/Seguridad';
|
|
144
144
|
export { ISistema, IUsuarioSistema } from './lib/core/interfaces/Sistema';
|
|
145
|
-
export { IUnitAdministrative } from './lib/core/interfaces/Presupuesto';
|
|
145
|
+
export { IUnitAdministrative, ICuentasSpSc, IEstructuras } from './lib/core/interfaces/Presupuesto';
|
|
146
146
|
export { IServiceCharge, IConceptosCXP, ITipoDocumentoCXP } from './lib/core/interfaces/CuentasPorPagar';
|
|
147
147
|
export { IAsignacionCargo, IConceptos, IConceptosPersonalNomina, IConceptosVacaciones, IConstanteNomina, IConstantePersonaNomina, IHojaTiempo, INomina, IPeriodoNomina, IPersonalNomina, IPrimasConcepto, IEncargaduria, ICodigoUnicoRac, INominaSimple, Reporte, SalarioNormal, Signo, TipoCestaTicket, } from './lib/core/interfaces/Nomina';
|
|
148
148
|
export { IEmpresa, IEnterprise, IPrefijo, IProcedencia, ITasaCambio } from './lib/core/interfaces/Configuracion';
|