sigesp 0.9.62-20230912 → 0.9.64-20230913
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 +73 -0
- 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/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +34 -1
- package/esm2015/lib/core/models/SNO/MCargosPersonal.model.js +8 -1
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +21 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +5 -1
- package/esm2015/lib/core/models/SNO/MPersonalJubilado.model.js +10 -1
- package/fesm2015/sigesp.js +73 -0
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +31 -5
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +10 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +3 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +8 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +2 -0
- package/lib/core/models/SNO/MPersonalJubilado.model.d.ts +3 -0
- package/package.json +1 -1
|
@@ -125,6 +125,14 @@ export interface IConfiguracionSNO {
|
|
|
125
125
|
regasiinc: string;
|
|
126
126
|
manindmod: string;
|
|
127
127
|
digcodcon: string;
|
|
128
|
+
codpai: string;
|
|
129
|
+
codest: string;
|
|
130
|
+
codmun: string;
|
|
131
|
+
codpar: string;
|
|
132
|
+
despai?: string;
|
|
133
|
+
desest?: string;
|
|
134
|
+
desmun?: string;
|
|
135
|
+
despar?: string;
|
|
128
136
|
}
|
|
129
137
|
export interface IIncidencia {
|
|
130
138
|
valor: string;
|
|
@@ -243,6 +251,8 @@ export interface IPersonal {
|
|
|
243
251
|
denplanhor?: string;
|
|
244
252
|
horini?: string;
|
|
245
253
|
horfin?: string;
|
|
254
|
+
codclaper?: string;
|
|
255
|
+
denclaper?: string;
|
|
246
256
|
}
|
|
247
257
|
export interface ICambioEstatusPersonal {
|
|
248
258
|
id_enterprise: string;
|
|
@@ -279,6 +289,7 @@ export interface ICargosPersonal {
|
|
|
279
289
|
codpas: string;
|
|
280
290
|
id_ubifis: string;
|
|
281
291
|
id_personalcargo: string;
|
|
292
|
+
id_claper: string;
|
|
282
293
|
codubifis?: string;
|
|
283
294
|
denubifis?: string;
|
|
284
295
|
codtipper?: string;
|
|
@@ -299,6 +310,8 @@ export interface ICargosPersonal {
|
|
|
299
310
|
dencladec?: string;
|
|
300
311
|
detalles_organigrama: ICargoOrganigrama[];
|
|
301
312
|
detalles_nomina?: INominaSimple[];
|
|
313
|
+
codclaper?: string;
|
|
314
|
+
denclaper?: string;
|
|
302
315
|
}
|
|
303
316
|
export interface IFamiliares {
|
|
304
317
|
id_enterprise: string;
|
|
@@ -453,16 +466,26 @@ export interface IBenefiaciario {
|
|
|
453
466
|
tribunal: string;
|
|
454
467
|
fecres: string;
|
|
455
468
|
numres: string;
|
|
456
|
-
cedpro
|
|
457
|
-
nompro
|
|
458
|
-
nomfam
|
|
469
|
+
cedpro: string;
|
|
470
|
+
nompro: string;
|
|
471
|
+
nomfam: string;
|
|
472
|
+
dirpro: string;
|
|
473
|
+
telpro: string;
|
|
474
|
+
codpai: string;
|
|
475
|
+
codest: string;
|
|
476
|
+
codmun: string;
|
|
477
|
+
codpar: string;
|
|
478
|
+
despai?: string;
|
|
479
|
+
desest?: string;
|
|
480
|
+
desmun?: string;
|
|
481
|
+
despar?: string;
|
|
482
|
+
nomtipcta?: string;
|
|
483
|
+
nomban?: string;
|
|
459
484
|
apefam?: string;
|
|
460
485
|
cedfam?: string;
|
|
461
486
|
nexfam?: string;
|
|
462
487
|
dirfam?: string;
|
|
463
488
|
telfam?: string;
|
|
464
|
-
nomtipcta?: string;
|
|
465
|
-
nomban?: string;
|
|
466
489
|
}
|
|
467
490
|
export interface IVacacionesPersonal {
|
|
468
491
|
id_enterprise: string;
|
|
@@ -1116,6 +1139,9 @@ export interface IPersonalJubilado {
|
|
|
1116
1139
|
ultrem: string;
|
|
1117
1140
|
fecvida: string;
|
|
1118
1141
|
tipjub: string;
|
|
1142
|
+
fecres: string;
|
|
1143
|
+
numres: string;
|
|
1144
|
+
pordis: string;
|
|
1119
1145
|
}
|
|
1120
1146
|
export interface IFideicomisoInteres {
|
|
1121
1147
|
id_enterprise: string;
|
|
@@ -29,6 +29,16 @@ export declare class MBeneficiario extends MBasicModel {
|
|
|
29
29
|
tribunal: string;
|
|
30
30
|
fechaResolucion: string;
|
|
31
31
|
numeroResolucion: string;
|
|
32
|
+
direccionProveedor: string;
|
|
33
|
+
telelefonoProveedor: string;
|
|
34
|
+
codigoPais: string;
|
|
35
|
+
codigoEstado: string;
|
|
36
|
+
codigoMunicipio: string;
|
|
37
|
+
codigoParroquia: string;
|
|
38
|
+
descripcionPais: string;
|
|
39
|
+
descripcionEstado: string;
|
|
40
|
+
descripcionMunicipio: string;
|
|
41
|
+
descripcionParroquia: string;
|
|
32
42
|
constructor(e?: IBenefiaciario);
|
|
33
43
|
dataInterface(): IBenefiaciario;
|
|
34
44
|
}
|
|
@@ -30,6 +30,9 @@ export declare class MCargosPersonal extends MBasicModel {
|
|
|
30
30
|
idClasificadorDocente: number;
|
|
31
31
|
codigoClasificador: string;
|
|
32
32
|
denominacionClasificador: string;
|
|
33
|
+
idClasificadorPersonal: number;
|
|
34
|
+
codigoClasificadorPersonal: string;
|
|
35
|
+
denominacionClasificadorPersonal: string;
|
|
33
36
|
detallesOrganigrama: MCargoEstructuraOrganizativa[];
|
|
34
37
|
detallesNomina: MNominaSimple[];
|
|
35
38
|
constructor(p?: ICargosPersonal);
|
|
@@ -127,6 +127,14 @@ export declare class MConfiguracionSNO extends MBasicModel {
|
|
|
127
127
|
manejoIndependienteModulo: number;
|
|
128
128
|
digitosCodigoConcepto: number;
|
|
129
129
|
segmentarPersonal: number;
|
|
130
|
+
codigoPais: string;
|
|
131
|
+
codigoEstado: string;
|
|
132
|
+
codigoMunicipio: string;
|
|
133
|
+
codigoParroquia: string;
|
|
134
|
+
descripcionPais: string;
|
|
135
|
+
descripcionEstado: string;
|
|
136
|
+
descripcionMunicipio: string;
|
|
137
|
+
descripcionParroquia: string;
|
|
130
138
|
constructor(I?: IConfiguracionSNO);
|
|
131
139
|
dataInterface(): IConfiguracionSNO;
|
|
132
140
|
}
|
|
@@ -115,6 +115,8 @@ export declare class MPersonal extends MBasicModel {
|
|
|
115
115
|
fechaActaDefuncion: string;
|
|
116
116
|
numeroActaDefuncion: string;
|
|
117
117
|
denominacionSituacion: string;
|
|
118
|
+
codigoClasificadorPersonal: string;
|
|
119
|
+
denominacionClasificadorPersonal: string;
|
|
118
120
|
constructor(p?: IPersonal);
|
|
119
121
|
dataInterface(): IPersonal;
|
|
120
122
|
}
|
|
@@ -12,6 +12,9 @@ export declare class MPersonalJubilado extends MBasicModel {
|
|
|
12
12
|
ultimaRemuneracion: number;
|
|
13
13
|
fechaFeVida: string;
|
|
14
14
|
tipoJubilacion: number;
|
|
15
|
+
fechaResolucion: string;
|
|
16
|
+
numeroResolucion: string;
|
|
17
|
+
porcentajeDiscapacidad: string;
|
|
15
18
|
constructor(e?: IPersonalJubilado);
|
|
16
19
|
dataInterface(): IPersonalJubilado;
|
|
17
20
|
}
|