sigesp 0.9.64-20230913 → 0.9.65-20230913
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/sigesp.umd.js +9 -0
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +10 -1
- package/fesm2015/sigesp.js +9 -0
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +3 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -4195,6 +4195,9 @@
|
|
|
4195
4195
|
_this.descripcionEstado = '';
|
|
4196
4196
|
_this.descripcionMunicipio = '';
|
|
4197
4197
|
_this.descripcionParroquia = '';
|
|
4198
|
+
_this.registroDescansoIncidencia = 'C00';
|
|
4199
|
+
_this.registroLaboralIncidencia = 'C00';
|
|
4200
|
+
_this.codigoConceptoVaccaiones = '';
|
|
4198
4201
|
if (I) {
|
|
4199
4202
|
_this.idEnterprise = +I.id_enterprise;
|
|
4200
4203
|
_this.idEmpresa = +I.id_empresa;
|
|
@@ -4329,6 +4332,9 @@
|
|
|
4329
4332
|
_this.descripcionEstado = I.desest;
|
|
4330
4333
|
_this.descripcionMunicipio = I.desmun;
|
|
4331
4334
|
_this.descripcionParroquia = I.despar;
|
|
4335
|
+
_this.registroDescansoIncidencia = I.regdesinc;
|
|
4336
|
+
_this.registroLaboralIncidencia = I.reglabinc;
|
|
4337
|
+
_this.segmentarPersonal = parseInt(I.segper);
|
|
4332
4338
|
}
|
|
4333
4339
|
else {
|
|
4334
4340
|
_this.isNew = true;
|
|
@@ -4466,6 +4472,9 @@
|
|
|
4466
4472
|
codest: this.codigoEstado,
|
|
4467
4473
|
codmun: this.codigoMunicipio,
|
|
4468
4474
|
codpar: this.codigoParroquia,
|
|
4475
|
+
segper: this.segmentarPersonal.toString(),
|
|
4476
|
+
regdesinc: this.registroDescansoIncidencia,
|
|
4477
|
+
reglabinc: this.registroLaboralIncidencia,
|
|
4469
4478
|
};
|
|
4470
4479
|
};
|
|
4471
4480
|
return MConfiguracionSNO;
|