sigesp 1.0.11-20240603 → 1.0.12-20240620

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.
@@ -4164,6 +4164,7 @@ class MConfiguracionSNO extends MBasicModel {
4164
4164
  this.codigoConceptoVaccaiones = '';
4165
4165
  this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = 1;
4166
4166
  this.cuentaContableProveedorBeneficiario = '';
4167
+ this.procesarSueldosHistoricos = 1;
4167
4168
  if (I) {
4168
4169
  this.idEnterprise = +I.id_enterprise;
4169
4170
  this.idEmpresa = +I.id_empresa;
@@ -4294,6 +4295,7 @@ class MConfiguracionSNO extends MBasicModel {
4294
4295
  this.registroLaboralIncidencia = I.reglabinc;
4295
4296
  this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = parseInt(I.incbenperautmodben);
4296
4297
  this.cuentaContableProveedorBeneficiario = I.sc_cuentarecdoc;
4298
+ this.procesarSueldosHistoricos = +I.prosuehis;
4297
4299
  }
4298
4300
  else {
4299
4301
  this.isNew = true;
@@ -4428,8 +4430,9 @@ class MConfiguracionSNO extends MBasicModel {
4428
4430
  digcodcon: this.digitosCodigoConcepto.toString(),
4429
4431
  regdesinc: this.registroDescansoIncidencia,
4430
4432
  reglabinc: this.registroLaboralIncidencia,
4431
- incbenperautmodben: this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios ? '1' : '0',
4432
- sc_cuentarecdoc: this.cuentaContableProveedorBeneficiario
4433
+ incbenperautmodben: this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios.toString(),
4434
+ sc_cuentarecdoc: this.cuentaContableProveedorBeneficiario,
4435
+ prosuehis: this.procesarSueldosHistoricos.toString(),
4433
4436
  };
4434
4437
  }
4435
4438
  }