sigesp 1.1.57-20250722 → 1.1.59-20250729

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.
@@ -3882,6 +3882,7 @@ class MEstructuras extends MBasicModel {
3882
3882
  this.idEnterprise = 0;
3883
3883
  this.periodoFiscal = 0;
3884
3884
  this.idEmpresa = 0;
3885
+ this.orden = 0;
3885
3886
  this.fuentes = [];
3886
3887
  if (dt) {
3887
3888
  this.cuentaContable = dt.sc_cuenta;
@@ -3911,6 +3912,7 @@ class MEstructuras extends MBasicModel {
3911
3912
  this.estatusClasificacion = dt.estcla;
3912
3913
  this.denominacionEstatusClasificacion = dt.denestcla;
3913
3914
  this.idUnidadAdministrativa = parseInt(dt.id_uniadm);
3915
+ this.orden = +dt.orden;
3914
3916
  if (dt.fuentes) {
3915
3917
  this.fuentes = dt.fuentes.map(e => new MFuenteFinanciamiento(e));
3916
3918
  }
@@ -3930,6 +3932,7 @@ class MEstructuras extends MBasicModel {
3930
3932
  id_uniadm: this.idUnidadAdministrativa.toString(),
3931
3933
  estcla: this.estatusClasificacion,
3932
3934
  estructura: this.estructura,
3935
+ orden: this.orden.toString(),
3933
3936
  };
3934
3937
  }
3935
3938
  }
@@ -13897,6 +13900,8 @@ class MMetodoBanco extends MBasicModel {
13897
13900
  this.numeroReferencia = 0;
13898
13901
  this.numeroConvenio = '';
13899
13902
  this.activo = 0;
13903
+ this.nombreEmpresa = '';
13904
+ this.rifEmpresa = '';
13900
13905
  if (e) {
13901
13906
  this.idEnterprise = +e.id_enterprise;
13902
13907
  this.idEmpresa = +e.id_empresa;
@@ -13913,6 +13918,8 @@ class MMetodoBanco extends MBasicModel {
13913
13918
  this.numeroReferencia = parseInt(e.nroref);
13914
13919
  this.activo = parseInt(e.activo);
13915
13920
  this.numeroConvenio = e.numconnom;
13921
+ this.nombreEmpresa = e.nomemp;
13922
+ this.rifEmpresa = e.rifemp;
13916
13923
  }
13917
13924
  else {
13918
13925
  this.isNew = true;
@@ -13935,6 +13942,8 @@ class MMetodoBanco extends MBasicModel {
13935
13942
  nroref: this.numeroReferencia.toString(),
13936
13943
  activo: this.activo.toString(),
13937
13944
  numconnom: this.numeroConvenio,
13945
+ nomemp: this.nombreEmpresa,
13946
+ rifemp: this.rifEmpresa,
13938
13947
  };
13939
13948
  }
13940
13949
  }