sigesp 1.0.13-20240621 → 1.0.15-20240722
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/esm2020/lib/core/interfaces/Nomina.mjs +1 -1
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +4 -1
- package/esm2020/lib/core/models/SNO/MConstanteNomina.model.mjs +4 -1
- package/fesm2015/sigesp.mjs +6 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +6 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +1 -0
- package/lib/core/models/SNO/MConstanteNomina.model.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -4165,6 +4165,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4165
4165
|
this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = 1;
|
|
4166
4166
|
this.cuentaContableProveedorBeneficiario = '';
|
|
4167
4167
|
this.procesarSueldosHistoricos = 1;
|
|
4168
|
+
this.altoVolumenDatos = 0;
|
|
4168
4169
|
if (I) {
|
|
4169
4170
|
this.idEnterprise = +I.id_enterprise;
|
|
4170
4171
|
this.idEmpresa = +I.id_empresa;
|
|
@@ -4296,6 +4297,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4296
4297
|
this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = parseInt(I.incbenperautmodben);
|
|
4297
4298
|
this.cuentaContableProveedorBeneficiario = I.sc_cuentarecdoc;
|
|
4298
4299
|
this.procesarSueldosHistoricos = +I.prosuehis;
|
|
4300
|
+
this.altoVolumenDatos = +I.altvoldat;
|
|
4299
4301
|
}
|
|
4300
4302
|
else {
|
|
4301
4303
|
this.isNew = true;
|
|
@@ -4433,6 +4435,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4433
4435
|
incbenperautmodben: this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios.toString(),
|
|
4434
4436
|
sc_cuentarecdoc: this.cuentaContableProveedorBeneficiario,
|
|
4435
4437
|
prosuehis: this.procesarSueldosHistoricos.toString(),
|
|
4438
|
+
altvoldat: this.altoVolumenDatos.toString(),
|
|
4436
4439
|
};
|
|
4437
4440
|
}
|
|
4438
4441
|
}
|
|
@@ -10339,6 +10342,7 @@ class MConstanteNomina extends MBasicModel {
|
|
|
10339
10342
|
this.estatusIncidencia = 0;
|
|
10340
10343
|
this.registroIncidencia = '';
|
|
10341
10344
|
this.valorInicialIncidencia = 0;
|
|
10345
|
+
this.constanteGlobal = 0;
|
|
10342
10346
|
if (e) {
|
|
10343
10347
|
this.idEnterprise = +e.id_enterprise;
|
|
10344
10348
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -10357,6 +10361,7 @@ class MConstanteNomina extends MBasicModel {
|
|
|
10357
10361
|
this.estatusIncidencia = parseInt(e.estincidencia);
|
|
10358
10362
|
this.registroIncidencia = e.regincidencia;
|
|
10359
10363
|
this.valorInicialIncidencia = parseFloat(e.valincidencia);
|
|
10364
|
+
this.constanteGlobal = +e.glocon;
|
|
10360
10365
|
}
|
|
10361
10366
|
else {
|
|
10362
10367
|
this.isNew = true;
|
|
@@ -10381,6 +10386,7 @@ class MConstanteNomina extends MBasicModel {
|
|
|
10381
10386
|
estincidencia: this.estatusIncidencia.toString(),
|
|
10382
10387
|
regincidencia: this.registroIncidencia,
|
|
10383
10388
|
valincidencia: this.valorInicialIncidencia.toString(),
|
|
10389
|
+
glocon: this.constanteGlobal.toString(),
|
|
10384
10390
|
};
|
|
10385
10391
|
}
|
|
10386
10392
|
}
|