sigesp 1.1.51-20250612 → 1.1.55-20250722
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/Nomina.mjs +1 -1
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MConceptosNomina.model.mjs +17 -1
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +8 -1
- package/fesm2015/sigesp.mjs +23 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +23 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +6 -0
- package/lib/core/interfaces/Presupuesto.d.ts +4 -0
- package/lib/core/models/SNO/MConceptosNomina.model.d.ts +6 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +3 -0
- package/package.json +1 -1
|
@@ -383,6 +383,10 @@ export interface IConceptos {
|
|
|
383
383
|
id_concxpapo: string;
|
|
384
384
|
id_tipodocumento: string;
|
|
385
385
|
conaponom: string;
|
|
386
|
+
id_concxpded: string;
|
|
387
|
+
id_tipodocumento_ded: string;
|
|
388
|
+
condednom: string;
|
|
389
|
+
agraporet: string;
|
|
386
390
|
denconcxp?: string;
|
|
387
391
|
dentipden?: string;
|
|
388
392
|
coduniadm?: string;
|
|
@@ -393,6 +397,8 @@ export interface IConceptos {
|
|
|
393
397
|
codcencos?: string;
|
|
394
398
|
dencencos?: string;
|
|
395
399
|
denctapre?: string;
|
|
400
|
+
dentipded?: string;
|
|
401
|
+
denconcxpded?: string;
|
|
396
402
|
}
|
|
397
403
|
export interface IConceptosPersonalNomina {
|
|
398
404
|
id_enterprise: string;
|
|
@@ -20,8 +20,12 @@ export interface IUnitAdministrative {
|
|
|
20
20
|
denuniadm: string;
|
|
21
21
|
estemireq: string;
|
|
22
22
|
id_uniadm: string;
|
|
23
|
+
id_personal: string;
|
|
23
24
|
denuac?: string;
|
|
24
25
|
codigouac?: string;
|
|
26
|
+
cedper?: string;
|
|
27
|
+
apeper?: string;
|
|
28
|
+
nomper?: string;
|
|
25
29
|
estructuras: IEstructuras[];
|
|
26
30
|
centros: ICentroCosto[];
|
|
27
31
|
}
|
|
@@ -72,6 +72,12 @@ export declare class MConceptosNomina extends MBasicModel {
|
|
|
72
72
|
contabilizacionAporteNomina: string;
|
|
73
73
|
idTipoDocumentoAporte: number;
|
|
74
74
|
denominacionTipoDocumentoAporte: string;
|
|
75
|
+
idConceptoClasificacionParaDeduccion: number;
|
|
76
|
+
idTipoDocumentoDeduccion: number;
|
|
77
|
+
denominacionConceptoClasificacionParaDeduccion: string;
|
|
78
|
+
denominacionTipoDocumentoDeduccion: string;
|
|
79
|
+
contabilizacionDeduccionNomina: string;
|
|
80
|
+
agruparAporteRetencion: boolean;
|
|
75
81
|
constructor(e?: IConceptos);
|
|
76
82
|
dataInterface(): IConceptos;
|
|
77
83
|
denominacionSigno(sig: string): string;
|
|
@@ -13,6 +13,9 @@ export declare class MAdministrativeUnit extends MBasicModel {
|
|
|
13
13
|
id: number;
|
|
14
14
|
denominacionUnidadCentral: string;
|
|
15
15
|
codigoUnidadCentral: string;
|
|
16
|
+
idPersonal: number;
|
|
17
|
+
cedula: string;
|
|
18
|
+
nombre: string;
|
|
16
19
|
estructuras: MEstructuras[];
|
|
17
20
|
centroCosto: MCentroCosto[];
|
|
18
21
|
constructor(unidad?: IUnitAdministrative);
|