sigesp 0.8.74-20220504 → 0.8.77-20220510
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 +1697 -99
- 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/Nomina.js +1 -1
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MArchivosTxt.model.js +38 -0
- package/esm2015/lib/core/models/SNO/MAsignacionCargo.model.js +6 -1
- package/esm2015/lib/core/models/SNO/MAspectoEvaluacion.model.js +48 -1
- package/esm2015/lib/core/models/SNO/MConcursante.model.js +174 -1
- package/esm2015/lib/core/models/SNO/MConcurso.model.js +176 -1
- package/esm2015/lib/core/models/SNO/MEstructuraOrganizativa.model.js +58 -1
- package/esm2015/lib/core/models/SNO/MFamiliares.model.js +7 -1
- package/esm2015/lib/core/models/SNO/MFideicomiso.model.js +1 -1
- package/esm2015/lib/core/models/SNO/MHojaTiempo.model.js +45 -1
- package/esm2015/lib/core/models/SNO/MImpuestoSobreRenta.model.js +70 -0
- package/esm2015/lib/core/models/SNO/MMetodoBanco.model.js +99 -0
- package/esm2015/lib/core/models/SNO/MNominaSimple.model.js +21 -6
- package/esm2015/lib/core/models/SNO/MPeriodosPlan.model.js +46 -0
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +90 -1
- package/esm2015/lib/core/models/SNO/MPrestamo.model.js +212 -0
- package/esm2015/lib/core/models/SNO/MPrimaGrados.model.js +1 -3
- package/esm2015/lib/core/models/SNO/MReportesRRHH.js +402 -0
- package/esm2015/lib/core/models/SNO/MRequisitosConcursante.model.js +2 -2
- package/esm2015/lib/core/models/SNO/MVacacionesPersonal.model.js +4 -1
- package/esm2015/public-api.js +13 -7
- package/esm2015/sigesp.js +11 -11
- package/fesm2015/sigesp.js +1559 -88
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +2 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +282 -11
- package/lib/core/models/SNO/MArchivosTxt.model.d.ts +14 -0
- package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +2 -0
- package/lib/core/models/SNO/MAspectoEvaluacion.model.d.ts +16 -1
- package/lib/core/models/SNO/MConcursante.model.d.ts +56 -1
- package/lib/core/models/SNO/MConcurso.model.d.ts +58 -1
- package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +19 -0
- package/lib/core/models/SNO/MFamiliares.model.d.ts +1 -0
- package/lib/core/models/SNO/MHojaTiempo.model.d.ts +14 -0
- package/lib/core/models/SNO/MImpuestoSobreRenta.model.d.ts +24 -0
- package/lib/core/models/SNO/MMetodoBanco.model.d.ts +33 -0
- package/lib/core/models/SNO/MNominaSimple.model.d.ts +7 -3
- package/lib/core/models/SNO/MPeriodosPlan.model.d.ts +16 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +31 -1
- package/lib/core/models/SNO/MPrestamo.model.d.ts +66 -0
- package/lib/core/models/SNO/MPrimaGrados.model.d.ts +0 -1
- package/lib/core/models/SNO/MReportesRRHH.d.ts +130 -0
- package/lib/core/models/SNO/MRequisitosConcursante.model.d.ts +1 -1
- package/lib/core/models/SNO/MVacacionesPersonal.model.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +13 -7
- package/sigesp.d.ts +26 -25
- package/sigesp.metadata.json +1 -1
|
@@ -301,6 +301,7 @@ export interface IFamiliares {
|
|
|
301
301
|
codfam: string;
|
|
302
302
|
dirfam: string;
|
|
303
303
|
telfam: string;
|
|
304
|
+
hijodiscapacitado: string;
|
|
304
305
|
}
|
|
305
306
|
export interface IEstudioRealizado {
|
|
306
307
|
id_empresa: string;
|
|
@@ -467,6 +468,7 @@ export interface IVacacionesPersonal {
|
|
|
467
468
|
codusu: string;
|
|
468
469
|
diavaccal: string;
|
|
469
470
|
diahab: string;
|
|
471
|
+
profueper: string;
|
|
470
472
|
}
|
|
471
473
|
export interface IAnticipoPrestacion {
|
|
472
474
|
id_empresa: number;
|
|
@@ -561,17 +563,6 @@ export interface ICampos {
|
|
|
561
563
|
valor: string;
|
|
562
564
|
denominacion: string;
|
|
563
565
|
}
|
|
564
|
-
export interface IExperienciaLaboral {
|
|
565
|
-
id_empresa: string;
|
|
566
|
-
id_concurso: string;
|
|
567
|
-
id_concursante: string;
|
|
568
|
-
id_trabajocon: string;
|
|
569
|
-
codtra: string;
|
|
570
|
-
emptraper: string;
|
|
571
|
-
cartraant: string;
|
|
572
|
-
fecingtraant: string;
|
|
573
|
-
fecrettraant: string;
|
|
574
|
-
}
|
|
575
566
|
export interface IFormacionAcademica {
|
|
576
567
|
id_empresa: string;
|
|
577
568
|
id_concurso: string;
|
|
@@ -994,6 +985,25 @@ export interface IEstructuraOrganizativa {
|
|
|
994
985
|
id_ep4: string;
|
|
995
986
|
id_ep5: string;
|
|
996
987
|
codpadre: string;
|
|
988
|
+
codpai: string;
|
|
989
|
+
despai: string;
|
|
990
|
+
codest: string;
|
|
991
|
+
desest: string;
|
|
992
|
+
codmun: string;
|
|
993
|
+
desmun: string;
|
|
994
|
+
codpar: string;
|
|
995
|
+
despar: string;
|
|
996
|
+
estmpppe: number;
|
|
997
|
+
ubibolivariana: number;
|
|
998
|
+
ubifrontera: number;
|
|
999
|
+
ubiindigena: number;
|
|
1000
|
+
ubiinsular: number;
|
|
1001
|
+
ubimarginal: number;
|
|
1002
|
+
ubinocturno: number;
|
|
1003
|
+
ubiplanta: number;
|
|
1004
|
+
ubirobinson: number;
|
|
1005
|
+
ubizona: number;
|
|
1006
|
+
ubinoaplica: number;
|
|
997
1007
|
}
|
|
998
1008
|
export interface INivel {
|
|
999
1009
|
value: number;
|
|
@@ -1167,3 +1177,264 @@ export interface ITrabajosConcursantes {
|
|
|
1167
1177
|
fecingtraant: string;
|
|
1168
1178
|
fecrettraant: string;
|
|
1169
1179
|
}
|
|
1180
|
+
export interface IEstudiosConcursantes {
|
|
1181
|
+
id_empresa: string;
|
|
1182
|
+
id_concurso: string;
|
|
1183
|
+
id_concursante: string;
|
|
1184
|
+
id_estudiocon: string;
|
|
1185
|
+
codestrea: string;
|
|
1186
|
+
insestper: string;
|
|
1187
|
+
desestper: string;
|
|
1188
|
+
fecinireaest: string;
|
|
1189
|
+
fecfinestrea: string;
|
|
1190
|
+
titestper: string;
|
|
1191
|
+
anoaprestper: string;
|
|
1192
|
+
horestrea: string;
|
|
1193
|
+
}
|
|
1194
|
+
export interface IExperienciaLaboral {
|
|
1195
|
+
id_empresa: string;
|
|
1196
|
+
id_concurso: string;
|
|
1197
|
+
id_concursante: string;
|
|
1198
|
+
id_trabajocon: string;
|
|
1199
|
+
codtra: string;
|
|
1200
|
+
emptraper: string;
|
|
1201
|
+
cartraant: string;
|
|
1202
|
+
fecingtraant: string;
|
|
1203
|
+
fecrettraant: string;
|
|
1204
|
+
}
|
|
1205
|
+
export interface IFamiliaConcursante {
|
|
1206
|
+
id_empresa: string;
|
|
1207
|
+
id_concurso: string;
|
|
1208
|
+
id_concursante: string;
|
|
1209
|
+
id_familiacon: string;
|
|
1210
|
+
codfam: string;
|
|
1211
|
+
cedfam: string;
|
|
1212
|
+
nomfam: string;
|
|
1213
|
+
apefam: string;
|
|
1214
|
+
sexfam: string;
|
|
1215
|
+
nexfam: string;
|
|
1216
|
+
fecnacfam: string;
|
|
1217
|
+
}
|
|
1218
|
+
export interface IPeriodosPlan {
|
|
1219
|
+
id_empresa: string;
|
|
1220
|
+
id_planhor: string;
|
|
1221
|
+
codperplan: string;
|
|
1222
|
+
denperplan: string;
|
|
1223
|
+
fecperplan: string;
|
|
1224
|
+
id_periodo: string;
|
|
1225
|
+
codperi: string;
|
|
1226
|
+
id_hora: string;
|
|
1227
|
+
incidencias: string;
|
|
1228
|
+
id_detalle: string;
|
|
1229
|
+
}
|
|
1230
|
+
export interface IPrestamo {
|
|
1231
|
+
id_empresa: number;
|
|
1232
|
+
id_personal: number;
|
|
1233
|
+
id_prestamo: number;
|
|
1234
|
+
numpre: number;
|
|
1235
|
+
id_tipoprestamo: number;
|
|
1236
|
+
id_nomina: number;
|
|
1237
|
+
id_concepto: number;
|
|
1238
|
+
monpre: number;
|
|
1239
|
+
numcuopre: number;
|
|
1240
|
+
id_periodo: number;
|
|
1241
|
+
monamopre: number;
|
|
1242
|
+
estpre: number;
|
|
1243
|
+
fecpre: string;
|
|
1244
|
+
obsrecpre: string;
|
|
1245
|
+
obssuspre: string;
|
|
1246
|
+
tipcuopre: string;
|
|
1247
|
+
dennom: string;
|
|
1248
|
+
codnom: string;
|
|
1249
|
+
numpernom: number;
|
|
1250
|
+
destippre: string;
|
|
1251
|
+
codtippre: string;
|
|
1252
|
+
codconc: string;
|
|
1253
|
+
nomcon: string;
|
|
1254
|
+
codperi: string;
|
|
1255
|
+
fechasper: string;
|
|
1256
|
+
periodos: IPrestamoPeriodo[];
|
|
1257
|
+
amortizacion: IPrestamoAmortizacion[];
|
|
1258
|
+
}
|
|
1259
|
+
export interface IPrestamoPeriodo {
|
|
1260
|
+
id_empresa: number;
|
|
1261
|
+
id_personal: number;
|
|
1262
|
+
id_prestamo: number;
|
|
1263
|
+
numcuo: number;
|
|
1264
|
+
id_periodocob: number;
|
|
1265
|
+
feciniper: string;
|
|
1266
|
+
fecfinper: string;
|
|
1267
|
+
moncuo: number;
|
|
1268
|
+
estcuo: number;
|
|
1269
|
+
codperipre: string;
|
|
1270
|
+
}
|
|
1271
|
+
export interface IPrestamoAmortizacion {
|
|
1272
|
+
id_empresa: number;
|
|
1273
|
+
id_personal: number;
|
|
1274
|
+
id_prestamo: number;
|
|
1275
|
+
numamo: number;
|
|
1276
|
+
id_periodoamo: number;
|
|
1277
|
+
fecamo: string;
|
|
1278
|
+
monamo: number;
|
|
1279
|
+
desamo: string;
|
|
1280
|
+
}
|
|
1281
|
+
export interface IPrevioEvaluacionDt {
|
|
1282
|
+
id_empresa: string;
|
|
1283
|
+
id_previo: string;
|
|
1284
|
+
id_tipoeval: string;
|
|
1285
|
+
id_aspecto: string;
|
|
1286
|
+
id_item: string;
|
|
1287
|
+
codite: string;
|
|
1288
|
+
denite: string;
|
|
1289
|
+
puntos: string;
|
|
1290
|
+
valormax: string;
|
|
1291
|
+
id_dt_previo: string;
|
|
1292
|
+
}
|
|
1293
|
+
export interface IPrevioEvaluacion {
|
|
1294
|
+
id_empresa: string;
|
|
1295
|
+
id_previo: string;
|
|
1296
|
+
proceso: string;
|
|
1297
|
+
id_concurso: string;
|
|
1298
|
+
codcon: string;
|
|
1299
|
+
dencon: string;
|
|
1300
|
+
id_concursante: string;
|
|
1301
|
+
cedper: string;
|
|
1302
|
+
nomper: string;
|
|
1303
|
+
id_tipoeval: string;
|
|
1304
|
+
codtipeval: string;
|
|
1305
|
+
dentipeval: string;
|
|
1306
|
+
fecha: string;
|
|
1307
|
+
punreqmin: string;
|
|
1308
|
+
usuario: string;
|
|
1309
|
+
hora: string;
|
|
1310
|
+
estatus: string;
|
|
1311
|
+
tipo: string;
|
|
1312
|
+
detalles: IPrevioEvaluacionDt[];
|
|
1313
|
+
}
|
|
1314
|
+
export interface IRListadoPersonal {
|
|
1315
|
+
id_nominaDes: number;
|
|
1316
|
+
id_nominaHas: number;
|
|
1317
|
+
codnomDes: string;
|
|
1318
|
+
codnomHas: string;
|
|
1319
|
+
dennomDes: string;
|
|
1320
|
+
dennomHas: string;
|
|
1321
|
+
id_personalDes: number;
|
|
1322
|
+
id_personalHas: number;
|
|
1323
|
+
codperDes: string;
|
|
1324
|
+
codperHas: string;
|
|
1325
|
+
nomperDes: string;
|
|
1326
|
+
nomperHas: string;
|
|
1327
|
+
estper: number;
|
|
1328
|
+
cauegrper: string;
|
|
1329
|
+
sexper: string;
|
|
1330
|
+
codpai: string;
|
|
1331
|
+
codest: string;
|
|
1332
|
+
codmun: string;
|
|
1333
|
+
codpar: string;
|
|
1334
|
+
despai: string;
|
|
1335
|
+
desest: string;
|
|
1336
|
+
desmun: string;
|
|
1337
|
+
despar: string;
|
|
1338
|
+
staper: string;
|
|
1339
|
+
fechaDes: string;
|
|
1340
|
+
fechaHas: string;
|
|
1341
|
+
orden: string;
|
|
1342
|
+
reporte: string;
|
|
1343
|
+
}
|
|
1344
|
+
export interface IRListadoTipoPersonal {
|
|
1345
|
+
id_ubifis: number;
|
|
1346
|
+
codubifis: string;
|
|
1347
|
+
denubifis: string;
|
|
1348
|
+
codpai: string;
|
|
1349
|
+
despai: string;
|
|
1350
|
+
codest: string;
|
|
1351
|
+
desest: string;
|
|
1352
|
+
codmun: string;
|
|
1353
|
+
desmun: string;
|
|
1354
|
+
codpar: string;
|
|
1355
|
+
despar: string;
|
|
1356
|
+
estper: string;
|
|
1357
|
+
id_organigrama: number;
|
|
1358
|
+
codestorg: string;
|
|
1359
|
+
denestorg: string;
|
|
1360
|
+
reporte: string;
|
|
1361
|
+
orden: string;
|
|
1362
|
+
}
|
|
1363
|
+
export interface IRConsolidadoConceptos {
|
|
1364
|
+
id_nominaDes: number;
|
|
1365
|
+
id_nominaHas: number;
|
|
1366
|
+
codnomDes: string;
|
|
1367
|
+
codnomHas: string;
|
|
1368
|
+
id_personalDes: number;
|
|
1369
|
+
id_personalHas: number;
|
|
1370
|
+
codperDes: string;
|
|
1371
|
+
codperHas: string;
|
|
1372
|
+
ordenDesde: number;
|
|
1373
|
+
ordenHasta: number;
|
|
1374
|
+
id_conceptoDes: number;
|
|
1375
|
+
id_conceptoHas: number;
|
|
1376
|
+
codconcDes: string;
|
|
1377
|
+
codconcHas: string;
|
|
1378
|
+
tipconc: string;
|
|
1379
|
+
id_periodoDes: number;
|
|
1380
|
+
id_periodoHas: number;
|
|
1381
|
+
codperiDes: string;
|
|
1382
|
+
codperiHas: string;
|
|
1383
|
+
anocur: number;
|
|
1384
|
+
orden: string;
|
|
1385
|
+
reporte: string;
|
|
1386
|
+
}
|
|
1387
|
+
export interface IRPeriodo {
|
|
1388
|
+
id_periodo: string;
|
|
1389
|
+
codperi: string;
|
|
1390
|
+
fecdesper: string;
|
|
1391
|
+
fechasper: string;
|
|
1392
|
+
}
|
|
1393
|
+
export interface IRConstanciaTrabajo {
|
|
1394
|
+
id_constancia: number;
|
|
1395
|
+
codconstra: string;
|
|
1396
|
+
plantilla_rtf: string;
|
|
1397
|
+
archivo: string;
|
|
1398
|
+
id_nomina: number;
|
|
1399
|
+
codnom: string;
|
|
1400
|
+
id_personalDes: number;
|
|
1401
|
+
id_personalHas: number;
|
|
1402
|
+
codperDes: string;
|
|
1403
|
+
codperHas: string;
|
|
1404
|
+
orden: any;
|
|
1405
|
+
}
|
|
1406
|
+
export interface IRSindicatos {
|
|
1407
|
+
id_sindicatoDes: number;
|
|
1408
|
+
id_sindicatoHas: number;
|
|
1409
|
+
codSindicatoDes: string;
|
|
1410
|
+
codSindicatoHas: string;
|
|
1411
|
+
reporte: string;
|
|
1412
|
+
}
|
|
1413
|
+
export interface IRRetenciones {
|
|
1414
|
+
id_nomina: number;
|
|
1415
|
+
codnom: string;
|
|
1416
|
+
id_personalDes: number;
|
|
1417
|
+
id_personalHas: number;
|
|
1418
|
+
codperDes: string;
|
|
1419
|
+
codperHas: string;
|
|
1420
|
+
annocurso: string;
|
|
1421
|
+
reporte: string;
|
|
1422
|
+
}
|
|
1423
|
+
export interface IResultadosEvaluacion {
|
|
1424
|
+
id_empresa: string;
|
|
1425
|
+
id_evaluacion: string;
|
|
1426
|
+
id_concurso: string;
|
|
1427
|
+
codcon: string;
|
|
1428
|
+
dencon: string;
|
|
1429
|
+
id_concursante: string;
|
|
1430
|
+
cedper: string;
|
|
1431
|
+
nomper: string;
|
|
1432
|
+
fecha: string;
|
|
1433
|
+
observacion: string;
|
|
1434
|
+
usuario: string;
|
|
1435
|
+
resultado_rqm: string;
|
|
1436
|
+
resultado_psi: string;
|
|
1437
|
+
resultado_tec: string;
|
|
1438
|
+
resultado_total: string;
|
|
1439
|
+
conclusion: string;
|
|
1440
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { MBasicModel } from "../basic-model.model";
|
|
2
|
+
import { IArchivoTxt } from "../../interfaces/RecursosHumanos";
|
|
3
|
+
import { MArchivoTxtCampo } from "./MArchivoTxtCampo.model";
|
|
4
|
+
export declare class MArchivosTxt extends MBasicModel {
|
|
5
|
+
idEmpresa: number;
|
|
6
|
+
idArchivoTxt: number;
|
|
7
|
+
codigoArchivo: string;
|
|
8
|
+
denominacionArchivo: string;
|
|
9
|
+
tipoArchivo: string;
|
|
10
|
+
acumularMonto: boolean;
|
|
11
|
+
campos: MArchivoTxtCampo[];
|
|
12
|
+
constructor(e?: IArchivoTxt);
|
|
13
|
+
dataInterface(): IArchivoTxt;
|
|
14
|
+
}
|
|
@@ -39,6 +39,8 @@ export declare class MAsignacionCargo extends MBasicModel {
|
|
|
39
39
|
export declare class MCargoEstructuraOrganizativa extends MBasicModel {
|
|
40
40
|
idEmpresa: number;
|
|
41
41
|
idCargoPersonal: number;
|
|
42
|
+
codigoCargo: string;
|
|
43
|
+
descripcionCargo: string;
|
|
42
44
|
idOrganigrama: number;
|
|
43
45
|
idDtCargoEstructura: number;
|
|
44
46
|
idPersonal: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MBasicModel } from '../basic-model.model';
|
|
2
|
-
import { IAspectoEvaluacion } from "../../interfaces/RecursosHumanos";
|
|
2
|
+
import { IAspectoEvaluacion, IItemsEvaluacion } from "../../interfaces/RecursosHumanos";
|
|
3
3
|
export declare class MAspectoEvaluacion extends MBasicModel {
|
|
4
4
|
idEmpresa: number;
|
|
5
5
|
idTipoEvaluacion: number;
|
|
@@ -11,3 +11,18 @@ export declare class MAspectoEvaluacion extends MBasicModel {
|
|
|
11
11
|
constructor(e?: IAspectoEvaluacion);
|
|
12
12
|
dataInterface(): IAspectoEvaluacion;
|
|
13
13
|
}
|
|
14
|
+
export declare class MItemsEvalucion extends MBasicModel {
|
|
15
|
+
idEmpresa: number;
|
|
16
|
+
idTipoEvaluacion: number;
|
|
17
|
+
idAspectoEvaluacion: number;
|
|
18
|
+
idItems: number;
|
|
19
|
+
codigoItems: string;
|
|
20
|
+
denominacionItems: string;
|
|
21
|
+
valorMaximo: number;
|
|
22
|
+
codigoTipoEvaluacion: string;
|
|
23
|
+
denominacionTipoEvaluacion: string;
|
|
24
|
+
codigoAspecto: string;
|
|
25
|
+
denominacionAspecto: string;
|
|
26
|
+
constructor(e?: IItemsEvaluacion);
|
|
27
|
+
dataInterface(): IItemsEvaluacion;
|
|
28
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IConcursante, ITrabajosConcursantes } from "../../interfaces/RecursosHumanos";
|
|
1
|
+
import { IConcursante, IEstudiosConcursantes, IExperienciaLaboral, IFamiliaConcursante, IFormacionInformal, ITrabajosConcursantes } from "../../interfaces/RecursosHumanos";
|
|
2
2
|
import { MBasicModel } from "../basic-model.model";
|
|
3
3
|
export declare class MConcursante extends MBasicModel {
|
|
4
4
|
idEmpresa: number;
|
|
@@ -42,3 +42,58 @@ export declare class MTrabajosConcursantes extends MBasicModel {
|
|
|
42
42
|
constructor(e?: ITrabajosConcursantes);
|
|
43
43
|
dataInterface(): ITrabajosConcursantes;
|
|
44
44
|
}
|
|
45
|
+
export declare class MEstudiosConcursantes extends MBasicModel {
|
|
46
|
+
idEmpresa: number;
|
|
47
|
+
idConcurso: number;
|
|
48
|
+
idConcursante: number;
|
|
49
|
+
idEstudio: number;
|
|
50
|
+
codigoEstudio: string;
|
|
51
|
+
institutoEstudio: string;
|
|
52
|
+
descripcionEstudio: string;
|
|
53
|
+
fechaInicioEstudio: string;
|
|
54
|
+
fechaFinEstudio: string;
|
|
55
|
+
tituloObtenido: number;
|
|
56
|
+
yearAprobados: number;
|
|
57
|
+
horasEstudiosRealizadas: number;
|
|
58
|
+
constructor(e?: IEstudiosConcursantes);
|
|
59
|
+
dataInterface(): IEstudiosConcursantes;
|
|
60
|
+
}
|
|
61
|
+
export declare class MExperienciaLaboral extends MBasicModel {
|
|
62
|
+
idEmpresa: number;
|
|
63
|
+
idConcurso: number;
|
|
64
|
+
idConcursante: number;
|
|
65
|
+
idTrabajoConcursante: number;
|
|
66
|
+
codigoTrabajo: string;
|
|
67
|
+
empresa: string;
|
|
68
|
+
cargo: string;
|
|
69
|
+
fechaIngreso: string;
|
|
70
|
+
fechaRetiro: string;
|
|
71
|
+
constructor(e?: IExperienciaLaboral);
|
|
72
|
+
dataInterface(): IExperienciaLaboral;
|
|
73
|
+
}
|
|
74
|
+
export declare class MFamiliaConcursante extends MBasicModel {
|
|
75
|
+
idEmpresa: number;
|
|
76
|
+
idConcurso: number;
|
|
77
|
+
idConcursante: number;
|
|
78
|
+
idFamiliar: number;
|
|
79
|
+
codigo: string;
|
|
80
|
+
cedula: string;
|
|
81
|
+
nombre: string;
|
|
82
|
+
apellido: string;
|
|
83
|
+
sexo: string;
|
|
84
|
+
nexo: string;
|
|
85
|
+
fecha: string;
|
|
86
|
+
constructor(e?: IFamiliaConcursante);
|
|
87
|
+
dataInterface(): IFamiliaConcursante;
|
|
88
|
+
}
|
|
89
|
+
export declare class MFormacionInformal extends MBasicModel {
|
|
90
|
+
idEmpresa: number;
|
|
91
|
+
idConcurso: number;
|
|
92
|
+
idConcursante: number;
|
|
93
|
+
idCurso: number;
|
|
94
|
+
codigoCurso: string;
|
|
95
|
+
descripcionCurso: string;
|
|
96
|
+
horasCurso: number;
|
|
97
|
+
constructor(e?: IFormacionInformal);
|
|
98
|
+
dataInterface(): IFormacionInformal;
|
|
99
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MBasicModel } from "../basic-model.model";
|
|
2
|
-
import { IConcurso } from "../../interfaces/RecursosHumanos";
|
|
2
|
+
import { IConcurso, IPrevioEvaluacion, IPrevioEvaluacionDt, IResultadosEvaluacion } from "../../interfaces/RecursosHumanos";
|
|
3
3
|
import { MRequisitosConcursos } from "./MRequisitosConcursos.model";
|
|
4
4
|
export declare class MConcurso extends MBasicModel {
|
|
5
5
|
idEmpresa: number;
|
|
@@ -20,3 +20,60 @@ export declare class MConcurso extends MBasicModel {
|
|
|
20
20
|
constructor(e?: IConcurso);
|
|
21
21
|
dataInterface(): IConcurso;
|
|
22
22
|
}
|
|
23
|
+
export declare class MPrevioEvaluacion extends MBasicModel {
|
|
24
|
+
idEmpresa: number;
|
|
25
|
+
idPrevio: number;
|
|
26
|
+
proceso: string;
|
|
27
|
+
idConcurso: number;
|
|
28
|
+
codigoConcurso: string;
|
|
29
|
+
nombreConcurso: string;
|
|
30
|
+
idConcursante: number;
|
|
31
|
+
codigoConcursante: string;
|
|
32
|
+
nombreConcursante: string;
|
|
33
|
+
idTipoEvaluacion: number;
|
|
34
|
+
codigoTipoEvaluacion: string;
|
|
35
|
+
nombreTipoEvaluacion: string;
|
|
36
|
+
fechaRegistro: string;
|
|
37
|
+
valorMinimoRequerido: number;
|
|
38
|
+
usuarioRegistro: string;
|
|
39
|
+
horaRegistro: string;
|
|
40
|
+
estatusRegistro: number;
|
|
41
|
+
tipo: string;
|
|
42
|
+
detallesRegistro: MPrevioEvaluacionDt[];
|
|
43
|
+
constructor(e?: IPrevioEvaluacion);
|
|
44
|
+
dataInterface(): IPrevioEvaluacion;
|
|
45
|
+
}
|
|
46
|
+
export declare class MPrevioEvaluacionDt extends MBasicModel {
|
|
47
|
+
idEmpresa: number;
|
|
48
|
+
idPrevio: number;
|
|
49
|
+
idAspecto: number;
|
|
50
|
+
idTipoEvaluacion: number;
|
|
51
|
+
idItem: number;
|
|
52
|
+
idDtPrevio: number;
|
|
53
|
+
codigo: string;
|
|
54
|
+
descripcion: string;
|
|
55
|
+
puntos: number;
|
|
56
|
+
valorMaximo: number;
|
|
57
|
+
constructor(e?: IPrevioEvaluacionDt);
|
|
58
|
+
dataInterface(): IPrevioEvaluacionDt;
|
|
59
|
+
}
|
|
60
|
+
export declare class MResultadosEvaluacion extends MBasicModel {
|
|
61
|
+
idEmpresa: number;
|
|
62
|
+
idEvaluacion: number;
|
|
63
|
+
idConcurso: number;
|
|
64
|
+
codigoConcurso: string;
|
|
65
|
+
nombreConcurso: string;
|
|
66
|
+
idConcursante: number;
|
|
67
|
+
codigoConcursante: string;
|
|
68
|
+
nombreConcursante: string;
|
|
69
|
+
observacion: string;
|
|
70
|
+
fechaRegistro: string;
|
|
71
|
+
resultado_tec: number;
|
|
72
|
+
resultado_total: number;
|
|
73
|
+
resultado_psi: number;
|
|
74
|
+
resultado_rqm: number;
|
|
75
|
+
usuarioRegistro: string;
|
|
76
|
+
conclusion: string;
|
|
77
|
+
constructor(e?: IResultadosEvaluacion);
|
|
78
|
+
dataInterface(): IResultadosEvaluacion;
|
|
79
|
+
}
|
|
@@ -14,6 +14,25 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
|
|
|
14
14
|
idEp4: number;
|
|
15
15
|
idEp5: number;
|
|
16
16
|
codigoPadre: string;
|
|
17
|
+
codigoPais: string;
|
|
18
|
+
nombrePais: string;
|
|
19
|
+
codigoEstado: string;
|
|
20
|
+
nombreEstado: string;
|
|
21
|
+
codigoMunicipio: string;
|
|
22
|
+
nombreMunicipio: string;
|
|
23
|
+
codigoParroquia: string;
|
|
24
|
+
nombreParroquia: string;
|
|
25
|
+
estatusmpppe: number;
|
|
26
|
+
ubicacionBolivariana: number;
|
|
27
|
+
ubicacionFrontera: number;
|
|
28
|
+
ubicacionIndigena: number;
|
|
29
|
+
ubicacionInsular: number;
|
|
30
|
+
ubicacionMarginal: number;
|
|
31
|
+
ubicacionNocturno: number;
|
|
32
|
+
ubicacionPlanta: number;
|
|
33
|
+
ubicacionRobinson: number;
|
|
34
|
+
ubicacionZona: number;
|
|
35
|
+
ubicacionNoAplica: number;
|
|
17
36
|
constructor(e?: IEstructuraOrganizativa);
|
|
18
37
|
dataInterface(): IEstructuraOrganizativa;
|
|
19
38
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IHojaTiempo } from '../../interfaces/Nomina';
|
|
2
|
+
import { IHorario } from '../../interfaces/RecursosHumanos';
|
|
2
3
|
import { MBasicModel } from '../basic-model.model';
|
|
3
4
|
export declare class MHojaTiempo extends MBasicModel {
|
|
4
5
|
idEmpresa: number;
|
|
@@ -22,3 +23,16 @@ export declare class MHojaTiempo extends MBasicModel {
|
|
|
22
23
|
constructor(e?: IHojaTiempo);
|
|
23
24
|
dataInterface(): IHojaTiempo;
|
|
24
25
|
}
|
|
26
|
+
export declare class MHorario extends MBasicModel {
|
|
27
|
+
idEmpresa: number;
|
|
28
|
+
idHora: number;
|
|
29
|
+
codigoHorario: string;
|
|
30
|
+
denominacionHorario: string;
|
|
31
|
+
tipoHorario: string;
|
|
32
|
+
horaInicial: string;
|
|
33
|
+
horaFinal: string;
|
|
34
|
+
horasLaborales: string;
|
|
35
|
+
horaDescanco: string;
|
|
36
|
+
constructor(e?: IHorario);
|
|
37
|
+
dataInterface(): IHorario;
|
|
38
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { MBasicModel } from "../basic-model.model";
|
|
2
|
+
import { IImpuestoSobreRenta } from "../../interfaces/RecursosHumanos";
|
|
3
|
+
export declare class MImpuestoSobreRenta extends MBasicModel {
|
|
4
|
+
idEmpresa: number;
|
|
5
|
+
idPersonal: number;
|
|
6
|
+
idImpuestoSobreRenta: number;
|
|
7
|
+
porcentajeIsr: number;
|
|
8
|
+
idConcepto: number;
|
|
9
|
+
enero: number;
|
|
10
|
+
febrero: number;
|
|
11
|
+
marzo: number;
|
|
12
|
+
abril: number;
|
|
13
|
+
mayo: number;
|
|
14
|
+
junio: number;
|
|
15
|
+
julio: number;
|
|
16
|
+
agosto: number;
|
|
17
|
+
septiembre: number;
|
|
18
|
+
octubre: number;
|
|
19
|
+
noviembre: number;
|
|
20
|
+
diciembre: number;
|
|
21
|
+
denominacionConcepto: string;
|
|
22
|
+
constructor(e?: IImpuestoSobreRenta);
|
|
23
|
+
dataInterface(): IImpuestoSobreRenta;
|
|
24
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { IMetodoBanco, IMetodos } from "../../interfaces/RecursosHumanos";
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MMetodoBanco extends MBasicModel {
|
|
4
|
+
idEmpresa: number;
|
|
5
|
+
idMetodoBanco: number;
|
|
6
|
+
id: number;
|
|
7
|
+
codigoMetodo: string;
|
|
8
|
+
denominacionMetodo: string;
|
|
9
|
+
tipoMetodo: string;
|
|
10
|
+
codigoEmpresaNominal: string;
|
|
11
|
+
tipoCuentaCreditoNominal: string;
|
|
12
|
+
tipoCuentaDebitoNominal: string;
|
|
13
|
+
codigoOficinaNomina: string;
|
|
14
|
+
pagoTaquillaNomina: number;
|
|
15
|
+
numeroReferencia: number;
|
|
16
|
+
numeroConvenio: string;
|
|
17
|
+
activo: number;
|
|
18
|
+
constructor(e?: IMetodoBanco);
|
|
19
|
+
dataInterface(): IMetodoBanco;
|
|
20
|
+
}
|
|
21
|
+
export declare class MMetodos extends MBasicModel {
|
|
22
|
+
idEmpresa: number;
|
|
23
|
+
idMetodo: number;
|
|
24
|
+
codigoMetodo: string;
|
|
25
|
+
denominacionMetodo: string;
|
|
26
|
+
montoMetodo: number;
|
|
27
|
+
metodoCestaTicket: string;
|
|
28
|
+
codigoProducto: string;
|
|
29
|
+
montoDescuentoDia: number;
|
|
30
|
+
numeroTarjeta: string;
|
|
31
|
+
constructor(e?: IMetodos);
|
|
32
|
+
dataInterface(): IMetodos;
|
|
33
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { INominaSimple } from "../../interfaces/Nomina";
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MNominaSimple extends MBasicModel {
|
|
3
4
|
idEmpresa: number;
|
|
4
|
-
|
|
5
|
+
idNomina: number;
|
|
5
6
|
codigoNomina: string;
|
|
6
7
|
denominacioNomina: string;
|
|
7
8
|
idPeriodoActual: number;
|
|
@@ -16,8 +17,11 @@ export declare class MNominaSimple {
|
|
|
16
17
|
nominaRac: number;
|
|
17
18
|
simbolo: string;
|
|
18
19
|
color: string;
|
|
19
|
-
|
|
20
|
+
estatusPersonal: number;
|
|
21
|
+
denominacionEstatuspersonal: string;
|
|
20
22
|
descripcionPeriodoNomina: string;
|
|
23
|
+
periodoActualNomina: string;
|
|
24
|
+
editable: boolean;
|
|
21
25
|
constructor(e?: INominaSimple);
|
|
22
26
|
dataInterface(): INominaSimple;
|
|
23
27
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IPeriodosPlan } from "../../interfaces/RecursosHumanos";
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MPeriodosPlan extends MBasicModel {
|
|
4
|
+
idEmpresa: number;
|
|
5
|
+
idPlanHorario: number;
|
|
6
|
+
codigoPeriodoPlan: string;
|
|
7
|
+
denominacionPeriodoPlan: string;
|
|
8
|
+
fechaPeriodoPlan: string;
|
|
9
|
+
idPeriodo: number;
|
|
10
|
+
codigoPeriodo: string;
|
|
11
|
+
idHorario: number;
|
|
12
|
+
incidencias: string;
|
|
13
|
+
idDetalle: number;
|
|
14
|
+
constructor(e?: IPeriodosPlan);
|
|
15
|
+
dataInterface(): IPeriodosPlan;
|
|
16
|
+
}
|