sigesp 0.8.51-211122 → 0.8.52-211212
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 +7 -1
- 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 +8 -2
- package/fesm2015/sigesp.js +7 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +1 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -3111,6 +3111,7 @@
|
|
|
3111
3111
|
_this.registroasistenciaincidencia = 'C00';
|
|
3112
3112
|
_this.manejoIndependienteModulo = 0;
|
|
3113
3113
|
_this.digitosCodigoConcepto = 10;
|
|
3114
|
+
_this.segmentarPersonal = 10000;
|
|
3114
3115
|
if (I) {
|
|
3115
3116
|
_this.idEmpresa = parseInt(I.id_empresa);
|
|
3116
3117
|
_this.idNomina = parseInt(I.id_sno);
|
|
@@ -3236,6 +3237,7 @@
|
|
|
3236
3237
|
_this.registroasistenciaincidencia = I.regasiinc;
|
|
3237
3238
|
_this.manejoIndependienteModulo = parseInt(I.manindmod);
|
|
3238
3239
|
_this.digitosCodigoConcepto = parseInt(I.digcodcon);
|
|
3240
|
+
_this.segmentarPersonal = parseInt(I.segper);
|
|
3239
3241
|
}
|
|
3240
3242
|
else {
|
|
3241
3243
|
_this.isNew = true;
|
|
@@ -3243,6 +3245,9 @@
|
|
|
3243
3245
|
return _this;
|
|
3244
3246
|
}
|
|
3245
3247
|
MConfiguracionSNO.prototype.dataInterface = function () {
|
|
3248
|
+
if (this.segmentarPersonal == 0) {
|
|
3249
|
+
this.segmentarPersonal = 10000;
|
|
3250
|
+
}
|
|
3246
3251
|
return {
|
|
3247
3252
|
id_empresa: this.idEmpresa.toString(),
|
|
3248
3253
|
id_sno: this.idNomina.toString(),
|
|
@@ -3367,7 +3372,8 @@
|
|
|
3367
3372
|
regferinc: this.registroferiadoincidencia,
|
|
3368
3373
|
regasiinc: this.registroasistenciaincidencia,
|
|
3369
3374
|
manindmod: this.manejoIndependienteModulo.toString(),
|
|
3370
|
-
digcodcon: this.digitosCodigoConcepto.toString()
|
|
3375
|
+
digcodcon: this.digitosCodigoConcepto.toString(),
|
|
3376
|
+
segper: this.segmentarPersonal.toString(),
|
|
3371
3377
|
};
|
|
3372
3378
|
};
|
|
3373
3379
|
return MConfiguracionSNO;
|