sigesp 0.9.86-20231105 → 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 +315 -126
- 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/Banco.js +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 +84 -0
- package/esm2015/lib/sigesp.service.js +21 -4
- package/esm2015/public-api.js +3 -2
- package/fesm2015/sigesp.js +299 -124
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Banco.d.ts +3 -0
- package/lib/core/interfaces/Presupuesto.d.ts +38 -0
- package/lib/core/interfaces/Tributos.d.ts +25 -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 +31 -0
- package/lib/sigesp.service.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -4
- 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
|
}
|
|
@@ -46,3 +46,28 @@ export interface IConceptoRetencion {
|
|
|
46
46
|
desact: string;
|
|
47
47
|
obsconret: string;
|
|
48
48
|
}
|
|
49
|
+
export interface ICargoAdicional {
|
|
50
|
+
id_empresa: string;
|
|
51
|
+
id_cargoadi: string;
|
|
52
|
+
codcar: string;
|
|
53
|
+
dencar: string;
|
|
54
|
+
codestpre: string;
|
|
55
|
+
porcar: string;
|
|
56
|
+
formula: string;
|
|
57
|
+
tipo: string;
|
|
58
|
+
cuenta: string;
|
|
59
|
+
id_ep1: string;
|
|
60
|
+
id_ep2: string;
|
|
61
|
+
id_ep3: string;
|
|
62
|
+
id_ep4: string;
|
|
63
|
+
id_ep5: string;
|
|
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;
|
|
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
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ICargoAdicional } from "../../interfaces/Tributos";
|
|
2
|
+
import { MBasicModel } from "../basic-model.model";
|
|
3
|
+
export declare class MCargosAdicionales extends MBasicModel {
|
|
4
|
+
isNew: boolean;
|
|
5
|
+
error: boolean;
|
|
6
|
+
idEmpresa: number;
|
|
7
|
+
id: number;
|
|
8
|
+
codigo: string;
|
|
9
|
+
denominacion: string;
|
|
10
|
+
codigoEstruraPresupuestaria: string;
|
|
11
|
+
porcentaje: number;
|
|
12
|
+
formula: string;
|
|
13
|
+
tipo: number;
|
|
14
|
+
cuenta: string;
|
|
15
|
+
idEp1: number;
|
|
16
|
+
idEp2: number;
|
|
17
|
+
idEp3: number;
|
|
18
|
+
idEp4: number;
|
|
19
|
+
idEp5: number;
|
|
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;
|
|
29
|
+
constructor(charge?: ICargoAdicional);
|
|
30
|
+
dataInterface(): ICargoAdicional;
|
|
31
|
+
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -1026,6 +1026,15 @@ export declare class SigespService {
|
|
|
1026
1026
|
* @date 23-11-2022
|
|
1027
1027
|
*/
|
|
1028
1028
|
getDepositType(procede: string, idArticulo: number, idUsuario?: number): Observable<any>;
|
|
1029
|
+
/**
|
|
1030
|
+
* @description Obtiene Cargos Adicionales *
|
|
1031
|
+
* @param tipo : one,default
|
|
1032
|
+
* @param id : id del cargo
|
|
1033
|
+
* @returns
|
|
1034
|
+
* @author Dimaly Crespo
|
|
1035
|
+
* @date 13-11-2022
|
|
1036
|
+
*/
|
|
1037
|
+
getCargosAdicionales(tipo: string, id?: number): Observable<any>;
|
|
1029
1038
|
}
|
|
1030
1039
|
interface filtroCuentasPresupuesto {
|
|
1031
1040
|
tipo?: 'E' | 'R';
|
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';
|
|
@@ -43,6 +43,7 @@ export { MServiceCharge } from './lib/core/models/SOC/serviceCharge.model';
|
|
|
43
43
|
export { MUnidadTributaria } from './lib/core/models/STB/unidadTributaria.model';
|
|
44
44
|
export { MDeduction, MConceptoRetencion } from './lib/core/models/STB/deduction.model';
|
|
45
45
|
export { MDeductionType } from './lib/core/models/STB/deductionType.model';
|
|
46
|
+
export { MCargosAdicionales, } from './lib/core/models/STB/MCargosAdicionales';
|
|
46
47
|
export { MMoneda, MMonedaConfig, } from './lib/core/models/CFG/moneda.model';
|
|
47
48
|
export { MClient } from './lib/core/models/SFV/MClienteModel';
|
|
48
49
|
export { MUsuario } from './lib/core/models/SSS/user.model';
|
|
@@ -133,15 +134,15 @@ export { ISpecialty } from './lib/core/interfaces/Especialidad';
|
|
|
133
134
|
export { IDocument } from './lib/core/interfaces/Documento';
|
|
134
135
|
export { IClasification } from './lib/core/interfaces/Clasificacion';
|
|
135
136
|
export { ICountry, IMunicipality, IParish, IState, ICity } from './lib/core/interfaces/Lugares';
|
|
136
|
-
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';
|
|
137
138
|
export { IConfigurationRPC } from './lib/core/interfaces/ConfiguracionRPC';
|
|
138
139
|
export { IServiceType, IService, IClause, IConfigSOC, IClauseModality, IServiceCharges } from './lib/core/interfaces/Servicios';
|
|
139
|
-
export { IDeductionType, ICargo, IDeduction, IConceptoRetencion, } from './lib/core/interfaces/Tributos';
|
|
140
|
+
export { IDeductionType, ICargo, IDeduction, IConceptoRetencion, ICargoAdicional, } from './lib/core/interfaces/Tributos';
|
|
140
141
|
export { customPaginator } from './lib/shared/material/customPaginator';
|
|
141
142
|
export { ICuentaIngresos } from './lib/core/interfaces/CuentaIngreso';
|
|
142
143
|
export { IConfigSSS, IUserDetail, IGroup, IComponent, IRights, IUserPermit, ILog, } from './lib/core/interfaces/Seguridad';
|
|
143
144
|
export { ISistema, IUsuarioSistema } from './lib/core/interfaces/Sistema';
|
|
144
|
-
export { IUnitAdministrative } from './lib/core/interfaces/Presupuesto';
|
|
145
|
+
export { IUnitAdministrative, ICuentasSpSc, IEstructuras } from './lib/core/interfaces/Presupuesto';
|
|
145
146
|
export { IServiceCharge, IConceptosCXP, ITipoDocumentoCXP } from './lib/core/interfaces/CuentasPorPagar';
|
|
146
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';
|
|
147
148
|
export { IEmpresa, IEnterprise, IPrefijo, IProcedencia, ITasaCambio } from './lib/core/interfaces/Configuracion';
|