sigesp 1.0.13-20240621 → 1.0.14-20240623
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/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +4 -1
- package/fesm2015/sigesp.mjs +3 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +3 -0
- package/fesm2020/sigesp.mjs.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/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
|
}
|