sigesp 1.0.14-20240623 → 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.
@@ -10342,6 +10342,7 @@ class MConstanteNomina extends MBasicModel {
10342
10342
  this.estatusIncidencia = 0;
10343
10343
  this.registroIncidencia = '';
10344
10344
  this.valorInicialIncidencia = 0;
10345
+ this.constanteGlobal = 0;
10345
10346
  if (e) {
10346
10347
  this.idEnterprise = +e.id_enterprise;
10347
10348
  this.idEmpresa = +e.id_empresa;
@@ -10360,6 +10361,7 @@ class MConstanteNomina extends MBasicModel {
10360
10361
  this.estatusIncidencia = parseInt(e.estincidencia);
10361
10362
  this.registroIncidencia = e.regincidencia;
10362
10363
  this.valorInicialIncidencia = parseFloat(e.valincidencia);
10364
+ this.constanteGlobal = +e.glocon;
10363
10365
  }
10364
10366
  else {
10365
10367
  this.isNew = true;
@@ -10384,6 +10386,7 @@ class MConstanteNomina extends MBasicModel {
10384
10386
  estincidencia: this.estatusIncidencia.toString(),
10385
10387
  regincidencia: this.registroIncidencia,
10386
10388
  valincidencia: this.valorInicialIncidencia.toString(),
10389
+ glocon: this.constanteGlobal.toString(),
10387
10390
  };
10388
10391
  }
10389
10392
  }