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
package/bundles/sigesp.umd.js
CHANGED
|
@@ -684,6 +684,9 @@
|
|
|
684
684
|
_this.fechaHastaPeriodo = e.fechasper;
|
|
685
685
|
_this.codigoPeriodo = e.codperi;
|
|
686
686
|
}
|
|
687
|
+
else {
|
|
688
|
+
_this.isNew = true;
|
|
689
|
+
}
|
|
687
690
|
return _this;
|
|
688
691
|
}
|
|
689
692
|
MHojaTiempo.prototype.dataInterface = function () {
|
|
@@ -709,6 +712,50 @@
|
|
|
709
712
|
};
|
|
710
713
|
};
|
|
711
714
|
return MHojaTiempo;
|
|
715
|
+
}(MBasicModel));
|
|
716
|
+
var MHorario = /** @class */ (function (_super) {
|
|
717
|
+
__extends(MHorario, _super);
|
|
718
|
+
function MHorario(e) {
|
|
719
|
+
var _this = _super.call(this) || this;
|
|
720
|
+
_this.idEmpresa = 0;
|
|
721
|
+
_this.idHora = 0;
|
|
722
|
+
_this.codigoHorario = '';
|
|
723
|
+
_this.denominacionHorario = '';
|
|
724
|
+
_this.tipoHorario = 'F';
|
|
725
|
+
_this.horaInicial = '0';
|
|
726
|
+
_this.horaFinal = '0';
|
|
727
|
+
_this.horasLaborales = '0';
|
|
728
|
+
_this.horaDescanco = '0';
|
|
729
|
+
if (e) {
|
|
730
|
+
_this.idEmpresa = +e.id_empresa;
|
|
731
|
+
_this.idHora = +e.id_hora;
|
|
732
|
+
_this.codigoHorario = e.codhor;
|
|
733
|
+
_this.denominacionHorario = e.denhor;
|
|
734
|
+
_this.tipoHorario = e.tiphor;
|
|
735
|
+
_this.horaInicial = e.horini;
|
|
736
|
+
_this.horaFinal = e.horfin;
|
|
737
|
+
_this.horasLaborales = e.horlab;
|
|
738
|
+
_this.horaDescanco = e.hordes;
|
|
739
|
+
}
|
|
740
|
+
else {
|
|
741
|
+
_this.isNew = true;
|
|
742
|
+
}
|
|
743
|
+
return _this;
|
|
744
|
+
}
|
|
745
|
+
MHorario.prototype.dataInterface = function () {
|
|
746
|
+
return {
|
|
747
|
+
id_empresa: this.idEmpresa,
|
|
748
|
+
id_hora: this.idHora,
|
|
749
|
+
codhor: this.codigoHorario,
|
|
750
|
+
denhor: this.denominacionHorario,
|
|
751
|
+
tiphor: this.tipoHorario,
|
|
752
|
+
horini: this.horaInicial,
|
|
753
|
+
horfin: this.horaFinal,
|
|
754
|
+
horlab: this.horasLaborales,
|
|
755
|
+
hordes: this.horaDescanco,
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
return MHorario;
|
|
712
759
|
}(MBasicModel));
|
|
713
760
|
|
|
714
761
|
var MUsuario = /** @class */ (function () {
|
|
@@ -4111,6 +4158,8 @@
|
|
|
4111
4158
|
var _this = _super.call(this) || this;
|
|
4112
4159
|
_this.idEmpresa = 0;
|
|
4113
4160
|
_this.idCargoPersonal = 0;
|
|
4161
|
+
_this.codigoCargo = '';
|
|
4162
|
+
_this.descripcionCargo = '';
|
|
4114
4163
|
_this.idOrganigrama = 0;
|
|
4115
4164
|
_this.idDtCargoEstructura = 0;
|
|
4116
4165
|
_this.idPersonal = 0;
|
|
@@ -4122,9 +4171,12 @@
|
|
|
4122
4171
|
_this.idCargoPersonal = parseInt(e.id_carper);
|
|
4123
4172
|
_this.idOrganigrama = parseInt(e.id_organigrama);
|
|
4124
4173
|
_this.codigoEstructuraOrganizativa = e.codestorg;
|
|
4174
|
+
_this.codigoCargo = e.codcar;
|
|
4175
|
+
_this.descripcionCargo = e.descar;
|
|
4125
4176
|
_this.denominacionEstructuraOrganizativa = e.denestorg;
|
|
4126
4177
|
_this.idPersonal = parseInt(e.id_personal);
|
|
4127
4178
|
_this.nivel = parseInt(e.nivel);
|
|
4179
|
+
_this.idDtCargoEstructura = parseInt(e.id_dt);
|
|
4128
4180
|
}
|
|
4129
4181
|
else {
|
|
4130
4182
|
_this.isNew = true;
|
|
@@ -4191,58 +4243,74 @@
|
|
|
4191
4243
|
return MCargosNominas;
|
|
4192
4244
|
}(MBasicModel));
|
|
4193
4245
|
|
|
4194
|
-
var MNominaSimple$1 = /** @class */ (function () {
|
|
4246
|
+
var MNominaSimple$1 = /** @class */ (function (_super) {
|
|
4247
|
+
__extends(MNominaSimple, _super);
|
|
4195
4248
|
function MNominaSimple(e) {
|
|
4196
4249
|
if (e === void 0) { e = null; }
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4250
|
+
var _this = _super.call(this) || this;
|
|
4251
|
+
_this.idEmpresa = 0;
|
|
4252
|
+
_this.idNomina = 0;
|
|
4253
|
+
_this.codigoNomina = '';
|
|
4254
|
+
_this.denominacioNomina = '';
|
|
4255
|
+
_this.idPeriodoActual = 0;
|
|
4256
|
+
_this.totalPeriodo = 0;
|
|
4257
|
+
_this.estatus = '';
|
|
4258
|
+
_this.estatusPeriodo = 0;
|
|
4259
|
+
_this.calculada = false;
|
|
4260
|
+
_this.prenomina = false;
|
|
4261
|
+
_this.idCargo = 0;
|
|
4262
|
+
_this.codigoCargo = '';
|
|
4263
|
+
_this.denominacionCargo = '';
|
|
4264
|
+
_this.nominaRac = 0;
|
|
4265
|
+
_this.simbolo = '';
|
|
4266
|
+
_this.color = '';
|
|
4267
|
+
_this.estatusPersonal = 0;
|
|
4268
|
+
_this.denominacionEstatuspersonal = '';
|
|
4269
|
+
_this.descripcionPeriodoNomina = '';
|
|
4270
|
+
_this.periodoActualNomina = '';
|
|
4271
|
+
_this.editable = false;
|
|
4215
4272
|
if (e) {
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
!
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4273
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
4274
|
+
_this.idNomina = parseInt(e.id_nomina);
|
|
4275
|
+
_this.codigoNomina = e.codnom;
|
|
4276
|
+
_this.denominacioNomina = e.dennom;
|
|
4277
|
+
_this.idPeriodoActual = +e.id_periodoactual;
|
|
4278
|
+
_this.totalPeriodo = parseFloat(e.totper),
|
|
4279
|
+
_this.estatusPeriodo = parseInt(e.cerper);
|
|
4280
|
+
_this.calculada = e.calculado == '1' ? true : false;
|
|
4281
|
+
_this.prenomina = e.prenomina == '1' ? true : false;
|
|
4282
|
+
_this.estatus = _this.calculada ? 'Calculada' :
|
|
4283
|
+
!_this.calculada && _this.prenomina ? 'Pre-Calculada' : 'Sin Calcular';
|
|
4284
|
+
_this.editable = (_this.calculada || _this.prenomina) ? false : true;
|
|
4285
|
+
_this.idCargo = parseInt(e.id_carper);
|
|
4286
|
+
_this.codigoCargo = e.codcar;
|
|
4287
|
+
_this.denominacionCargo = e.descar;
|
|
4288
|
+
_this.nominaRac = parseInt(e.racnom);
|
|
4289
|
+
_this.nominaRac == 1 ? _this.simbolo = 'check' : _this.simbolo = '';
|
|
4290
|
+
_this.nominaRac == 1 ? _this.color = 'primary' : _this.color = '';
|
|
4291
|
+
_this.estatusPersonal = parseInt(e.staper);
|
|
4292
|
+
_this.estatusPersonal == 0 ? _this.denominacionEstatuspersonal = "NO ASIGNADO" :
|
|
4293
|
+
_this.estatusPersonal == 1 ? _this.denominacionEstatuspersonal = "ACTIVO" :
|
|
4294
|
+
_this.estatusPersonal == 2 ? _this.denominacionEstatuspersonal = "VACACIONES" :
|
|
4295
|
+
_this.estatusPersonal == 3 ? _this.denominacionEstatuspersonal = "EGRESADO" :
|
|
4296
|
+
_this.denominacionEstatuspersonal = "SUSPENDIDO";
|
|
4297
|
+
_this.descripcionPeriodoNomina = e.despernom;
|
|
4298
|
+
_this.periodoActualNomina = e.peractnom;
|
|
4235
4299
|
}
|
|
4300
|
+
else {
|
|
4301
|
+
_this.isNew = true;
|
|
4302
|
+
}
|
|
4303
|
+
return _this;
|
|
4236
4304
|
}
|
|
4237
4305
|
MNominaSimple.prototype.dataInterface = function () {
|
|
4238
4306
|
return {
|
|
4239
4307
|
id_empresa: this.idEmpresa.toString(),
|
|
4240
|
-
id_nomina: this.
|
|
4308
|
+
id_nomina: this.idNomina.toString(),
|
|
4241
4309
|
id_carper: this.idCargo.toString(),
|
|
4242
4310
|
};
|
|
4243
4311
|
};
|
|
4244
4312
|
return MNominaSimple;
|
|
4245
|
-
}());
|
|
4313
|
+
}(MBasicModel));
|
|
4246
4314
|
|
|
4247
4315
|
var MPersonal = /** @class */ (function (_super) {
|
|
4248
4316
|
__extends(MPersonal, _super);
|
|
@@ -4570,6 +4638,102 @@
|
|
|
4570
4638
|
};
|
|
4571
4639
|
};
|
|
4572
4640
|
return MPersonal;
|
|
4641
|
+
}(MBasicModel));
|
|
4642
|
+
var MCambioEstatusPersonal = /** @class */ (function (_super) {
|
|
4643
|
+
__extends(MCambioEstatusPersonal, _super);
|
|
4644
|
+
function MCambioEstatusPersonal(e) {
|
|
4645
|
+
if (e === void 0) { e = null; }
|
|
4646
|
+
var _this = _super.call(this) || this;
|
|
4647
|
+
_this.idPersonal = 0;
|
|
4648
|
+
_this.codigoPersonal = '';
|
|
4649
|
+
_this.estatusActual = '2';
|
|
4650
|
+
_this.estatusNuevo = '2';
|
|
4651
|
+
_this.fechaEgreso = '';
|
|
4652
|
+
_this.causaEgreso = '';
|
|
4653
|
+
_this.preaviso = '1';
|
|
4654
|
+
_this.idCausales = 0;
|
|
4655
|
+
_this.observacion = '';
|
|
4656
|
+
_this.fechaReingreso = '1900-01-01';
|
|
4657
|
+
if (e) {
|
|
4658
|
+
_this.idPersonal = e.idPersonal;
|
|
4659
|
+
_this.codigoPersonal = e.codigoPersonal;
|
|
4660
|
+
_this.estatusActual = e.estatusActual;
|
|
4661
|
+
_this.estatusNuevo = e.estatusNuevo;
|
|
4662
|
+
_this.fechaEgreso = e.fechaEgreso;
|
|
4663
|
+
_this.causaEgreso = e.causaEgreso;
|
|
4664
|
+
_this.preaviso = e.preaviso;
|
|
4665
|
+
_this.idCausales = e.idCausales;
|
|
4666
|
+
_this.observacion = e.observacion;
|
|
4667
|
+
_this.fechaReingreso = e.fechaReingreso;
|
|
4668
|
+
}
|
|
4669
|
+
return _this;
|
|
4670
|
+
}
|
|
4671
|
+
MCambioEstatusPersonal.prototype.dataInterface = function () {
|
|
4672
|
+
return {
|
|
4673
|
+
idPersonal: this.idPersonal,
|
|
4674
|
+
codigoPersonal: this.codigoPersonal,
|
|
4675
|
+
estatusActual: this.estatusActual,
|
|
4676
|
+
estatusNuevo: this.estatusNuevo,
|
|
4677
|
+
fechaEgreso: this.fechaEgreso,
|
|
4678
|
+
causaEgreso: this.causaEgreso,
|
|
4679
|
+
preaviso: this.preaviso,
|
|
4680
|
+
idCausales: this.idCausales,
|
|
4681
|
+
observacion: this.observacion,
|
|
4682
|
+
fechaReingreso: this.fechaReingreso,
|
|
4683
|
+
};
|
|
4684
|
+
};
|
|
4685
|
+
return MCambioEstatusPersonal;
|
|
4686
|
+
}(MBasicModel));
|
|
4687
|
+
var MPersonalCuentaBanco = /** @class */ (function (_super) {
|
|
4688
|
+
__extends(MPersonalCuentaBanco, _super);
|
|
4689
|
+
function MPersonalCuentaBanco(e) {
|
|
4690
|
+
var _this = _super.call(this) || this;
|
|
4691
|
+
_this.idEmpresa = 0;
|
|
4692
|
+
_this.idPersonal = 0;
|
|
4693
|
+
_this.idCuentaBancoPersonal = -1;
|
|
4694
|
+
_this.codigoCuentaBancoPersonal = '';
|
|
4695
|
+
_this.denominacionCuentaBancoPersonal = '';
|
|
4696
|
+
_this.idBanco = 0;
|
|
4697
|
+
_this.idTipoCuentaBanco = 0;
|
|
4698
|
+
_this.cuentaBancoPersonal = '';
|
|
4699
|
+
_this.estatusCuentaBanco = '1';
|
|
4700
|
+
_this.tipoCuentaPrincipal = '0';
|
|
4701
|
+
_this.codigoBanco = '';
|
|
4702
|
+
_this.cuentaReducida = '';
|
|
4703
|
+
if (e) {
|
|
4704
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
4705
|
+
_this.idPersonal = parseInt(e.id_personal);
|
|
4706
|
+
_this.idCuentaBancoPersonal = parseInt(e.id_ctabanper);
|
|
4707
|
+
_this.codigoCuentaBancoPersonal = e.codctabanper;
|
|
4708
|
+
_this.denominacionCuentaBancoPersonal = e.denctabanper;
|
|
4709
|
+
_this.idBanco = parseInt(e.id_banco);
|
|
4710
|
+
_this.idTipoCuentaBanco = parseInt(e.id_tipocta);
|
|
4711
|
+
_this.cuentaBancoPersonal = e.ctabanper;
|
|
4712
|
+
_this.estatusCuentaBanco = e.estctabco;
|
|
4713
|
+
_this.tipoCuentaPrincipal = e.tipctapri;
|
|
4714
|
+
_this.codigoBanco = _this.cuentaBancoPersonal.substring(0, 4);
|
|
4715
|
+
_this.cuentaReducida = _this.cuentaBancoPersonal.slice(4);
|
|
4716
|
+
}
|
|
4717
|
+
else {
|
|
4718
|
+
_this.isNew = true;
|
|
4719
|
+
}
|
|
4720
|
+
return _this;
|
|
4721
|
+
}
|
|
4722
|
+
MPersonalCuentaBanco.prototype.dataInterface = function () {
|
|
4723
|
+
return {
|
|
4724
|
+
id_empresa: this.idEmpresa.toString(),
|
|
4725
|
+
id_personal: this.idPersonal.toString(),
|
|
4726
|
+
id_ctabanper: this.idCuentaBancoPersonal.toString(),
|
|
4727
|
+
codctabanper: this.codigoCuentaBancoPersonal,
|
|
4728
|
+
denctabanper: this.denominacionCuentaBancoPersonal,
|
|
4729
|
+
id_banco: this.idBanco.toString(),
|
|
4730
|
+
id_tipocta: this.idTipoCuentaBanco.toString(),
|
|
4731
|
+
ctabanper: this.cuentaBancoPersonal,
|
|
4732
|
+
estctabco: this.estatusCuentaBanco,
|
|
4733
|
+
tipctapri: this.tipoCuentaPrincipal,
|
|
4734
|
+
};
|
|
4735
|
+
};
|
|
4736
|
+
return MPersonalCuentaBanco;
|
|
4573
4737
|
}(MBasicModel));
|
|
4574
4738
|
|
|
4575
4739
|
var MDetaContable = /** @class */ (function (_super) {
|
|
@@ -7552,6 +7716,46 @@
|
|
|
7552
7716
|
return MArchivoTxtCampo;
|
|
7553
7717
|
}(MBasicModel));
|
|
7554
7718
|
|
|
7719
|
+
var MArchivosTxt = /** @class */ (function (_super) {
|
|
7720
|
+
__extends(MArchivosTxt, _super);
|
|
7721
|
+
function MArchivosTxt(e) {
|
|
7722
|
+
if (e === void 0) { e = null; }
|
|
7723
|
+
var _this = _super.call(this) || this;
|
|
7724
|
+
_this.idEmpresa = 0;
|
|
7725
|
+
_this.idArchivoTxt = 0;
|
|
7726
|
+
_this.codigoArchivo = '';
|
|
7727
|
+
_this.denominacionArchivo = '';
|
|
7728
|
+
_this.tipoArchivo = 'I';
|
|
7729
|
+
_this.acumularMonto = false;
|
|
7730
|
+
_this.campos = [];
|
|
7731
|
+
if (e) {
|
|
7732
|
+
e.acumon == '1' ? _this.acumularMonto = true : _this.acumularMonto = false;
|
|
7733
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
7734
|
+
_this.idArchivoTxt = parseInt(e.id_archivotxt);
|
|
7735
|
+
_this.codigoArchivo = e.codarch;
|
|
7736
|
+
_this.denominacionArchivo = e.denarch;
|
|
7737
|
+
_this.tipoArchivo = e.tiparch;
|
|
7738
|
+
_this.campos = e.campos.map(function (e) { return new MArchivoTxtCampo(e); });
|
|
7739
|
+
}
|
|
7740
|
+
else {
|
|
7741
|
+
_this.isNew = true;
|
|
7742
|
+
}
|
|
7743
|
+
return _this;
|
|
7744
|
+
}
|
|
7745
|
+
MArchivosTxt.prototype.dataInterface = function () {
|
|
7746
|
+
return {
|
|
7747
|
+
id_empresa: this.idEmpresa.toString(),
|
|
7748
|
+
id_archivotxt: this.idArchivoTxt.toString(),
|
|
7749
|
+
codarch: this.codigoArchivo,
|
|
7750
|
+
denarch: this.denominacionArchivo,
|
|
7751
|
+
tiparch: this.tipoArchivo,
|
|
7752
|
+
acumon: this.acumularMonto ? '1' : '0',
|
|
7753
|
+
campos: this.campos.map(function (e) { return e.dataInterface(); }),
|
|
7754
|
+
};
|
|
7755
|
+
};
|
|
7756
|
+
return MArchivosTxt;
|
|
7757
|
+
}(MBasicModel));
|
|
7758
|
+
|
|
7555
7759
|
var MAspectoEvaluacion = /** @class */ (function (_super) {
|
|
7556
7760
|
__extends(MAspectoEvaluacion, _super);
|
|
7557
7761
|
function MAspectoEvaluacion(e) {
|
|
@@ -7589,6 +7793,57 @@
|
|
|
7589
7793
|
};
|
|
7590
7794
|
};
|
|
7591
7795
|
return MAspectoEvaluacion;
|
|
7796
|
+
}(MBasicModel));
|
|
7797
|
+
var MItemsEvalucion = /** @class */ (function (_super) {
|
|
7798
|
+
__extends(MItemsEvalucion, _super);
|
|
7799
|
+
function MItemsEvalucion(e) {
|
|
7800
|
+
if (e === void 0) { e = null; }
|
|
7801
|
+
var _this = _super.call(this) || this;
|
|
7802
|
+
_this.idEmpresa = 0;
|
|
7803
|
+
_this.idTipoEvaluacion = 0;
|
|
7804
|
+
_this.idAspectoEvaluacion = 0;
|
|
7805
|
+
_this.idItems = 0;
|
|
7806
|
+
_this.codigoItems = '';
|
|
7807
|
+
_this.denominacionItems = '';
|
|
7808
|
+
_this.valorMaximo = 0;
|
|
7809
|
+
_this.codigoTipoEvaluacion = '';
|
|
7810
|
+
_this.denominacionTipoEvaluacion = '';
|
|
7811
|
+
_this.codigoAspecto = '';
|
|
7812
|
+
_this.denominacionAspecto = '';
|
|
7813
|
+
if (e) {
|
|
7814
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
7815
|
+
_this.idTipoEvaluacion = parseInt(e.id_tipoeval);
|
|
7816
|
+
_this.idAspectoEvaluacion = parseInt(e.id_aspecto);
|
|
7817
|
+
_this.idItems = parseInt(e.id_item);
|
|
7818
|
+
_this.codigoItems = e.codite;
|
|
7819
|
+
_this.denominacionItems = e.denite;
|
|
7820
|
+
_this.valorMaximo = e.valormax;
|
|
7821
|
+
_this.codigoTipoEvaluacion = e.codtipeval;
|
|
7822
|
+
_this.denominacionTipoEvaluacion = e.dentipeval;
|
|
7823
|
+
_this.codigoAspecto = e.codasp;
|
|
7824
|
+
_this.denominacionAspecto = e.denasp;
|
|
7825
|
+
}
|
|
7826
|
+
else {
|
|
7827
|
+
_this.isNew = true;
|
|
7828
|
+
}
|
|
7829
|
+
return _this;
|
|
7830
|
+
}
|
|
7831
|
+
MItemsEvalucion.prototype.dataInterface = function () {
|
|
7832
|
+
return {
|
|
7833
|
+
id_empresa: this.idEmpresa.toString(),
|
|
7834
|
+
id_tipoeval: this.idTipoEvaluacion.toString(),
|
|
7835
|
+
id_aspecto: this.idAspectoEvaluacion.toString(),
|
|
7836
|
+
id_item: this.idItems.toString(),
|
|
7837
|
+
codite: this.codigoItems,
|
|
7838
|
+
denite: this.denominacionItems,
|
|
7839
|
+
valormax: this.valorMaximo,
|
|
7840
|
+
codasp: this.codigoAspecto,
|
|
7841
|
+
denasp: this.denominacionAspecto,
|
|
7842
|
+
codtipeval: this.codigoTipoEvaluacion,
|
|
7843
|
+
dentipeval: this.denominacionTipoEvaluacion,
|
|
7844
|
+
};
|
|
7845
|
+
};
|
|
7846
|
+
return MItemsEvalucion;
|
|
7592
7847
|
}(MBasicModel));
|
|
7593
7848
|
|
|
7594
7849
|
var MBeneficiario = /** @class */ (function (_super) {
|
|
@@ -8632,65 +8887,254 @@
|
|
|
8632
8887
|
};
|
|
8633
8888
|
};
|
|
8634
8889
|
return MTrabajosConcursantes;
|
|
8635
|
-
}(MBasicModel));
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8890
|
+
}(MBasicModel));
|
|
8891
|
+
var MEstudiosConcursantes = /** @class */ (function (_super) {
|
|
8892
|
+
__extends(MEstudiosConcursantes, _super);
|
|
8893
|
+
function MEstudiosConcursantes(e) {
|
|
8894
|
+
if (e === void 0) { e = null; }
|
|
8640
8895
|
var _this = _super.call(this) || this;
|
|
8641
8896
|
_this.idEmpresa = 0;
|
|
8642
8897
|
_this.idConcurso = 0;
|
|
8643
|
-
_this.
|
|
8644
|
-
_this.
|
|
8645
|
-
_this.
|
|
8646
|
-
_this.
|
|
8647
|
-
_this.
|
|
8898
|
+
_this.idConcursante = 0;
|
|
8899
|
+
_this.idEstudio = 0;
|
|
8900
|
+
_this.codigoEstudio = '';
|
|
8901
|
+
_this.institutoEstudio = '';
|
|
8902
|
+
_this.descripcionEstudio = '';
|
|
8903
|
+
_this.fechaInicioEstudio = '';
|
|
8904
|
+
_this.fechaFinEstudio = '';
|
|
8905
|
+
_this.tituloObtenido = 0;
|
|
8906
|
+
_this.yearAprobados = 0;
|
|
8907
|
+
_this.horasEstudiosRealizadas = 0;
|
|
8648
8908
|
if (e) {
|
|
8649
8909
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
8650
8910
|
_this.idConcurso = parseInt(e.id_concurso);
|
|
8651
|
-
_this.
|
|
8652
|
-
_this.
|
|
8653
|
-
_this.
|
|
8654
|
-
_this.
|
|
8655
|
-
_this.
|
|
8911
|
+
_this.idConcursante = parseInt(e.id_concursante);
|
|
8912
|
+
_this.idEstudio = parseInt(e.id_estudiocon);
|
|
8913
|
+
_this.codigoEstudio = e.codestrea;
|
|
8914
|
+
_this.institutoEstudio = e.insestper;
|
|
8915
|
+
_this.descripcionEstudio = e.desestper;
|
|
8916
|
+
_this.fechaInicioEstudio = e.fecinireaest;
|
|
8917
|
+
_this.fechaFinEstudio = e.fecfinestrea;
|
|
8918
|
+
_this.tituloObtenido = parseInt(e.titestper);
|
|
8919
|
+
_this.yearAprobados = parseInt(e.anoaprestper);
|
|
8920
|
+
_this.horasEstudiosRealizadas = parseInt(e.horestrea);
|
|
8921
|
+
}
|
|
8922
|
+
else {
|
|
8923
|
+
_this.isNew = true;
|
|
8656
8924
|
}
|
|
8657
8925
|
return _this;
|
|
8658
8926
|
}
|
|
8659
|
-
|
|
8927
|
+
MEstudiosConcursantes.prototype.dataInterface = function () {
|
|
8660
8928
|
return {
|
|
8661
8929
|
id_empresa: this.idEmpresa.toString(),
|
|
8662
8930
|
id_concurso: this.idConcurso.toString(),
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8931
|
+
id_concursante: this.idConcursante.toString(),
|
|
8932
|
+
id_estudiocon: this.idEstudio.toString(),
|
|
8933
|
+
codestrea: this.codigoEstudio,
|
|
8934
|
+
insestper: this.institutoEstudio,
|
|
8935
|
+
desestper: this.descripcionEstudio,
|
|
8936
|
+
fecinireaest: this.fechaInicioEstudio,
|
|
8937
|
+
fecfinestrea: this.fechaFinEstudio,
|
|
8938
|
+
titestper: this.tituloObtenido.toString(),
|
|
8939
|
+
anoaprestper: this.yearAprobados.toString(),
|
|
8940
|
+
horestrea: this.horasEstudiosRealizadas.toString(),
|
|
8668
8941
|
};
|
|
8669
8942
|
};
|
|
8670
|
-
return
|
|
8671
|
-
}(MBasicModel));
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
function MConcurso(e) {
|
|
8943
|
+
return MEstudiosConcursantes;
|
|
8944
|
+
}(MBasicModel));
|
|
8945
|
+
var MExperienciaLaboral = /** @class */ (function (_super) {
|
|
8946
|
+
__extends(MExperienciaLaboral, _super);
|
|
8947
|
+
function MExperienciaLaboral(e) {
|
|
8676
8948
|
if (e === void 0) { e = null; }
|
|
8677
8949
|
var _this = _super.call(this) || this;
|
|
8678
8950
|
_this.idEmpresa = 0;
|
|
8679
8951
|
_this.idConcurso = 0;
|
|
8680
|
-
_this.
|
|
8681
|
-
_this.
|
|
8682
|
-
_this.
|
|
8683
|
-
_this.
|
|
8684
|
-
_this.
|
|
8685
|
-
_this.
|
|
8686
|
-
_this.
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
|
|
8690
|
-
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8952
|
+
_this.idConcursante = 0;
|
|
8953
|
+
_this.idTrabajoConcursante = 0;
|
|
8954
|
+
_this.codigoTrabajo = '';
|
|
8955
|
+
_this.empresa = '';
|
|
8956
|
+
_this.cargo = '';
|
|
8957
|
+
_this.fechaIngreso = '';
|
|
8958
|
+
_this.fechaRetiro = '';
|
|
8959
|
+
if (e) {
|
|
8960
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
8961
|
+
_this.idConcursante = parseInt(e.id_concurso);
|
|
8962
|
+
_this.idConcursante = parseInt(e.id_concursante);
|
|
8963
|
+
_this.idTrabajoConcursante = parseInt(e.id_trabajocon);
|
|
8964
|
+
_this.codigoTrabajo = e.codtra;
|
|
8965
|
+
_this.empresa = e.emptraper;
|
|
8966
|
+
_this.cargo = e.cartraant;
|
|
8967
|
+
_this.fechaIngreso = e.fecingtraant;
|
|
8968
|
+
_this.fechaRetiro = e.fecrettraant;
|
|
8969
|
+
}
|
|
8970
|
+
else {
|
|
8971
|
+
_this.isNew = true;
|
|
8972
|
+
}
|
|
8973
|
+
return _this;
|
|
8974
|
+
}
|
|
8975
|
+
MExperienciaLaboral.prototype.dataInterface = function () {
|
|
8976
|
+
return {
|
|
8977
|
+
id_empresa: this.idEmpresa.toString(),
|
|
8978
|
+
id_concurso: this.idConcurso.toString(),
|
|
8979
|
+
id_concursante: this.idConcursante.toString(),
|
|
8980
|
+
id_trabajocon: this.idTrabajoConcursante.toString(),
|
|
8981
|
+
codtra: this.codigoTrabajo,
|
|
8982
|
+
emptraper: this.empresa,
|
|
8983
|
+
cartraant: this.cargo,
|
|
8984
|
+
fecingtraant: this.fechaIngreso,
|
|
8985
|
+
fecrettraant: this.fechaRetiro
|
|
8986
|
+
};
|
|
8987
|
+
};
|
|
8988
|
+
return MExperienciaLaboral;
|
|
8989
|
+
}(MBasicModel));
|
|
8990
|
+
var MFamiliaConcursante = /** @class */ (function (_super) {
|
|
8991
|
+
__extends(MFamiliaConcursante, _super);
|
|
8992
|
+
function MFamiliaConcursante(e) {
|
|
8993
|
+
if (e === void 0) { e = null; }
|
|
8994
|
+
var _this = _super.call(this) || this;
|
|
8995
|
+
_this.idEmpresa = 0;
|
|
8996
|
+
_this.idConcurso = 0;
|
|
8997
|
+
_this.idConcursante = 0;
|
|
8998
|
+
_this.idFamiliar = 0;
|
|
8999
|
+
_this.codigo = '';
|
|
9000
|
+
_this.cedula = '';
|
|
9001
|
+
_this.nombre = '';
|
|
9002
|
+
_this.apellido = '';
|
|
9003
|
+
_this.sexo = '';
|
|
9004
|
+
_this.nexo = '';
|
|
9005
|
+
_this.fecha = '';
|
|
9006
|
+
if (e) {
|
|
9007
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9008
|
+
_this.idConcurso = parseInt(e.id_concurso);
|
|
9009
|
+
_this.idConcursante = parseInt(e.id_concursante);
|
|
9010
|
+
_this.idFamiliar = parseInt(e.id_familiacon);
|
|
9011
|
+
_this.codigo = e.codfam;
|
|
9012
|
+
_this.cedula = e.cedfam;
|
|
9013
|
+
_this.nombre = e.nomfam;
|
|
9014
|
+
_this.apellido = e.apefam;
|
|
9015
|
+
_this.sexo = e.sexfam;
|
|
9016
|
+
_this.nexo = e.nexfam;
|
|
9017
|
+
_this.fecha = e.fecnacfam;
|
|
9018
|
+
}
|
|
9019
|
+
else {
|
|
9020
|
+
_this.isNew = true;
|
|
9021
|
+
}
|
|
9022
|
+
return _this;
|
|
9023
|
+
}
|
|
9024
|
+
MFamiliaConcursante.prototype.dataInterface = function () {
|
|
9025
|
+
return {
|
|
9026
|
+
id_empresa: this.idEmpresa.toString(),
|
|
9027
|
+
id_concurso: this.idConcurso.toString(),
|
|
9028
|
+
id_concursante: this.idConcursante.toString(),
|
|
9029
|
+
id_familiacon: this.idFamiliar.toString(),
|
|
9030
|
+
codfam: this.codigo,
|
|
9031
|
+
cedfam: this.cedula,
|
|
9032
|
+
nomfam: this.nombre,
|
|
9033
|
+
apefam: this.apellido,
|
|
9034
|
+
sexfam: this.sexo,
|
|
9035
|
+
nexfam: this.nexo,
|
|
9036
|
+
fecnacfam: this.fecha,
|
|
9037
|
+
};
|
|
9038
|
+
};
|
|
9039
|
+
return MFamiliaConcursante;
|
|
9040
|
+
}(MBasicModel));
|
|
9041
|
+
var MFormacionInformal = /** @class */ (function (_super) {
|
|
9042
|
+
__extends(MFormacionInformal, _super);
|
|
9043
|
+
function MFormacionInformal(e) {
|
|
9044
|
+
if (e === void 0) { e = null; }
|
|
9045
|
+
var _this = _super.call(this) || this;
|
|
9046
|
+
_this.idEmpresa = 0;
|
|
9047
|
+
_this.idConcurso = 0;
|
|
9048
|
+
_this.idConcursante = 0;
|
|
9049
|
+
_this.idCurso = 0;
|
|
9050
|
+
_this.codigoCurso = '';
|
|
9051
|
+
_this.descripcionCurso = '';
|
|
9052
|
+
_this.horasCurso = 0;
|
|
9053
|
+
if (e) {
|
|
9054
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9055
|
+
_this.idConcursante = parseInt(e.id_concurso);
|
|
9056
|
+
_this.idConcursante = parseInt(e.id_concursante);
|
|
9057
|
+
_this.idCurso = parseInt(e.id_curso);
|
|
9058
|
+
_this.codigoCurso = e.codcur;
|
|
9059
|
+
_this.descripcionCurso = e.desestrea;
|
|
9060
|
+
_this.horasCurso = parseInt(e.horestrea);
|
|
9061
|
+
}
|
|
9062
|
+
else {
|
|
9063
|
+
_this.isNew = true;
|
|
9064
|
+
}
|
|
9065
|
+
return _this;
|
|
9066
|
+
}
|
|
9067
|
+
MFormacionInformal.prototype.dataInterface = function () {
|
|
9068
|
+
return {
|
|
9069
|
+
id_empresa: this.idEmpresa.toString(),
|
|
9070
|
+
id_concurso: this.idConcurso.toString(),
|
|
9071
|
+
id_concursante: this.idConcurso.toString(),
|
|
9072
|
+
id_curso: this.idCurso.toString(),
|
|
9073
|
+
codcur: this.codigoCurso,
|
|
9074
|
+
desestrea: this.descripcionCurso,
|
|
9075
|
+
horestrea: this.horasCurso.toString()
|
|
9076
|
+
};
|
|
9077
|
+
};
|
|
9078
|
+
return MFormacionInformal;
|
|
9079
|
+
}(MBasicModel));
|
|
9080
|
+
|
|
9081
|
+
var MRequisitosConcursos = /** @class */ (function (_super) {
|
|
9082
|
+
__extends(MRequisitosConcursos, _super);
|
|
9083
|
+
function MRequisitosConcursos(e) {
|
|
9084
|
+
var _this = _super.call(this) || this;
|
|
9085
|
+
_this.idEmpresa = 0;
|
|
9086
|
+
_this.idConcurso = 0;
|
|
9087
|
+
_this.idRequisito = 0;
|
|
9088
|
+
_this.codigoRequisito = '';
|
|
9089
|
+
_this.denominacionRequisito = '';
|
|
9090
|
+
_this.cantidadRequisito = 0;
|
|
9091
|
+
_this.requisitoIndispensable = 0;
|
|
9092
|
+
if (e) {
|
|
9093
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9094
|
+
_this.idConcurso = parseInt(e.id_concurso);
|
|
9095
|
+
_this.idRequisito = parseInt(e.id_reqcon);
|
|
9096
|
+
_this.codigoRequisito = e.codreqcon;
|
|
9097
|
+
_this.denominacionRequisito = e.denreqcon;
|
|
9098
|
+
_this.cantidadRequisito = parseInt(e.cantreq);
|
|
9099
|
+
_this.requisitoIndispensable = parseInt(e.reqindcon);
|
|
9100
|
+
}
|
|
9101
|
+
return _this;
|
|
9102
|
+
}
|
|
9103
|
+
MRequisitosConcursos.prototype.dataInterface = function () {
|
|
9104
|
+
return {
|
|
9105
|
+
id_empresa: this.idEmpresa.toString(),
|
|
9106
|
+
id_concurso: this.idConcurso.toString(),
|
|
9107
|
+
id_reqcon: this.idRequisito.toString(),
|
|
9108
|
+
codreqcon: this.codigoRequisito,
|
|
9109
|
+
denreqcon: this.denominacionRequisito,
|
|
9110
|
+
cantreq: this.cantidadRequisito.toString(),
|
|
9111
|
+
reqindcon: this.requisitoIndispensable.toString()
|
|
9112
|
+
};
|
|
9113
|
+
};
|
|
9114
|
+
return MRequisitosConcursos;
|
|
9115
|
+
}(MBasicModel));
|
|
9116
|
+
|
|
9117
|
+
var MConcurso = /** @class */ (function (_super) {
|
|
9118
|
+
__extends(MConcurso, _super);
|
|
9119
|
+
function MConcurso(e) {
|
|
9120
|
+
if (e === void 0) { e = null; }
|
|
9121
|
+
var _this = _super.call(this) || this;
|
|
9122
|
+
_this.idEmpresa = 0;
|
|
9123
|
+
_this.idConcurso = 0;
|
|
9124
|
+
_this.codigoConcurso = '';
|
|
9125
|
+
_this.denominacionConcurso = '';
|
|
9126
|
+
_this.fechaAperturaConcurso = '';
|
|
9127
|
+
_this.fechaCierreConcurso = '';
|
|
9128
|
+
_this.idCargo = 0;
|
|
9129
|
+
_this.codigoCargo = '';
|
|
9130
|
+
_this.denominacionCargo = '';
|
|
9131
|
+
_this.tipo = '';
|
|
9132
|
+
_this.cantidadCargos = 0;
|
|
9133
|
+
_this.estatusConcurso = '1';
|
|
9134
|
+
_this.denominacionEstatus = '';
|
|
9135
|
+
_this.detalleRequisitos = [];
|
|
9136
|
+
_this.eliminarDetalles = [];
|
|
9137
|
+
if (e) {
|
|
8694
9138
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
8695
9139
|
_this.idConcurso = parseInt(e.id_concurso);
|
|
8696
9140
|
_this.codigoConcurso = e.codcon;
|
|
@@ -8729,6 +9173,192 @@
|
|
|
8729
9173
|
};
|
|
8730
9174
|
};
|
|
8731
9175
|
return MConcurso;
|
|
9176
|
+
}(MBasicModel));
|
|
9177
|
+
var MPrevioEvaluacion = /** @class */ (function (_super) {
|
|
9178
|
+
__extends(MPrevioEvaluacion, _super);
|
|
9179
|
+
function MPrevioEvaluacion(e) {
|
|
9180
|
+
if (e === void 0) { e = null; }
|
|
9181
|
+
var _this = _super.call(this) || this;
|
|
9182
|
+
_this.idEmpresa = 0;
|
|
9183
|
+
_this.idPrevio = 0;
|
|
9184
|
+
_this.proceso = '';
|
|
9185
|
+
_this.idConcurso = 0;
|
|
9186
|
+
_this.codigoConcurso = '';
|
|
9187
|
+
_this.nombreConcurso = '';
|
|
9188
|
+
_this.idConcursante = 0;
|
|
9189
|
+
_this.codigoConcursante = '';
|
|
9190
|
+
_this.nombreConcursante = '';
|
|
9191
|
+
_this.idTipoEvaluacion = 0;
|
|
9192
|
+
_this.codigoTipoEvaluacion = '';
|
|
9193
|
+
_this.nombreTipoEvaluacion = '';
|
|
9194
|
+
_this.fechaRegistro = '';
|
|
9195
|
+
_this.valorMinimoRequerido = 0;
|
|
9196
|
+
_this.usuarioRegistro = '';
|
|
9197
|
+
_this.horaRegistro = '';
|
|
9198
|
+
_this.estatusRegistro = 0;
|
|
9199
|
+
_this.detallesRegistro = [];
|
|
9200
|
+
if (e) {
|
|
9201
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9202
|
+
_this.idPrevio = parseInt(e.id_previo);
|
|
9203
|
+
_this.proceso = e.proceso;
|
|
9204
|
+
_this.idConcurso = parseInt(e.id_concurso);
|
|
9205
|
+
_this.codigoConcurso = e.codcon,
|
|
9206
|
+
_this.nombreConcurso = e.dencon,
|
|
9207
|
+
_this.idConcursante = parseInt(e.id_concursante);
|
|
9208
|
+
_this.codigoConcursante = e.cedper,
|
|
9209
|
+
_this.nombreConcursante = e.nomper,
|
|
9210
|
+
_this.idTipoEvaluacion = parseInt(e.id_tipoeval);
|
|
9211
|
+
_this.codigoTipoEvaluacion = e.codtipeval;
|
|
9212
|
+
_this.nombreTipoEvaluacion = e.dentipeval;
|
|
9213
|
+
_this.fechaRegistro = e.fecha;
|
|
9214
|
+
_this.valorMinimoRequerido = parseFloat(e.punreqmin);
|
|
9215
|
+
_this.usuarioRegistro = e.usuario;
|
|
9216
|
+
_this.horaRegistro = e.hora;
|
|
9217
|
+
_this.estatusRegistro = parseInt(e.estatus);
|
|
9218
|
+
_this.tipo = e.tipo;
|
|
9219
|
+
_this.detallesRegistro = e.detalles.map(function (e) { return new MPrevioEvaluacionDt(e); });
|
|
9220
|
+
}
|
|
9221
|
+
else {
|
|
9222
|
+
_this.isNew = true;
|
|
9223
|
+
}
|
|
9224
|
+
return _this;
|
|
9225
|
+
}
|
|
9226
|
+
MPrevioEvaluacion.prototype.dataInterface = function () {
|
|
9227
|
+
return {
|
|
9228
|
+
id_empresa: this.idEmpresa.toString(),
|
|
9229
|
+
id_previo: this.idPrevio.toString(),
|
|
9230
|
+
proceso: this.proceso,
|
|
9231
|
+
id_concurso: this.idConcurso.toString(),
|
|
9232
|
+
codcon: this.codigoConcurso,
|
|
9233
|
+
dencon: this.nombreConcurso,
|
|
9234
|
+
id_concursante: this.idConcursante.toString(),
|
|
9235
|
+
cedper: this.codigoConcursante,
|
|
9236
|
+
nomper: this.nombreConcursante,
|
|
9237
|
+
id_tipoeval: this.idTipoEvaluacion.toString(),
|
|
9238
|
+
codtipeval: this.codigoTipoEvaluacion,
|
|
9239
|
+
dentipeval: this.nombreTipoEvaluacion,
|
|
9240
|
+
fecha: this.fechaRegistro,
|
|
9241
|
+
punreqmin: this.valorMinimoRequerido.toString(),
|
|
9242
|
+
usuario: this.usuarioRegistro,
|
|
9243
|
+
hora: this.horaRegistro,
|
|
9244
|
+
estatus: this.estatusRegistro.toString(),
|
|
9245
|
+
tipo: this.tipo,
|
|
9246
|
+
detalles: this.detallesRegistro.map(function (e) { return e.dataInterface(); })
|
|
9247
|
+
};
|
|
9248
|
+
};
|
|
9249
|
+
return MPrevioEvaluacion;
|
|
9250
|
+
}(MBasicModel));
|
|
9251
|
+
var MPrevioEvaluacionDt = /** @class */ (function (_super) {
|
|
9252
|
+
__extends(MPrevioEvaluacionDt, _super);
|
|
9253
|
+
function MPrevioEvaluacionDt(e) {
|
|
9254
|
+
if (e === void 0) { e = null; }
|
|
9255
|
+
var _this = _super.call(this) || this;
|
|
9256
|
+
_this.idEmpresa = 0;
|
|
9257
|
+
_this.idPrevio = 0;
|
|
9258
|
+
_this.idAspecto = 0;
|
|
9259
|
+
_this.idTipoEvaluacion = 0;
|
|
9260
|
+
_this.idItem = 0;
|
|
9261
|
+
_this.idDtPrevio = 0;
|
|
9262
|
+
_this.codigo = '';
|
|
9263
|
+
_this.descripcion = '';
|
|
9264
|
+
_this.puntos = 0;
|
|
9265
|
+
_this.valorMaximo = 0;
|
|
9266
|
+
if (e) {
|
|
9267
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9268
|
+
_this.idPrevio = parseInt(e.id_previo);
|
|
9269
|
+
_this.idAspecto = parseInt(e.id_aspecto);
|
|
9270
|
+
_this.idTipoEvaluacion = parseInt(e.id_tipoeval);
|
|
9271
|
+
_this.idItem = parseInt(e.id_item);
|
|
9272
|
+
_this.idDtPrevio = parseInt(e.id_dt_previo);
|
|
9273
|
+
_this.codigo = e.codite;
|
|
9274
|
+
_this.descripcion = e.denite;
|
|
9275
|
+
_this.puntos = parseInt(e.puntos);
|
|
9276
|
+
_this.valorMaximo = parseInt(e.valormax);
|
|
9277
|
+
}
|
|
9278
|
+
else {
|
|
9279
|
+
_this.isNew = true;
|
|
9280
|
+
}
|
|
9281
|
+
return _this;
|
|
9282
|
+
}
|
|
9283
|
+
MPrevioEvaluacionDt.prototype.dataInterface = function () {
|
|
9284
|
+
return {
|
|
9285
|
+
id_empresa: this.idEmpresa.toString(),
|
|
9286
|
+
id_previo: this.idPrevio.toString(),
|
|
9287
|
+
id_tipoeval: this.idTipoEvaluacion.toString(),
|
|
9288
|
+
id_aspecto: this.idAspecto.toString(),
|
|
9289
|
+
id_item: this.idItem.toString(),
|
|
9290
|
+
codite: this.codigo,
|
|
9291
|
+
denite: this.descripcion,
|
|
9292
|
+
puntos: this.puntos.toString(),
|
|
9293
|
+
valormax: this.valorMaximo.toString(),
|
|
9294
|
+
id_dt_previo: this.idDtPrevio.toString(),
|
|
9295
|
+
};
|
|
9296
|
+
};
|
|
9297
|
+
return MPrevioEvaluacionDt;
|
|
9298
|
+
}(MBasicModel));
|
|
9299
|
+
var MResultadosEvaluacion = /** @class */ (function (_super) {
|
|
9300
|
+
__extends(MResultadosEvaluacion, _super);
|
|
9301
|
+
function MResultadosEvaluacion(e) {
|
|
9302
|
+
var _this = _super.call(this) || this;
|
|
9303
|
+
_this.idEmpresa = 0;
|
|
9304
|
+
_this.idEvaluacion = 0;
|
|
9305
|
+
_this.idConcurso = 0;
|
|
9306
|
+
_this.codigoConcurso = '';
|
|
9307
|
+
_this.nombreConcurso = '';
|
|
9308
|
+
_this.idConcursante = 0;
|
|
9309
|
+
_this.codigoConcursante = '';
|
|
9310
|
+
_this.nombreConcursante = '';
|
|
9311
|
+
_this.observacion = '';
|
|
9312
|
+
_this.fechaRegistro = '';
|
|
9313
|
+
_this.resultado_tec = 0;
|
|
9314
|
+
_this.resultado_total = 0;
|
|
9315
|
+
_this.resultado_psi = 0;
|
|
9316
|
+
_this.resultado_rqm = 0;
|
|
9317
|
+
_this.usuarioRegistro = '';
|
|
9318
|
+
if (e) {
|
|
9319
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9320
|
+
_this.idEvaluacion = parseInt(e.id_evaluacion);
|
|
9321
|
+
_this.idConcurso = parseInt(e.id_concurso);
|
|
9322
|
+
_this.codigoConcurso = e.codcon,
|
|
9323
|
+
_this.nombreConcurso = e.dencon,
|
|
9324
|
+
_this.idConcursante = parseInt(e.id_concursante);
|
|
9325
|
+
_this.codigoConcursante = e.cedper,
|
|
9326
|
+
_this.nombreConcursante = e.nomper,
|
|
9327
|
+
_this.observacion = e.observacion,
|
|
9328
|
+
_this.fechaRegistro = e.fecha;
|
|
9329
|
+
_this.usuarioRegistro = e.usuario;
|
|
9330
|
+
_this.resultado_tec = parseFloat(e.resultado_tec);
|
|
9331
|
+
_this.resultado_total = parseFloat(e.resultado_total);
|
|
9332
|
+
_this.resultado_psi = parseFloat(e.resultado_psi);
|
|
9333
|
+
_this.resultado_rqm = parseFloat(e.resultado_rqm);
|
|
9334
|
+
_this.conclusion = e.conclusion;
|
|
9335
|
+
}
|
|
9336
|
+
else {
|
|
9337
|
+
_this.isNew = true;
|
|
9338
|
+
}
|
|
9339
|
+
return _this;
|
|
9340
|
+
}
|
|
9341
|
+
MResultadosEvaluacion.prototype.dataInterface = function () {
|
|
9342
|
+
return {
|
|
9343
|
+
id_empresa: this.idEmpresa.toString(),
|
|
9344
|
+
id_evaluacion: this.idEvaluacion.toString(),
|
|
9345
|
+
id_concurso: this.idConcurso.toString(),
|
|
9346
|
+
codcon: this.codigoConcurso,
|
|
9347
|
+
dencon: this.nombreConcurso,
|
|
9348
|
+
id_concursante: this.idConcursante.toString(),
|
|
9349
|
+
cedper: this.codigoConcursante,
|
|
9350
|
+
nomper: this.nombreConcursante,
|
|
9351
|
+
observacion: this.observacion,
|
|
9352
|
+
fecha: this.fechaRegistro,
|
|
9353
|
+
usuario: this.usuarioRegistro,
|
|
9354
|
+
resultado_tec: this.resultado_tec.toString(),
|
|
9355
|
+
resultado_psi: this.resultado_psi.toString(),
|
|
9356
|
+
resultado_total: this.resultado_total.toString(),
|
|
9357
|
+
resultado_rqm: this.resultado_rqm.toString(),
|
|
9358
|
+
conclusion: this.conclusion,
|
|
9359
|
+
};
|
|
9360
|
+
};
|
|
9361
|
+
return MResultadosEvaluacion;
|
|
8732
9362
|
}(MBasicModel));
|
|
8733
9363
|
|
|
8734
9364
|
var MTipoPersonal = /** @class */ (function (_super) {
|
|
@@ -8970,6 +9600,25 @@
|
|
|
8970
9600
|
_this.idEp4 = 0;
|
|
8971
9601
|
_this.idEp5 = 0;
|
|
8972
9602
|
_this.codigoPadre = '';
|
|
9603
|
+
_this.codigoPais = '000058';
|
|
9604
|
+
_this.nombrePais = 'Venezuela';
|
|
9605
|
+
_this.codigoEstado = '';
|
|
9606
|
+
_this.nombreEstado = '';
|
|
9607
|
+
_this.codigoMunicipio = '';
|
|
9608
|
+
_this.nombreMunicipio = '';
|
|
9609
|
+
_this.codigoParroquia = '';
|
|
9610
|
+
_this.nombreParroquia = '';
|
|
9611
|
+
_this.estatusmpppe = 0;
|
|
9612
|
+
_this.ubicacionBolivariana = 0;
|
|
9613
|
+
_this.ubicacionFrontera = 0;
|
|
9614
|
+
_this.ubicacionIndigena = 0;
|
|
9615
|
+
_this.ubicacionInsular = 0;
|
|
9616
|
+
_this.ubicacionMarginal = 0;
|
|
9617
|
+
_this.ubicacionNocturno = 0;
|
|
9618
|
+
_this.ubicacionPlanta = 0;
|
|
9619
|
+
_this.ubicacionRobinson = 0;
|
|
9620
|
+
_this.ubicacionZona = 0;
|
|
9621
|
+
_this.ubicacionNoAplica = 0;
|
|
8973
9622
|
if (e) {
|
|
8974
9623
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
8975
9624
|
_this.idOrganigrama = parseInt(e.id_organigrama);
|
|
@@ -8984,6 +9633,25 @@
|
|
|
8984
9633
|
_this.idEp4 = parseInt(e.id_ep4);
|
|
8985
9634
|
_this.idEp5 = parseInt(e.id_ep5);
|
|
8986
9635
|
_this.codigoPadre = e.codpadre;
|
|
9636
|
+
_this.codigoPais = e.codpai;
|
|
9637
|
+
_this.nombrePais = e.despai;
|
|
9638
|
+
_this.codigoEstado = e.codest;
|
|
9639
|
+
_this.nombreEstado = e.desest;
|
|
9640
|
+
_this.codigoMunicipio = e.codmun;
|
|
9641
|
+
_this.nombreMunicipio = e.desmun;
|
|
9642
|
+
_this.codigoParroquia = e.codpar;
|
|
9643
|
+
_this.nombreParroquia = e.despar;
|
|
9644
|
+
_this.estatusmpppe = e.estmpppe;
|
|
9645
|
+
_this.ubicacionBolivariana = e.ubibolivariana;
|
|
9646
|
+
_this.ubicacionFrontera = e.ubifrontera;
|
|
9647
|
+
_this.ubicacionIndigena = e.ubiindigena;
|
|
9648
|
+
_this.ubicacionInsular = e.ubiinsular;
|
|
9649
|
+
_this.ubicacionMarginal = e.ubimarginal;
|
|
9650
|
+
_this.ubicacionNocturno = e.ubinocturno;
|
|
9651
|
+
_this.ubicacionPlanta = e.ubiplanta;
|
|
9652
|
+
_this.ubicacionRobinson = e.ubirobinson;
|
|
9653
|
+
_this.ubicacionZona = e.ubizona;
|
|
9654
|
+
_this.ubicacionNoAplica = e.ubinoaplica;
|
|
8987
9655
|
}
|
|
8988
9656
|
return _this;
|
|
8989
9657
|
}
|
|
@@ -9002,6 +9670,25 @@
|
|
|
9002
9670
|
id_ep4: this.idEp4.toString(),
|
|
9003
9671
|
id_ep5: this.idEp5.toString(),
|
|
9004
9672
|
codpadre: this.codigoPadre,
|
|
9673
|
+
codpai: this.codigoPais,
|
|
9674
|
+
despai: this.nombrePais,
|
|
9675
|
+
codest: this.codigoEstado,
|
|
9676
|
+
desest: this.nombreEstado,
|
|
9677
|
+
codmun: this.codigoMunicipio,
|
|
9678
|
+
desmun: this.nombreMunicipio,
|
|
9679
|
+
codpar: this.codigoParroquia,
|
|
9680
|
+
despar: this.nombreParroquia,
|
|
9681
|
+
estmpppe: this.estatusmpppe,
|
|
9682
|
+
ubibolivariana: this.ubicacionBolivariana,
|
|
9683
|
+
ubifrontera: this.ubicacionFrontera,
|
|
9684
|
+
ubiindigena: this.ubicacionIndigena,
|
|
9685
|
+
ubiinsular: this.ubicacionInsular,
|
|
9686
|
+
ubimarginal: this.ubicacionMarginal,
|
|
9687
|
+
ubinocturno: this.ubicacionNocturno,
|
|
9688
|
+
ubiplanta: this.ubicacionPlanta,
|
|
9689
|
+
ubirobinson: this.ubicacionRobinson,
|
|
9690
|
+
ubizona: this.ubicacionZona,
|
|
9691
|
+
ubinoaplica: this.ubicacionNoAplica
|
|
9005
9692
|
};
|
|
9006
9693
|
};
|
|
9007
9694
|
return MEstructuraOrganizativa;
|
|
@@ -9030,6 +9717,7 @@
|
|
|
9030
9717
|
_this.codigoFamiliar = '';
|
|
9031
9718
|
_this.direccionFamiliar = '';
|
|
9032
9719
|
_this.telefonoFamiliar = '';
|
|
9720
|
+
_this.hijoDiscapacidad = '0';
|
|
9033
9721
|
if (e) {
|
|
9034
9722
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9035
9723
|
_this.idPersonal = parseInt(e.id_personal);
|
|
@@ -9050,6 +9738,10 @@
|
|
|
9050
9738
|
_this.codigoFamiliar = e.codfam;
|
|
9051
9739
|
_this.direccionFamiliar = e.dirfam;
|
|
9052
9740
|
_this.telefonoFamiliar = e.telfam;
|
|
9741
|
+
_this.hijoDiscapacidad = e.hijodiscapacitado;
|
|
9742
|
+
}
|
|
9743
|
+
else {
|
|
9744
|
+
_this.isNew = true;
|
|
9053
9745
|
}
|
|
9054
9746
|
return _this;
|
|
9055
9747
|
}
|
|
@@ -9074,6 +9766,7 @@
|
|
|
9074
9766
|
codfam: this.codigoFamiliar,
|
|
9075
9767
|
dirfam: this.direccionFamiliar,
|
|
9076
9768
|
telfam: this.telefonoFamiliar,
|
|
9769
|
+
hijodiscapacitado: this.hijoDiscapacidad,
|
|
9077
9770
|
};
|
|
9078
9771
|
};
|
|
9079
9772
|
return MFamiliares;
|
|
@@ -9597,7 +10290,6 @@
|
|
|
9597
10290
|
_this.descripcionPrima = '';
|
|
9598
10291
|
_this.montoPrima = 0;
|
|
9599
10292
|
_this.IdDetallePrima = 0;
|
|
9600
|
-
_this.isNew = true;
|
|
9601
10293
|
if (e) {
|
|
9602
10294
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
9603
10295
|
_this.idTabulador = parseInt(e.id_tabulador);
|
|
@@ -9607,7 +10299,6 @@
|
|
|
9607
10299
|
_this.descripcionPrima = e.despri;
|
|
9608
10300
|
_this.montoPrima = parseInt(e.monpri);
|
|
9609
10301
|
_this.IdDetallePrima = parseInt(e.id_dt_prima);
|
|
9610
|
-
_this.isNew = false;
|
|
9611
10302
|
}
|
|
9612
10303
|
else {
|
|
9613
10304
|
_this.isNew = true;
|
|
@@ -9718,9 +10409,9 @@
|
|
|
9718
10409
|
return MPrimasConcepto;
|
|
9719
10410
|
}(MBasicModel));
|
|
9720
10411
|
|
|
9721
|
-
var
|
|
9722
|
-
__extends(
|
|
9723
|
-
function
|
|
10412
|
+
var MRequisitosConcursantes = /** @class */ (function (_super) {
|
|
10413
|
+
__extends(MRequisitosConcursantes, _super);
|
|
10414
|
+
function MRequisitosConcursantes(e) {
|
|
9724
10415
|
if (e === void 0) { e = null; }
|
|
9725
10416
|
var _this = _super.call(this) || this;
|
|
9726
10417
|
_this.idEmpresa = 0;
|
|
@@ -9748,7 +10439,7 @@
|
|
|
9748
10439
|
}
|
|
9749
10440
|
return _this;
|
|
9750
10441
|
}
|
|
9751
|
-
|
|
10442
|
+
MRequisitosConcursantes.prototype.dataInterface = function () {
|
|
9752
10443
|
return {
|
|
9753
10444
|
id_empresa: this.idEmpresa.toString(),
|
|
9754
10445
|
id_concurso: this.idConcurso.toString(),
|
|
@@ -9761,7 +10452,7 @@
|
|
|
9761
10452
|
canentreqcon: this.cantidadEntregado.toString()
|
|
9762
10453
|
};
|
|
9763
10454
|
};
|
|
9764
|
-
return
|
|
10455
|
+
return MRequisitosConcursantes;
|
|
9765
10456
|
}(MBasicModel));
|
|
9766
10457
|
|
|
9767
10458
|
var MRequisitosMinimos = /** @class */ (function (_super) {
|
|
@@ -10523,6 +11214,7 @@
|
|
|
10523
11214
|
_this.codigoUsuario = '';
|
|
10524
11215
|
_this.diaVacacionesCalendario = 0;
|
|
10525
11216
|
_this.diasHabiles = 0;
|
|
11217
|
+
_this.procesarFueraPeriodo = 0;
|
|
10526
11218
|
if (e) {
|
|
10527
11219
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
10528
11220
|
_this.idPersonal = parseInt(e.id_personal);
|
|
@@ -10556,6 +11248,7 @@
|
|
|
10556
11248
|
_this.codigoUsuario = (e.codusu);
|
|
10557
11249
|
_this.diaVacacionesCalendario = parseInt(e.diavaccal);
|
|
10558
11250
|
_this.diasHabiles = parseInt(e.diahab);
|
|
11251
|
+
_this.procesarFueraPeriodo = parseInt(e.profueper);
|
|
10559
11252
|
}
|
|
10560
11253
|
return _this;
|
|
10561
11254
|
}
|
|
@@ -10593,6 +11286,7 @@
|
|
|
10593
11286
|
codusu: this.codigoUsuario,
|
|
10594
11287
|
diavaccal: this.diaVacacionesCalendario.toString(),
|
|
10595
11288
|
diahab: this.diasHabiles.toString(),
|
|
11289
|
+
profueper: this.procesarFueraPeriodo.toString(),
|
|
10596
11290
|
};
|
|
10597
11291
|
};
|
|
10598
11292
|
return MVacacionesPersonal;
|
|
@@ -10955,6 +11649,887 @@
|
|
|
10955
11649
|
return MPlantillasConstancia;
|
|
10956
11650
|
}(MBasicModel));
|
|
10957
11651
|
|
|
11652
|
+
var MImpuestoSobreRenta = /** @class */ (function (_super) {
|
|
11653
|
+
__extends(MImpuestoSobreRenta, _super);
|
|
11654
|
+
function MImpuestoSobreRenta(e) {
|
|
11655
|
+
var _this = _super.call(this) || this;
|
|
11656
|
+
_this.idEmpresa = 0;
|
|
11657
|
+
_this.idPersonal = 0;
|
|
11658
|
+
_this.idImpuestoSobreRenta = 0;
|
|
11659
|
+
_this.porcentajeIsr = 0;
|
|
11660
|
+
_this.idConcepto = 0;
|
|
11661
|
+
_this.enero = 0;
|
|
11662
|
+
_this.febrero = 0;
|
|
11663
|
+
_this.marzo = 0;
|
|
11664
|
+
_this.abril = 0;
|
|
11665
|
+
_this.mayo = 0;
|
|
11666
|
+
_this.junio = 0;
|
|
11667
|
+
_this.julio = 0;
|
|
11668
|
+
_this.agosto = 0;
|
|
11669
|
+
_this.septiembre = 0;
|
|
11670
|
+
_this.octubre = 0;
|
|
11671
|
+
_this.noviembre = 0;
|
|
11672
|
+
_this.diciembre = 0;
|
|
11673
|
+
_this.denominacionConcepto = '';
|
|
11674
|
+
if (e) {
|
|
11675
|
+
_this.idEmpresa = +e.id_empresa;
|
|
11676
|
+
_this.idPersonal = +e.id_personal;
|
|
11677
|
+
_this.idImpuestoSobreRenta = +e.id_isr;
|
|
11678
|
+
_this.porcentajeIsr = +e.porisr;
|
|
11679
|
+
_this.idConcepto = +e.id_conret;
|
|
11680
|
+
_this.enero = +e.enero;
|
|
11681
|
+
_this.febrero = +e.febrero;
|
|
11682
|
+
_this.marzo = +e.marzo;
|
|
11683
|
+
_this.abril = +e.abril;
|
|
11684
|
+
_this.mayo = +e.mayo;
|
|
11685
|
+
_this.junio = +e.junio;
|
|
11686
|
+
_this.julio = +e.julio;
|
|
11687
|
+
_this.agosto = +e.agosto;
|
|
11688
|
+
_this.septiembre = +e.septiembre;
|
|
11689
|
+
_this.octubre = +e.octubre;
|
|
11690
|
+
_this.noviembre = +e.noviembre;
|
|
11691
|
+
_this.diciembre = +e.diciembre;
|
|
11692
|
+
_this.denominacionConcepto = e.desact;
|
|
11693
|
+
}
|
|
11694
|
+
else {
|
|
11695
|
+
_this.isNew = true;
|
|
11696
|
+
}
|
|
11697
|
+
return _this;
|
|
11698
|
+
}
|
|
11699
|
+
MImpuestoSobreRenta.prototype.dataInterface = function () {
|
|
11700
|
+
return {
|
|
11701
|
+
id_empresa: this.idEmpresa,
|
|
11702
|
+
id_personal: this.idPersonal,
|
|
11703
|
+
id_isr: this.idImpuestoSobreRenta,
|
|
11704
|
+
porisr: this.porcentajeIsr,
|
|
11705
|
+
id_conret: this.idConcepto,
|
|
11706
|
+
enero: this.enero,
|
|
11707
|
+
febrero: this.febrero,
|
|
11708
|
+
marzo: this.marzo,
|
|
11709
|
+
abril: this.abril,
|
|
11710
|
+
mayo: this.mayo,
|
|
11711
|
+
junio: this.junio,
|
|
11712
|
+
julio: this.julio,
|
|
11713
|
+
agosto: this.agosto,
|
|
11714
|
+
septiembre: this.septiembre,
|
|
11715
|
+
octubre: this.octubre,
|
|
11716
|
+
noviembre: this.noviembre,
|
|
11717
|
+
diciembre: this.diciembre,
|
|
11718
|
+
desact: this.denominacionConcepto
|
|
11719
|
+
};
|
|
11720
|
+
};
|
|
11721
|
+
return MImpuestoSobreRenta;
|
|
11722
|
+
}(MBasicModel));
|
|
11723
|
+
|
|
11724
|
+
var MMetodoBanco = /** @class */ (function (_super) {
|
|
11725
|
+
__extends(MMetodoBanco, _super);
|
|
11726
|
+
function MMetodoBanco(e) {
|
|
11727
|
+
if (e === void 0) { e = null; }
|
|
11728
|
+
var _this = _super.call(this) || this;
|
|
11729
|
+
_this.idEmpresa = 0;
|
|
11730
|
+
_this.idMetodoBanco = 0;
|
|
11731
|
+
_this.id = 0;
|
|
11732
|
+
_this.codigoMetodo = '';
|
|
11733
|
+
_this.denominacionMetodo = '';
|
|
11734
|
+
_this.tipoMetodo = '';
|
|
11735
|
+
_this.codigoEmpresaNominal = '';
|
|
11736
|
+
_this.tipoCuentaCreditoNominal = '';
|
|
11737
|
+
_this.tipoCuentaDebitoNominal = '';
|
|
11738
|
+
_this.codigoOficinaNomina = '';
|
|
11739
|
+
_this.pagoTaquillaNomina = 0;
|
|
11740
|
+
_this.numeroReferencia = 0;
|
|
11741
|
+
_this.numeroConvenio = '';
|
|
11742
|
+
_this.activo = 0;
|
|
11743
|
+
if (e) {
|
|
11744
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
11745
|
+
_this.idMetodoBanco = parseInt(e.id_metbco);
|
|
11746
|
+
_this.codigoMetodo = e.codmet;
|
|
11747
|
+
_this.denominacionMetodo = e.denmet;
|
|
11748
|
+
_this.tipoMetodo = e.tipmet;
|
|
11749
|
+
_this.id = parseInt(e.id_banco);
|
|
11750
|
+
_this.codigoEmpresaNominal = e.codempnom;
|
|
11751
|
+
_this.tipoCuentaCreditoNominal = e.tipcuecrenom;
|
|
11752
|
+
_this.tipoCuentaDebitoNominal = e.tipcuedebnom;
|
|
11753
|
+
_this.codigoOficinaNomina = e.codofinom;
|
|
11754
|
+
_this.pagoTaquillaNomina = parseInt(e.pagtaqnom);
|
|
11755
|
+
_this.numeroReferencia = parseInt(e.nroref);
|
|
11756
|
+
_this.activo = parseInt(e.activo);
|
|
11757
|
+
_this.numeroConvenio = e.numconnom;
|
|
11758
|
+
}
|
|
11759
|
+
else {
|
|
11760
|
+
_this.isNew = true;
|
|
11761
|
+
}
|
|
11762
|
+
return _this;
|
|
11763
|
+
}
|
|
11764
|
+
MMetodoBanco.prototype.dataInterface = function () {
|
|
11765
|
+
return {
|
|
11766
|
+
id_empresa: this.idEmpresa.toString(),
|
|
11767
|
+
id_metbco: this.idMetodoBanco.toString(),
|
|
11768
|
+
codmet: this.codigoMetodo,
|
|
11769
|
+
denmet: this.denominacionMetodo,
|
|
11770
|
+
tipmet: this.tipoMetodo,
|
|
11771
|
+
id_banco: this.id.toString(),
|
|
11772
|
+
codempnom: this.codigoEmpresaNominal,
|
|
11773
|
+
tipcuecrenom: this.tipoCuentaCreditoNominal,
|
|
11774
|
+
tipcuedebnom: this.tipoCuentaDebitoNominal,
|
|
11775
|
+
codofinom: this.codigoOficinaNomina,
|
|
11776
|
+
pagtaqnom: this.pagoTaquillaNomina.toString(),
|
|
11777
|
+
nroref: this.numeroReferencia.toString(),
|
|
11778
|
+
activo: this.activo.toString(),
|
|
11779
|
+
numconnom: this.numeroConvenio,
|
|
11780
|
+
};
|
|
11781
|
+
};
|
|
11782
|
+
return MMetodoBanco;
|
|
11783
|
+
}(MBasicModel));
|
|
11784
|
+
var MMetodos = /** @class */ (function (_super) {
|
|
11785
|
+
__extends(MMetodos, _super);
|
|
11786
|
+
function MMetodos(e) {
|
|
11787
|
+
if (e === void 0) { e = null; }
|
|
11788
|
+
var _this = _super.call(this) || this;
|
|
11789
|
+
_this.idEmpresa = 0;
|
|
11790
|
+
_this.idMetodo = 0;
|
|
11791
|
+
_this.codigoMetodo = '';
|
|
11792
|
+
_this.denominacionMetodo = '';
|
|
11793
|
+
_this.montoMetodo = 0;
|
|
11794
|
+
_this.metodoCestaTicket = '';
|
|
11795
|
+
_this.codigoProducto = '';
|
|
11796
|
+
_this.montoDescuentoDia = 0;
|
|
11797
|
+
_this.numeroTarjeta = '';
|
|
11798
|
+
if (e) {
|
|
11799
|
+
_this.idEmpresa = parseInt(e.id_empresa);
|
|
11800
|
+
_this.idMetodo = parseInt(e.id_metodo);
|
|
11801
|
+
_this.codigoMetodo = e.codmet;
|
|
11802
|
+
_this.denominacionMetodo = e.denmet;
|
|
11803
|
+
_this.montoMetodo = +e.monmet;
|
|
11804
|
+
_this.metodoCestaTicket = e.metcestic;
|
|
11805
|
+
_this.codigoProducto = e.codprod;
|
|
11806
|
+
_this.montoDescuentoDia = +e.mondesdia;
|
|
11807
|
+
_this.numeroTarjeta = e.nrotarjeta;
|
|
11808
|
+
}
|
|
11809
|
+
else {
|
|
11810
|
+
_this.isNew = true;
|
|
11811
|
+
}
|
|
11812
|
+
return _this;
|
|
11813
|
+
}
|
|
11814
|
+
MMetodos.prototype.dataInterface = function () {
|
|
11815
|
+
return {
|
|
11816
|
+
id_empresa: this.idEmpresa.toString(),
|
|
11817
|
+
id_metodo: this.idMetodo.toString(),
|
|
11818
|
+
codmet: this.codigoMetodo,
|
|
11819
|
+
denmet: this.denominacionMetodo,
|
|
11820
|
+
monmet: this.montoMetodo,
|
|
11821
|
+
metcestic: this.metodoCestaTicket,
|
|
11822
|
+
codprod: this.codigoProducto,
|
|
11823
|
+
mondesdia: this.montoDescuentoDia,
|
|
11824
|
+
nrotarjeta: this.numeroTarjeta,
|
|
11825
|
+
};
|
|
11826
|
+
};
|
|
11827
|
+
return MMetodos;
|
|
11828
|
+
}(MBasicModel));
|
|
11829
|
+
|
|
11830
|
+
var MPeriodosPlan = /** @class */ (function (_super) {
|
|
11831
|
+
__extends(MPeriodosPlan, _super);
|
|
11832
|
+
function MPeriodosPlan(e) {
|
|
11833
|
+
if (e === void 0) { e = null; }
|
|
11834
|
+
var _this = _super.call(this) || this;
|
|
11835
|
+
_this.idEmpresa = 0;
|
|
11836
|
+
_this.idPlanHorario = 0;
|
|
11837
|
+
_this.codigoPeriodoPlan = '';
|
|
11838
|
+
_this.denominacionPeriodoPlan = '';
|
|
11839
|
+
_this.fechaPeriodoPlan = '1900-01-01';
|
|
11840
|
+
_this.idPeriodo = 0;
|
|
11841
|
+
_this.codigoPeriodo = '';
|
|
11842
|
+
_this.idHorario = 0;
|
|
11843
|
+
_this.incidencias = '';
|
|
11844
|
+
_this.idDetalle = 0;
|
|
11845
|
+
if (e) {
|
|
11846
|
+
_this.idEmpresa = +e.id_empresa;
|
|
11847
|
+
_this.idPlanHorario = +e.id_planhor;
|
|
11848
|
+
_this.codigoPeriodo = e.codperplan;
|
|
11849
|
+
_this.denominacionPeriodoPlan = e.denperplan;
|
|
11850
|
+
_this.fechaPeriodoPlan = e.fecperplan;
|
|
11851
|
+
_this.idPeriodo = +e.id_periodo;
|
|
11852
|
+
_this.codigoPeriodo = e.codperi;
|
|
11853
|
+
_this.idHorario = +e.id_hora;
|
|
11854
|
+
_this.incidencias = e.incidencias;
|
|
11855
|
+
_this.idDetalle = +e.id_detalle;
|
|
11856
|
+
}
|
|
11857
|
+
else {
|
|
11858
|
+
_this.isNew = true;
|
|
11859
|
+
}
|
|
11860
|
+
return _this;
|
|
11861
|
+
}
|
|
11862
|
+
MPeriodosPlan.prototype.dataInterface = function () {
|
|
11863
|
+
return {
|
|
11864
|
+
id_empresa: this.idEmpresa.toString(),
|
|
11865
|
+
id_planhor: this.idPlanHorario.toString(),
|
|
11866
|
+
codperplan: this.codigoPeriodoPlan,
|
|
11867
|
+
denperplan: this.denominacionPeriodoPlan,
|
|
11868
|
+
fecperplan: this.fechaPeriodoPlan,
|
|
11869
|
+
id_periodo: this.idPeriodo.toString(),
|
|
11870
|
+
codperi: this.codigoPeriodo,
|
|
11871
|
+
id_hora: this.idHorario.toString(),
|
|
11872
|
+
incidencias: this.incidencias,
|
|
11873
|
+
id_detalle: this.idDetalle.toString(),
|
|
11874
|
+
};
|
|
11875
|
+
};
|
|
11876
|
+
return MPeriodosPlan;
|
|
11877
|
+
}(MBasicModel));
|
|
11878
|
+
|
|
11879
|
+
var MPrestamo = /** @class */ (function (_super) {
|
|
11880
|
+
__extends(MPrestamo, _super);
|
|
11881
|
+
function MPrestamo(e) {
|
|
11882
|
+
if (e === void 0) { e = null; }
|
|
11883
|
+
var _this = _super.call(this) || this;
|
|
11884
|
+
_this.idEmpresa = 0;
|
|
11885
|
+
_this.idPersonal = 0;
|
|
11886
|
+
_this.idPrestamo = 0;
|
|
11887
|
+
_this.numeroPrestamo = 0;
|
|
11888
|
+
_this.idTipoPrestamo = 0;
|
|
11889
|
+
_this.idNomina = 0;
|
|
11890
|
+
_this.idConcepto = 0;
|
|
11891
|
+
_this.montoPrestamo = 0;
|
|
11892
|
+
_this.numeroCuotasPrestamo = 0;
|
|
11893
|
+
_this.idPeriodo = 0;
|
|
11894
|
+
_this.motoAmortizacionPrestamo = 0;
|
|
11895
|
+
_this.estatusPrestamo = 1;
|
|
11896
|
+
_this.fechaPrestamo = '1900-01-01';
|
|
11897
|
+
_this.observacionRecalculoPrestamo = '';
|
|
11898
|
+
_this.observacionSuspencionPrestamo = '';
|
|
11899
|
+
_this.tipoCuota = '0';
|
|
11900
|
+
_this.denominacionTipoPrestamo = '';
|
|
11901
|
+
_this.codigoTipoPrestamo = '';
|
|
11902
|
+
_this.denominacionNomina = '';
|
|
11903
|
+
_this.codigoNomina = '';
|
|
11904
|
+
_this.denominacionConcepto = '';
|
|
11905
|
+
_this.codigoConcepto = '';
|
|
11906
|
+
_this.codigoPeriodo = '';
|
|
11907
|
+
_this.fechaFinPeriodo = '1900-01-01';
|
|
11908
|
+
_this.montoCuotaPrestamo = 0;
|
|
11909
|
+
_this.saldoPrestamo = 0;
|
|
11910
|
+
_this.numeroPeriodoNomina = 0;
|
|
11911
|
+
_this.periodos = [];
|
|
11912
|
+
_this.amortizacion = [];
|
|
11913
|
+
if (e) {
|
|
11914
|
+
_this.idEmpresa = +e.id_empresa;
|
|
11915
|
+
_this.idPrestamo = +e.id_prestamo;
|
|
11916
|
+
_this.idPersonal = +e.id_personal;
|
|
11917
|
+
_this.numeroPrestamo = +e.numpre;
|
|
11918
|
+
_this.idTipoPrestamo = +e.id_tipoprestamo;
|
|
11919
|
+
_this.idNomina = +e.id_nomina;
|
|
11920
|
+
_this.idConcepto = +e.id_concepto;
|
|
11921
|
+
_this.montoPrestamo = +e.monpre;
|
|
11922
|
+
_this.numeroCuotasPrestamo = +e.numcuopre;
|
|
11923
|
+
_this.idPeriodo = +e.id_periodo;
|
|
11924
|
+
_this.motoAmortizacionPrestamo = +e.monamopre;
|
|
11925
|
+
_this.estatusPrestamo = +e.estpre;
|
|
11926
|
+
_this.fechaPrestamo = e.fecpre;
|
|
11927
|
+
_this.observacionRecalculoPrestamo = e.obsrecpre;
|
|
11928
|
+
_this.observacionSuspencionPrestamo = e.obssuspre;
|
|
11929
|
+
_this.tipoCuota = e.tipcuopre;
|
|
11930
|
+
_this.denominacionTipoPrestamo = e.destippre;
|
|
11931
|
+
_this.codigoTipoPrestamo = e.codtippre;
|
|
11932
|
+
_this.denominacionNomina = e.dennom;
|
|
11933
|
+
_this.codigoNomina = e.codnom;
|
|
11934
|
+
_this.denominacionConcepto = e.nomcon;
|
|
11935
|
+
_this.codigoConcepto = e.codconc;
|
|
11936
|
+
_this.codigoPeriodo = e.codperi;
|
|
11937
|
+
_this.fechaFinPeriodo = e.fechasper;
|
|
11938
|
+
_this.numeroPeriodoNomina = +e.numpernom;
|
|
11939
|
+
_this.periodos = e.periodos.map(function (e) { return new MPrestamosPeriodo(e); });
|
|
11940
|
+
_this.amortizacion = e.amortizacion.map(function (e) { return new MPrestamoAmortizacion(e); });
|
|
11941
|
+
_this.montoCuotaPrestamo = _this.calcularCuotas();
|
|
11942
|
+
_this.saldoPrestamo = _this.calcularSaldo();
|
|
11943
|
+
}
|
|
11944
|
+
else {
|
|
11945
|
+
_this.isNew = true;
|
|
11946
|
+
}
|
|
11947
|
+
return _this;
|
|
11948
|
+
}
|
|
11949
|
+
MPrestamo.prototype.dataInterface = function () {
|
|
11950
|
+
return {
|
|
11951
|
+
id_empresa: this.idEmpresa,
|
|
11952
|
+
id_personal: this.idPersonal,
|
|
11953
|
+
id_prestamo: this.idPrestamo,
|
|
11954
|
+
numpre: this.numeroPrestamo,
|
|
11955
|
+
id_tipoprestamo: this.idTipoPrestamo,
|
|
11956
|
+
id_nomina: this.idNomina,
|
|
11957
|
+
id_concepto: this.idConcepto,
|
|
11958
|
+
monpre: this.montoPrestamo,
|
|
11959
|
+
numcuopre: this.numeroCuotasPrestamo,
|
|
11960
|
+
id_periodo: this.idPeriodo,
|
|
11961
|
+
monamopre: this.motoAmortizacionPrestamo,
|
|
11962
|
+
estpre: this.estatusPrestamo,
|
|
11963
|
+
fecpre: this.fechaPrestamo,
|
|
11964
|
+
obsrecpre: this.observacionRecalculoPrestamo,
|
|
11965
|
+
obssuspre: this.observacionSuspencionPrestamo,
|
|
11966
|
+
tipcuopre: this.tipoCuota,
|
|
11967
|
+
dennom: this.denominacionNomina,
|
|
11968
|
+
codnom: this.codigoNomina,
|
|
11969
|
+
destippre: this.denominacionTipoPrestamo,
|
|
11970
|
+
codtippre: this.codigoTipoPrestamo,
|
|
11971
|
+
nomcon: this.denominacionConcepto,
|
|
11972
|
+
codconc: this.codigoConcepto,
|
|
11973
|
+
codperi: this.codigoPeriodo,
|
|
11974
|
+
fechasper: this.fechaFinPeriodo,
|
|
11975
|
+
numpernom: this.numeroPeriodoNomina,
|
|
11976
|
+
periodos: this.periodos.map((function (e) { return e.dataInterface(); })),
|
|
11977
|
+
amortizacion: this.amortizacion.map((function (e) { return e.dataInterface(); }))
|
|
11978
|
+
};
|
|
11979
|
+
};
|
|
11980
|
+
MPrestamo.prototype.calcularCuotas = function () {
|
|
11981
|
+
var i = this.periodos.length - 1;
|
|
11982
|
+
if (i > 0) {
|
|
11983
|
+
return this.periodos[i].montoCuota;
|
|
11984
|
+
}
|
|
11985
|
+
return 0;
|
|
11986
|
+
};
|
|
11987
|
+
MPrestamo.prototype.calcularSaldo = function () {
|
|
11988
|
+
var montoPago = 0;
|
|
11989
|
+
this.periodos.forEach(function (element) {
|
|
11990
|
+
if (element.estatusCuota == 1) {
|
|
11991
|
+
montoPago = montoPago + element.montoCuota;
|
|
11992
|
+
}
|
|
11993
|
+
});
|
|
11994
|
+
return this.montoPrestamo - this.motoAmortizacionPrestamo - montoPago;
|
|
11995
|
+
};
|
|
11996
|
+
MPrestamo.prototype.cuotasCanceladas = function () {
|
|
11997
|
+
var cuotas = 0;
|
|
11998
|
+
this.periodos.forEach(function (element) {
|
|
11999
|
+
if (element.estatusCuota == 1) {
|
|
12000
|
+
cuotas = cuotas + 1;
|
|
12001
|
+
}
|
|
12002
|
+
});
|
|
12003
|
+
return cuotas;
|
|
12004
|
+
};
|
|
12005
|
+
return MPrestamo;
|
|
12006
|
+
}(MBasicModel));
|
|
12007
|
+
var MPrestamosPeriodo = /** @class */ (function (_super) {
|
|
12008
|
+
__extends(MPrestamosPeriodo, _super);
|
|
12009
|
+
function MPrestamosPeriodo(e) {
|
|
12010
|
+
var _this = _super.call(this) || this;
|
|
12011
|
+
_this.idEmpresa = 0;
|
|
12012
|
+
_this.idPersonal = 0;
|
|
12013
|
+
_this.idPrestamo = 0;
|
|
12014
|
+
_this.numeroCuota = 0;
|
|
12015
|
+
_this.idPeriodo = 0;
|
|
12016
|
+
_this.fechaInicioPeriodo = '';
|
|
12017
|
+
_this.fechaFinPeriodo = '';
|
|
12018
|
+
_this.montoCuota = 0;
|
|
12019
|
+
_this.estatusCuota = 0;
|
|
12020
|
+
if (e) {
|
|
12021
|
+
_this.idEmpresa = +e.id_empresa;
|
|
12022
|
+
_this.idPersonal = +e.id_personal;
|
|
12023
|
+
_this.idPrestamo = +e.id_prestamo;
|
|
12024
|
+
_this.numeroCuota = +e.numcuo;
|
|
12025
|
+
_this.idPeriodo = +e.id_periodocob;
|
|
12026
|
+
_this.fechaInicioPeriodo = e.feciniper;
|
|
12027
|
+
_this.fechaFinPeriodo = e.fecfinper;
|
|
12028
|
+
_this.montoCuota = +e.moncuo;
|
|
12029
|
+
_this.estatusCuota = +e.estcuo;
|
|
12030
|
+
_this.codigoPeriodo = e.codperipre;
|
|
12031
|
+
_this.denominacionEstatus = _this.denominacion();
|
|
12032
|
+
}
|
|
12033
|
+
else {
|
|
12034
|
+
_this.isNew = true;
|
|
12035
|
+
}
|
|
12036
|
+
return _this;
|
|
12037
|
+
}
|
|
12038
|
+
MPrestamosPeriodo.prototype.dataInterface = function () {
|
|
12039
|
+
return {
|
|
12040
|
+
id_empresa: this.idEmpresa,
|
|
12041
|
+
id_personal: this.idPersonal,
|
|
12042
|
+
id_prestamo: this.idPrestamo,
|
|
12043
|
+
numcuo: this.numeroCuota,
|
|
12044
|
+
id_periodocob: this.idPeriodo,
|
|
12045
|
+
feciniper: this.fechaInicioPeriodo,
|
|
12046
|
+
fecfinper: this.fechaFinPeriodo,
|
|
12047
|
+
moncuo: this.montoCuota,
|
|
12048
|
+
estcuo: this.estatusCuota,
|
|
12049
|
+
codperipre: this.codigoPeriodo
|
|
12050
|
+
};
|
|
12051
|
+
};
|
|
12052
|
+
MPrestamosPeriodo.prototype.denominacion = function () {
|
|
12053
|
+
if (this.estatusCuota == 1) {
|
|
12054
|
+
return 'Cancelado';
|
|
12055
|
+
}
|
|
12056
|
+
else
|
|
12057
|
+
return 'No Cancelado';
|
|
12058
|
+
};
|
|
12059
|
+
return MPrestamosPeriodo;
|
|
12060
|
+
}(MBasicModel));
|
|
12061
|
+
var MPrestamoAmortizacion = /** @class */ (function (_super) {
|
|
12062
|
+
__extends(MPrestamoAmortizacion, _super);
|
|
12063
|
+
function MPrestamoAmortizacion(e) {
|
|
12064
|
+
var _this = _super.call(this) || this;
|
|
12065
|
+
_this.idEmpresa = 0;
|
|
12066
|
+
_this.idPersonal = 0;
|
|
12067
|
+
_this.idPrestamo = 0;
|
|
12068
|
+
_this.numeroAmortizacion = 0;
|
|
12069
|
+
_this.idPeriodoAmortizacion = 0;
|
|
12070
|
+
_this.fecchaAmortizacion = '1900-01-01';
|
|
12071
|
+
_this.montoAmortizacion = 0;
|
|
12072
|
+
_this.descripcionAmortizacion = '';
|
|
12073
|
+
if (e) {
|
|
12074
|
+
_this.idEmpresa = +e.id_empresa;
|
|
12075
|
+
_this.idPersonal = +e.id_personal;
|
|
12076
|
+
_this.idPrestamo = +e.id_prestamo;
|
|
12077
|
+
_this.numeroAmortizacion = +e.numamo;
|
|
12078
|
+
_this.idPeriodoAmortizacion = +e.id_periodoamo;
|
|
12079
|
+
_this.fecchaAmortizacion = e.fecamo;
|
|
12080
|
+
_this.montoAmortizacion = +e.monamo;
|
|
12081
|
+
_this.descripcionAmortizacion = e.desamo;
|
|
12082
|
+
}
|
|
12083
|
+
return _this;
|
|
12084
|
+
}
|
|
12085
|
+
MPrestamoAmortizacion.prototype.dataInterface = function () {
|
|
12086
|
+
return {
|
|
12087
|
+
id_empresa: this.idEmpresa,
|
|
12088
|
+
id_personal: this.idPersonal,
|
|
12089
|
+
id_prestamo: this.idPrestamo,
|
|
12090
|
+
numamo: this.numeroAmortizacion,
|
|
12091
|
+
id_periodoamo: this.idPeriodoAmortizacion,
|
|
12092
|
+
fecamo: this.fecchaAmortizacion,
|
|
12093
|
+
monamo: this.montoAmortizacion,
|
|
12094
|
+
desamo: this.descripcionAmortizacion,
|
|
12095
|
+
};
|
|
12096
|
+
};
|
|
12097
|
+
return MPrestamoAmortizacion;
|
|
12098
|
+
}(MBasicModel));
|
|
12099
|
+
|
|
12100
|
+
var MRConsolidadoConceptos = /** @class */ (function (_super) {
|
|
12101
|
+
__extends(MRConsolidadoConceptos, _super);
|
|
12102
|
+
function MRConsolidadoConceptos(e) {
|
|
12103
|
+
if (e === void 0) { e = null; }
|
|
12104
|
+
var _this = _super.call(this) || this;
|
|
12105
|
+
_this.idNominaDes = 0;
|
|
12106
|
+
_this.idNominaHas = 0;
|
|
12107
|
+
_this.codigoNominaDes = "";
|
|
12108
|
+
_this.codigoNominaHas = "";
|
|
12109
|
+
_this.idPersonalDes = 0;
|
|
12110
|
+
_this.idPersonalHas = 0;
|
|
12111
|
+
_this.codigoPersonalDes = "";
|
|
12112
|
+
_this.codigoPersonalHas = "";
|
|
12113
|
+
_this.ordenDesde = 0;
|
|
12114
|
+
_this.ordenHasta = 0;
|
|
12115
|
+
_this.idConceptoDes = 0;
|
|
12116
|
+
_this.idConceptoHas = 0;
|
|
12117
|
+
_this.codigoConceptoDes = "";
|
|
12118
|
+
_this.codigoConceptoHas = "";
|
|
12119
|
+
_this.tipoConcepto = "";
|
|
12120
|
+
_this.idPeriodoDes = 0;
|
|
12121
|
+
_this.idPeriodoHas = 0;
|
|
12122
|
+
_this.codidoPeriodoDes = "";
|
|
12123
|
+
_this.codidoPeriodoHas = "";
|
|
12124
|
+
_this.annocurso = 0;
|
|
12125
|
+
_this.orden = "1";
|
|
12126
|
+
_this.reporte = "";
|
|
12127
|
+
if (e) {
|
|
12128
|
+
_this.idNominaDes = e.id_nominaDes;
|
|
12129
|
+
_this.idNominaHas = e.id_nominaHas;
|
|
12130
|
+
_this.codigoNominaDes = e.codnomDes;
|
|
12131
|
+
_this.codigoNominaHas = e.codnomHas;
|
|
12132
|
+
_this.idPersonalDes = e.id_personalDes;
|
|
12133
|
+
_this.idPersonalHas = e.id_personalHas;
|
|
12134
|
+
_this.codigoPersonalDes = e.codperDes;
|
|
12135
|
+
_this.codigoPersonalHas = e.codperHas;
|
|
12136
|
+
_this.ordenDesde = e.ordenDesde;
|
|
12137
|
+
_this.ordenHasta = e.ordenHasta;
|
|
12138
|
+
_this.idConceptoDes = e.id_conceptoDes;
|
|
12139
|
+
_this.idConceptoHas = e.id_conceptoHas;
|
|
12140
|
+
_this.codigoConceptoDes = e.codconcDes;
|
|
12141
|
+
_this.codigoConceptoHas = e.codconcHas;
|
|
12142
|
+
_this.tipoConcepto = e.tipconc;
|
|
12143
|
+
_this.idPeriodoDes = e.id_periodoDes;
|
|
12144
|
+
_this.idPeriodoHas = e.id_periodoHas;
|
|
12145
|
+
_this.codidoPeriodoDes = e.codperiDes;
|
|
12146
|
+
_this.codidoPeriodoHas = e.codperiHas;
|
|
12147
|
+
_this.annocurso = e.anocur;
|
|
12148
|
+
_this.orden = e.orden;
|
|
12149
|
+
_this.reporte = e.reporte;
|
|
12150
|
+
}
|
|
12151
|
+
else {
|
|
12152
|
+
_this.isNew = true;
|
|
12153
|
+
}
|
|
12154
|
+
return _this;
|
|
12155
|
+
}
|
|
12156
|
+
MRConsolidadoConceptos.prototype.dataInterface = function () {
|
|
12157
|
+
return {
|
|
12158
|
+
id_nominaDes: this.idNominaDes,
|
|
12159
|
+
id_nominaHas: this.idNominaHas,
|
|
12160
|
+
codnomDes: this.codigoNominaDes,
|
|
12161
|
+
codnomHas: this.codigoNominaHas,
|
|
12162
|
+
id_personalDes: this.idPersonalDes,
|
|
12163
|
+
id_personalHas: this.idPersonalHas,
|
|
12164
|
+
codperDes: this.codigoPersonalDes,
|
|
12165
|
+
codperHas: this.codigoPersonalHas,
|
|
12166
|
+
ordenDesde: this.ordenDesde,
|
|
12167
|
+
ordenHasta: this.ordenHasta,
|
|
12168
|
+
id_conceptoDes: this.idConceptoDes,
|
|
12169
|
+
id_conceptoHas: this.idConceptoHas,
|
|
12170
|
+
codconcDes: this.codigoConceptoDes,
|
|
12171
|
+
codconcHas: this.codigoConceptoHas,
|
|
12172
|
+
tipconc: this.tipoConcepto,
|
|
12173
|
+
id_periodoDes: this.idPeriodoDes,
|
|
12174
|
+
id_periodoHas: this.idPeriodoHas,
|
|
12175
|
+
codperiDes: this.codidoPeriodoDes,
|
|
12176
|
+
codperiHas: this.codidoPeriodoHas,
|
|
12177
|
+
anocur: this.annocurso,
|
|
12178
|
+
orden: this.orden,
|
|
12179
|
+
reporte: this.reporte
|
|
12180
|
+
};
|
|
12181
|
+
};
|
|
12182
|
+
return MRConsolidadoConceptos;
|
|
12183
|
+
}(MBasicModel));
|
|
12184
|
+
var MRConstanciaTrabajo = /** @class */ (function (_super) {
|
|
12185
|
+
__extends(MRConstanciaTrabajo, _super);
|
|
12186
|
+
function MRConstanciaTrabajo(e) {
|
|
12187
|
+
if (e === void 0) { e = null; }
|
|
12188
|
+
var _this = _super.call(this) || this;
|
|
12189
|
+
_this.id_constancia = 0;
|
|
12190
|
+
_this.codigoconstancia = '';
|
|
12191
|
+
_this.plantilla_rtf = '';
|
|
12192
|
+
_this.archivo = '';
|
|
12193
|
+
_this.id_nomina = 0;
|
|
12194
|
+
_this.codigonomina = '';
|
|
12195
|
+
_this.id_personalDes = 0;
|
|
12196
|
+
_this.id_personalHas = 0;
|
|
12197
|
+
_this.codigopersonalDes = '';
|
|
12198
|
+
_this.codigopersonalHas = '';
|
|
12199
|
+
_this.orden = '1';
|
|
12200
|
+
if (e) {
|
|
12201
|
+
_this.id_constancia = e.id_constancia;
|
|
12202
|
+
_this.codigoconstancia = e.codconstra;
|
|
12203
|
+
_this.plantilla_rtf = e.plantilla_rtf;
|
|
12204
|
+
_this.archivo = e.archivo;
|
|
12205
|
+
_this.id_nomina = e.id_nomina;
|
|
12206
|
+
_this.codigonomina = e.codnom;
|
|
12207
|
+
_this.id_personalDes = e.id_personalDes;
|
|
12208
|
+
_this.id_personalHas = e.id_personalHas;
|
|
12209
|
+
_this.codigopersonalDes = e.codperDes;
|
|
12210
|
+
_this.codigopersonalHas = e.codperHas;
|
|
12211
|
+
_this.orden = e.orden;
|
|
12212
|
+
}
|
|
12213
|
+
else {
|
|
12214
|
+
_this.isNew = true;
|
|
12215
|
+
}
|
|
12216
|
+
return _this;
|
|
12217
|
+
}
|
|
12218
|
+
MRConstanciaTrabajo.prototype.dataInterface = function () {
|
|
12219
|
+
return {
|
|
12220
|
+
id_constancia: this.id_constancia,
|
|
12221
|
+
codconstra: this.codigoconstancia,
|
|
12222
|
+
plantilla_rtf: this.plantilla_rtf,
|
|
12223
|
+
archivo: this.archivo,
|
|
12224
|
+
id_nomina: this.id_nomina,
|
|
12225
|
+
codnom: this.codigonomina,
|
|
12226
|
+
id_personalDes: this.id_personalDes,
|
|
12227
|
+
id_personalHas: this.id_personalHas,
|
|
12228
|
+
codperDes: this.codigopersonalDes,
|
|
12229
|
+
codperHas: this.codigopersonalHas,
|
|
12230
|
+
orden: this.orden,
|
|
12231
|
+
};
|
|
12232
|
+
};
|
|
12233
|
+
return MRConstanciaTrabajo;
|
|
12234
|
+
}(MBasicModel));
|
|
12235
|
+
var MRArchivoTXT = /** @class */ (function (_super) {
|
|
12236
|
+
__extends(MRArchivoTXT, _super);
|
|
12237
|
+
function MRArchivoTXT(e) {
|
|
12238
|
+
if (e === void 0) { e = null; }
|
|
12239
|
+
var _this = _super.call(this) || this;
|
|
12240
|
+
_this.nombrearchivo = '';
|
|
12241
|
+
if (e) {
|
|
12242
|
+
_this.nombrearchivo = e.nombrearchivo;
|
|
12243
|
+
}
|
|
12244
|
+
else {
|
|
12245
|
+
_this.isNew = true;
|
|
12246
|
+
}
|
|
12247
|
+
return _this;
|
|
12248
|
+
}
|
|
12249
|
+
MRArchivoTXT.prototype.dataInterface = function () {
|
|
12250
|
+
return {
|
|
12251
|
+
nombrearchivo: this.nombrearchivo
|
|
12252
|
+
};
|
|
12253
|
+
};
|
|
12254
|
+
return MRArchivoTXT;
|
|
12255
|
+
}(MBasicModel));
|
|
12256
|
+
var MRListadoPersonal = /** @class */ (function (_super) {
|
|
12257
|
+
__extends(MRListadoPersonal, _super);
|
|
12258
|
+
function MRListadoPersonal(e) {
|
|
12259
|
+
if (e === void 0) { e = null; }
|
|
12260
|
+
var _this = _super.call(this) || this;
|
|
12261
|
+
_this.idNominaDes = 0;
|
|
12262
|
+
_this.idNominaHas = 0;
|
|
12263
|
+
_this.codigoNominaDes = "";
|
|
12264
|
+
_this.codigoNominaHas = "";
|
|
12265
|
+
_this.denominacionNominaDes = "";
|
|
12266
|
+
_this.denominacionNominaHas = "";
|
|
12267
|
+
_this.id_personalDes = 0;
|
|
12268
|
+
_this.id_personalHas = 0;
|
|
12269
|
+
_this.codigoPersonalDes = "";
|
|
12270
|
+
_this.codigoPersonalHas = "";
|
|
12271
|
+
_this.nombrePersonalDes = "";
|
|
12272
|
+
_this.nombrePersonalHas = "";
|
|
12273
|
+
_this.estatusPersonal = 1;
|
|
12274
|
+
_this.causaEgresoPer = "";
|
|
12275
|
+
_this.sexo = "";
|
|
12276
|
+
_this.codigoPais = "000058";
|
|
12277
|
+
_this.codigoEstado = "";
|
|
12278
|
+
_this.codigoMunicipio = "";
|
|
12279
|
+
_this.codigoParroquia = "";
|
|
12280
|
+
_this.nombrePais = "Venezuela";
|
|
12281
|
+
_this.nombreEstado = "";
|
|
12282
|
+
_this.nombreMunicipio = "";
|
|
12283
|
+
_this.nombreParroquia = "";
|
|
12284
|
+
_this.statusPersonalNomina = "";
|
|
12285
|
+
_this.fechaDesde = "";
|
|
12286
|
+
_this.fechaHasta = "";
|
|
12287
|
+
_this.orden = "1";
|
|
12288
|
+
_this.reporte = "";
|
|
12289
|
+
if (e) {
|
|
12290
|
+
_this.idNominaDes = e.id_nominaDes;
|
|
12291
|
+
_this.idNominaHas = e.id_nominaHas;
|
|
12292
|
+
_this.codigoNominaDes = e.codnomDes;
|
|
12293
|
+
_this.codigoNominaHas = e.codnomHas;
|
|
12294
|
+
_this.denominacionNominaDes = e.dennomDes;
|
|
12295
|
+
_this.denominacionNominaHas = e.dennomHas;
|
|
12296
|
+
_this.id_personalDes = e.id_personalDes;
|
|
12297
|
+
_this.id_personalHas = e.id_personalHas;
|
|
12298
|
+
_this.codigoPersonalDes = e.codperDes;
|
|
12299
|
+
_this.codigoPersonalHas = e.codperHas;
|
|
12300
|
+
_this.nombrePersonalDes = e.nomperDes;
|
|
12301
|
+
_this.nombrePersonalHas = e.nomperHas;
|
|
12302
|
+
_this.estatusPersonal = e.estper;
|
|
12303
|
+
_this.causaEgresoPer = e.cauegrper;
|
|
12304
|
+
_this.sexo = e.sexper;
|
|
12305
|
+
_this.codigoPais = e.codpai;
|
|
12306
|
+
_this.codigoEstado = e.codest;
|
|
12307
|
+
_this.codigoMunicipio = e.codmun;
|
|
12308
|
+
_this.codigoParroquia = e.codpar;
|
|
12309
|
+
_this.nombrePais = e.despai;
|
|
12310
|
+
_this.nombreEstado = e.desest;
|
|
12311
|
+
_this.nombreMunicipio = e.desmun;
|
|
12312
|
+
_this.nombreParroquia = e.despar;
|
|
12313
|
+
_this.statusPersonalNomina = e.staper;
|
|
12314
|
+
_this.fechaDesde = e.fechaDes;
|
|
12315
|
+
_this.fechaHasta = e.fechaHas;
|
|
12316
|
+
_this.orden = e.orden;
|
|
12317
|
+
_this.reporte = e.reporte;
|
|
12318
|
+
}
|
|
12319
|
+
else {
|
|
12320
|
+
_this.isNew = true;
|
|
12321
|
+
}
|
|
12322
|
+
return _this;
|
|
12323
|
+
}
|
|
12324
|
+
MRListadoPersonal.prototype.dataInterface = function () {
|
|
12325
|
+
return {
|
|
12326
|
+
id_nominaDes: this.idNominaDes,
|
|
12327
|
+
id_nominaHas: this.idNominaHas,
|
|
12328
|
+
codnomDes: this.codigoNominaDes,
|
|
12329
|
+
codnomHas: this.codigoNominaHas,
|
|
12330
|
+
dennomDes: this.denominacionNominaDes,
|
|
12331
|
+
dennomHas: this.denominacionNominaHas,
|
|
12332
|
+
id_personalDes: this.id_personalDes,
|
|
12333
|
+
id_personalHas: this.id_personalHas,
|
|
12334
|
+
codperDes: this.codigoPersonalDes,
|
|
12335
|
+
codperHas: this.codigoPersonalHas,
|
|
12336
|
+
nomperDes: this.nombrePersonalDes,
|
|
12337
|
+
nomperHas: this.nombrePersonalHas,
|
|
12338
|
+
estper: this.estatusPersonal,
|
|
12339
|
+
cauegrper: this.causaEgresoPer,
|
|
12340
|
+
sexper: this.sexo,
|
|
12341
|
+
codpai: this.codigoPais,
|
|
12342
|
+
codest: this.codigoEstado,
|
|
12343
|
+
codmun: this.codigoMunicipio,
|
|
12344
|
+
codpar: this.codigoParroquia,
|
|
12345
|
+
despai: this.nombrePais,
|
|
12346
|
+
desest: this.nombreEstado,
|
|
12347
|
+
desmun: this.nombreMunicipio,
|
|
12348
|
+
despar: this.nombreParroquia,
|
|
12349
|
+
staper: this.statusPersonalNomina,
|
|
12350
|
+
fechaDes: this.fechaDesde,
|
|
12351
|
+
fechaHas: this.fechaHasta,
|
|
12352
|
+
orden: this.orden,
|
|
12353
|
+
reporte: this.reporte
|
|
12354
|
+
};
|
|
12355
|
+
};
|
|
12356
|
+
return MRListadoPersonal;
|
|
12357
|
+
}(MBasicModel));
|
|
12358
|
+
var MRListadoSindicato = /** @class */ (function (_super) {
|
|
12359
|
+
__extends(MRListadoSindicato, _super);
|
|
12360
|
+
function MRListadoSindicato(e) {
|
|
12361
|
+
if (e === void 0) { e = null; }
|
|
12362
|
+
var _this = _super.call(this) || this;
|
|
12363
|
+
_this.idSindicatoDes = 0;
|
|
12364
|
+
_this.idSindicatoHas = 0;
|
|
12365
|
+
_this.codigoSindicatoDes = '';
|
|
12366
|
+
_this.codigoSindicatoHas = '';
|
|
12367
|
+
_this.reporte = '';
|
|
12368
|
+
if (e) {
|
|
12369
|
+
_this.idSindicatoDes = e.id_sindicatoDes;
|
|
12370
|
+
_this.idSindicatoHas = e.id_sindicatoHas;
|
|
12371
|
+
_this.codigoSindicatoDes = e.codSindicatoDes;
|
|
12372
|
+
_this.codigoSindicatoHas = e.codSindicatoHas;
|
|
12373
|
+
_this.reporte = e.reporte;
|
|
12374
|
+
}
|
|
12375
|
+
else {
|
|
12376
|
+
_this.isNew = true;
|
|
12377
|
+
}
|
|
12378
|
+
return _this;
|
|
12379
|
+
}
|
|
12380
|
+
MRListadoSindicato.prototype.dataInterface = function () {
|
|
12381
|
+
return {
|
|
12382
|
+
id_sindicatoDes: this.idSindicatoDes,
|
|
12383
|
+
id_sindicatoHas: this.idSindicatoHas,
|
|
12384
|
+
codSindicatoDes: this.codigoSindicatoDes,
|
|
12385
|
+
codSindicatoHas: this.codigoSindicatoHas,
|
|
12386
|
+
reporte: this.reporte,
|
|
12387
|
+
};
|
|
12388
|
+
};
|
|
12389
|
+
return MRListadoSindicato;
|
|
12390
|
+
}(MBasicModel));
|
|
12391
|
+
var MRListadoTipoPersonal = /** @class */ (function (_super) {
|
|
12392
|
+
__extends(MRListadoTipoPersonal, _super);
|
|
12393
|
+
function MRListadoTipoPersonal(e) {
|
|
12394
|
+
if (e === void 0) { e = null; }
|
|
12395
|
+
var _this = _super.call(this) || this;
|
|
12396
|
+
_this.idUbicacionFisica = 0;
|
|
12397
|
+
_this.codigoUbicacionFisica = "";
|
|
12398
|
+
_this.denominacionUbicacionFisica = "";
|
|
12399
|
+
_this.codigoPais = '000058';
|
|
12400
|
+
_this.nombrePais = 'Venezuela';
|
|
12401
|
+
_this.codigoEstado = '---';
|
|
12402
|
+
_this.nombreEstado = '';
|
|
12403
|
+
_this.codigoMunicipio = '---';
|
|
12404
|
+
_this.nombreMunicipio = '';
|
|
12405
|
+
_this.codigoParroquia = '---';
|
|
12406
|
+
_this.nombreParroquia = '';
|
|
12407
|
+
_this.reporte = '';
|
|
12408
|
+
_this.estatusPersonal = '';
|
|
12409
|
+
_this.idOrganigrama = 0;
|
|
12410
|
+
_this.codigoEstOrganizativa = '';
|
|
12411
|
+
_this.denominacionEstOrganizativa = '';
|
|
12412
|
+
_this.orden = '1';
|
|
12413
|
+
if (e) {
|
|
12414
|
+
_this.idUbicacionFisica = e.id_ubifis;
|
|
12415
|
+
_this.codigoUbicacionFisica = e.codubifis;
|
|
12416
|
+
_this.denominacionUbicacionFisica = e.denubifis;
|
|
12417
|
+
_this.codigoPais = '000058';
|
|
12418
|
+
_this.nombrePais = 'Venezuela';
|
|
12419
|
+
_this.codigoEstado = e.codest;
|
|
12420
|
+
_this.nombreEstado = e.desest;
|
|
12421
|
+
_this.codigoMunicipio = e.codmun;
|
|
12422
|
+
_this.nombreMunicipio = e.desmun;
|
|
12423
|
+
_this.codigoParroquia = e.codpar;
|
|
12424
|
+
_this.nombreParroquia = e.despar;
|
|
12425
|
+
_this.estatusPersonal = e.estper;
|
|
12426
|
+
_this.idOrganigrama = e.id_organigrama;
|
|
12427
|
+
_this.codigoEstOrganizativa = e.codestorg;
|
|
12428
|
+
_this.denominacionEstOrganizativa = e.denestorg;
|
|
12429
|
+
_this.reporte = e.reporte;
|
|
12430
|
+
_this.orden = e.orden;
|
|
12431
|
+
}
|
|
12432
|
+
else {
|
|
12433
|
+
_this.isNew = true;
|
|
12434
|
+
}
|
|
12435
|
+
return _this;
|
|
12436
|
+
}
|
|
12437
|
+
MRListadoTipoPersonal.prototype.dataInterface = function () {
|
|
12438
|
+
return {
|
|
12439
|
+
id_ubifis: this.idUbicacionFisica,
|
|
12440
|
+
codubifis: this.codigoUbicacionFisica,
|
|
12441
|
+
denubifis: this.denominacionUbicacionFisica,
|
|
12442
|
+
codpai: this.codigoPais,
|
|
12443
|
+
despai: this.nombrePais,
|
|
12444
|
+
codest: this.codigoEstado,
|
|
12445
|
+
desest: this.nombreEstado,
|
|
12446
|
+
codmun: this.codigoMunicipio,
|
|
12447
|
+
desmun: this.nombreMunicipio,
|
|
12448
|
+
codpar: this.codigoParroquia,
|
|
12449
|
+
despar: this.nombreParroquia,
|
|
12450
|
+
estper: this.estatusPersonal,
|
|
12451
|
+
id_organigrama: this.idOrganigrama,
|
|
12452
|
+
codestorg: this.codigoEstOrganizativa,
|
|
12453
|
+
denestorg: this.denominacionEstOrganizativa,
|
|
12454
|
+
reporte: this.reporte,
|
|
12455
|
+
orden: this.orden
|
|
12456
|
+
};
|
|
12457
|
+
};
|
|
12458
|
+
return MRListadoTipoPersonal;
|
|
12459
|
+
}(MBasicModel));
|
|
12460
|
+
var MRPeriodo = /** @class */ (function (_super) {
|
|
12461
|
+
__extends(MRPeriodo, _super);
|
|
12462
|
+
function MRPeriodo(e) {
|
|
12463
|
+
if (e === void 0) { e = null; }
|
|
12464
|
+
var _this = _super.call(this) || this;
|
|
12465
|
+
_this.idPeriodo = 0;
|
|
12466
|
+
_this.codigoPeriodo = '';
|
|
12467
|
+
_this.fechaDesdePeriodo = '1900-01-01';
|
|
12468
|
+
_this.fechaHastaperiodo = '1900-01-01';
|
|
12469
|
+
if (e) {
|
|
12470
|
+
_this.idPeriodo = parseInt(e.id_periodo);
|
|
12471
|
+
_this.codigoPeriodo = e.codperi;
|
|
12472
|
+
_this.fechaDesdePeriodo = e.fecdesper;
|
|
12473
|
+
_this.fechaHastaperiodo = e.fechasper;
|
|
12474
|
+
}
|
|
12475
|
+
else {
|
|
12476
|
+
_this.isNew = true;
|
|
12477
|
+
}
|
|
12478
|
+
return _this;
|
|
12479
|
+
}
|
|
12480
|
+
MRPeriodo.prototype.dataInterface = function () {
|
|
12481
|
+
return {
|
|
12482
|
+
id_periodo: this.idPeriodo.toString(),
|
|
12483
|
+
codperi: this.codigoPeriodo,
|
|
12484
|
+
fecdesper: this.fechaDesdePeriodo,
|
|
12485
|
+
fechasper: this.fechaHastaperiodo
|
|
12486
|
+
};
|
|
12487
|
+
};
|
|
12488
|
+
return MRPeriodo;
|
|
12489
|
+
}(MBasicModel));
|
|
12490
|
+
var MRRetenciones = /** @class */ (function (_super) {
|
|
12491
|
+
__extends(MRRetenciones, _super);
|
|
12492
|
+
function MRRetenciones(e) {
|
|
12493
|
+
if (e === void 0) { e = null; }
|
|
12494
|
+
var _this = _super.call(this) || this;
|
|
12495
|
+
_this.id_nomina = 0;
|
|
12496
|
+
_this.codigonomina = '';
|
|
12497
|
+
_this.id_personalDes = 0;
|
|
12498
|
+
_this.id_personalHas = 0;
|
|
12499
|
+
_this.codigopersonalDes = "";
|
|
12500
|
+
_this.codigopersonalHas = "";
|
|
12501
|
+
_this.annocurso = "";
|
|
12502
|
+
_this.reporte = "";
|
|
12503
|
+
if (e) {
|
|
12504
|
+
_this.id_nomina = e.id_nomina;
|
|
12505
|
+
_this.codigonomina = e.codnom;
|
|
12506
|
+
_this.id_personalDes = e.id_personalDes;
|
|
12507
|
+
_this.id_personalHas = e.id_personalHas;
|
|
12508
|
+
_this.codigopersonalDes = e.codperDes;
|
|
12509
|
+
_this.codigopersonalHas = e.codperHas;
|
|
12510
|
+
_this.annocurso = e.annocurso;
|
|
12511
|
+
_this.reporte = e.reporte;
|
|
12512
|
+
}
|
|
12513
|
+
else {
|
|
12514
|
+
_this.isNew = true;
|
|
12515
|
+
}
|
|
12516
|
+
return _this;
|
|
12517
|
+
}
|
|
12518
|
+
MRRetenciones.prototype.dataInterface = function () {
|
|
12519
|
+
return {
|
|
12520
|
+
id_nomina: this.id_nomina,
|
|
12521
|
+
codnom: this.codigonomina,
|
|
12522
|
+
id_personalDes: this.id_personalDes,
|
|
12523
|
+
id_personalHas: this.id_personalHas,
|
|
12524
|
+
codperDes: this.codigopersonalDes,
|
|
12525
|
+
codperHas: this.codigopersonalHas,
|
|
12526
|
+
annocurso: this.annocurso,
|
|
12527
|
+
reporte: this.reporte
|
|
12528
|
+
};
|
|
12529
|
+
};
|
|
12530
|
+
return MRRetenciones;
|
|
12531
|
+
}(MBasicModel));
|
|
12532
|
+
|
|
10958
12533
|
var customPaginator = /** @class */ (function (_super) {
|
|
10959
12534
|
__extends(customPaginator, _super);
|
|
10960
12535
|
function customPaginator() {
|
|
@@ -10997,6 +12572,7 @@
|
|
|
10997
12572
|
exports.MAllStructure = MAllStructure;
|
|
10998
12573
|
exports.MAnticipoPrestaciones = MAnticipoPrestaciones;
|
|
10999
12574
|
exports.MArchivoTxtCampo = MArchivoTxtCampo;
|
|
12575
|
+
exports.MArchivosTxt = MArchivosTxt;
|
|
11000
12576
|
exports.MAsignacionCargo = MAsignacionCargo;
|
|
11001
12577
|
exports.MAspectoEvaluacion = MAspectoEvaluacion;
|
|
11002
12578
|
exports.MBank = MBank;
|
|
@@ -11004,9 +12580,12 @@
|
|
|
11004
12580
|
exports.MBasicModel = MBasicModel;
|
|
11005
12581
|
exports.MBeneficiario = MBeneficiario;
|
|
11006
12582
|
exports.MCalculoPrestacion = MCalculoPrestacion;
|
|
12583
|
+
exports.MCambioEstatusPersonal = MCambioEstatusPersonal;
|
|
11007
12584
|
exports.MCargaFamiliar = MCargaFamiliar;
|
|
11008
12585
|
exports.MCargaMasiva = MCargaMasiva;
|
|
11009
12586
|
exports.MCargo = MCargo;
|
|
12587
|
+
exports.MCargoEstructuraOrganizativa = MCargoEstructuraOrganizativa;
|
|
12588
|
+
exports.MCargosNominas = MCargosNominas;
|
|
11010
12589
|
exports.MCargosPersonal = MCargosPersonal;
|
|
11011
12590
|
exports.MCentroCosto = MCentroCosto;
|
|
11012
12591
|
exports.MCity = MCity;
|
|
@@ -11063,6 +12642,9 @@
|
|
|
11063
12642
|
exports.MEstructuraPresupuestariaOne = MEstructuraPresupuestariaOne;
|
|
11064
12643
|
exports.MEstructuraPresupuestariaThree = MEstructuraPresupuestariaThree;
|
|
11065
12644
|
exports.MEstructuraPresupuestariaTwo = MEstructuraPresupuestariaTwo;
|
|
12645
|
+
exports.MEstudiosConcursantes = MEstudiosConcursantes;
|
|
12646
|
+
exports.MExperienciaLaboral = MExperienciaLaboral;
|
|
12647
|
+
exports.MFamiliaConcursante = MFamiliaConcursante;
|
|
11066
12648
|
exports.MFamiliares = MFamiliares;
|
|
11067
12649
|
exports.MFeriados = MFeriados;
|
|
11068
12650
|
exports.MFideicomiso = MFideicomiso;
|
|
@@ -11071,11 +12653,16 @@
|
|
|
11071
12653
|
exports.MFideicomisoPeriodoInteres = MFideicomisoPeriodoInteres;
|
|
11072
12654
|
exports.MFideicomisoPeriodoInteresCatalogo = MFideicomisoPeriodoInteresCatalogo;
|
|
11073
12655
|
exports.MFormacionAcademica = MFormacionAcademica;
|
|
12656
|
+
exports.MFormacionInformal = MFormacionInformal;
|
|
11074
12657
|
exports.MFuenteFinanciamiento = MFuenteFinanciamiento;
|
|
11075
12658
|
exports.MGrados = MGrados;
|
|
11076
12659
|
exports.MGroup = MGroup;
|
|
11077
12660
|
exports.MHojaTiempo = MHojaTiempo;
|
|
12661
|
+
exports.MImpuestoSobreRenta = MImpuestoSobreRenta;
|
|
12662
|
+
exports.MItemsEvalucion = MItemsEvalucion;
|
|
11078
12663
|
exports.MLog = MLog;
|
|
12664
|
+
exports.MMetodoBanco = MMetodoBanco;
|
|
12665
|
+
exports.MMetodos = MMetodos;
|
|
11079
12666
|
exports.MMoneda = MMoneda;
|
|
11080
12667
|
exports.MMonedaConfig = MMonedaConfig;
|
|
11081
12668
|
exports.MMunicipality = MMunicipality;
|
|
@@ -11083,21 +12670,32 @@
|
|
|
11083
12670
|
exports.MOrganizationType = MOrganizationType;
|
|
11084
12671
|
exports.MParish = MParish;
|
|
11085
12672
|
exports.MPeriodoNomina = MPeriodoNomina;
|
|
12673
|
+
exports.MPeriodosPlan = MPeriodosPlan;
|
|
11086
12674
|
exports.MPermisos = MPermisos;
|
|
11087
12675
|
exports.MPersonal = MPersonal;
|
|
12676
|
+
exports.MPersonalCuentaBanco = MPersonalCuentaBanco;
|
|
11088
12677
|
exports.MPersonalJubilado = MPersonalJubilado;
|
|
11089
12678
|
exports.MPersonalNomina = MPersonalNomina;
|
|
11090
12679
|
exports.MPlanUnicoCuenta = MPlanUnicoCuenta;
|
|
11091
12680
|
exports.MPlantillasConstancia = MPlantillasConstancia;
|
|
12681
|
+
exports.MPrestamo = MPrestamo;
|
|
12682
|
+
exports.MPrestamoAmortizacion = MPrestamoAmortizacion;
|
|
12683
|
+
exports.MPrestamosPeriodo = MPrestamosPeriodo;
|
|
12684
|
+
exports.MPrevioEvaluacion = MPrevioEvaluacion;
|
|
12685
|
+
exports.MPrevioEvaluacionDt = MPrevioEvaluacionDt;
|
|
11092
12686
|
exports.MPrimaGrados = MPrimaGrados;
|
|
11093
12687
|
exports.MPrimasConcepto = MPrimasConcepto;
|
|
11094
12688
|
exports.MProveedor = MProveedor;
|
|
11095
12689
|
exports.MProviderBankAccount = MProviderBankAccount;
|
|
11096
12690
|
exports.MProviderBeneficiary = MProviderBeneficiary;
|
|
12691
|
+
exports.MRArchivoTXT = MRArchivoTXT;
|
|
12692
|
+
exports.MRConsolidadoConceptos = MRConsolidadoConceptos;
|
|
12693
|
+
exports.MRConstanciaTrabajo = MRConstanciaTrabajo;
|
|
11097
12694
|
exports.MRango = MRango;
|
|
11098
|
-
exports.
|
|
12695
|
+
exports.MRequisitosConcursantes = MRequisitosConcursantes;
|
|
11099
12696
|
exports.MRequisitosConcursos = MRequisitosConcursos;
|
|
11100
12697
|
exports.MRequisitosMinimos = MRequisitosMinimos;
|
|
12698
|
+
exports.MResultadosEvaluacion = MResultadosEvaluacion;
|
|
11101
12699
|
exports.MRights = MRights;
|
|
11102
12700
|
exports.MSalarioHistorico = MSalarioHistorico;
|
|
11103
12701
|
exports.MService = MService;
|
|
@@ -11131,16 +12729,16 @@
|
|
|
11131
12729
|
exports.Signo = Signo;
|
|
11132
12730
|
exports.TipoCestaTicket = TipoCestaTicket;
|
|
11133
12731
|
exports.customPaginator = customPaginator;
|
|
11134
|
-
exports.ɵ
|
|
11135
|
-
exports.ɵ
|
|
11136
|
-
exports.ɵ
|
|
11137
|
-
exports.ɵ
|
|
11138
|
-
exports.ɵ
|
|
11139
|
-
exports.ɵ
|
|
11140
|
-
exports.ɵ
|
|
11141
|
-
exports.ɵ
|
|
11142
|
-
exports.ɵ
|
|
11143
|
-
exports.ɵ
|
|
12732
|
+
exports.ɵe = AppComponent;
|
|
12733
|
+
exports.ɵf = SharedModule;
|
|
12734
|
+
exports.ɵg = CatalogoComponent;
|
|
12735
|
+
exports.ɵi = ConfirmComponent;
|
|
12736
|
+
exports.ɵj = IconComponent;
|
|
12737
|
+
exports.ɵk = TableSelectComponent;
|
|
12738
|
+
exports.ɵl = CatalogoEstructurasComponent;
|
|
12739
|
+
exports.ɵm = CatalogoDobleInputComponent;
|
|
12740
|
+
exports.ɵn = IsoCurrencyPipe;
|
|
12741
|
+
exports.ɵo = CustonMaterialModule;
|
|
11144
12742
|
|
|
11145
12743
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
11146
12744
|
|