sigesp 1.1.59-20250729 → 1.1.61-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.
@@ -13896,12 +13896,10 @@ class MMetodoBanco extends MBasicModel {
13896
13896
  this.tipoCuentaCreditoNominal = '';
13897
13897
  this.tipoCuentaDebitoNominal = '';
13898
13898
  this.codigoOficinaNomina = '';
13899
- this.pagoTaquillaNomina = 0;
13900
13899
  this.numeroReferencia = 0;
13901
13900
  this.numeroConvenio = '';
13902
13901
  this.activo = 0;
13903
- this.nombreEmpresa = '';
13904
- this.rifEmpresa = '';
13902
+ this.usarRifLinea = 0;
13905
13903
  if (e) {
13906
13904
  this.idEnterprise = +e.id_enterprise;
13907
13905
  this.idEmpresa = +e.id_empresa;
@@ -13914,12 +13912,10 @@ class MMetodoBanco extends MBasicModel {
13914
13912
  this.tipoCuentaCreditoNominal = e.tipcuecrenom;
13915
13913
  this.tipoCuentaDebitoNominal = e.tipcuedebnom;
13916
13914
  this.codigoOficinaNomina = e.codofinom;
13917
- this.pagoTaquillaNomina = parseInt(e.pagtaqnom);
13915
+ this.usarRifLinea = parseInt(e.usariflin);
13918
13916
  this.numeroReferencia = parseInt(e.nroref);
13919
13917
  this.activo = parseInt(e.activo);
13920
13918
  this.numeroConvenio = e.numconnom;
13921
- this.nombreEmpresa = e.nomemp;
13922
- this.rifEmpresa = e.rifemp;
13923
13919
  }
13924
13920
  else {
13925
13921
  this.isNew = true;
@@ -13938,12 +13934,10 @@ class MMetodoBanco extends MBasicModel {
13938
13934
  tipcuecrenom: this.tipoCuentaCreditoNominal,
13939
13935
  tipcuedebnom: this.tipoCuentaDebitoNominal,
13940
13936
  codofinom: this.codigoOficinaNomina,
13941
- pagtaqnom: this.pagoTaquillaNomina.toString(),
13937
+ usariflin: this.usarRifLinea.toString(),
13942
13938
  nroref: this.numeroReferencia.toString(),
13943
13939
  activo: this.activo.toString(),
13944
13940
  numconnom: this.numeroConvenio,
13945
- nomemp: this.nombreEmpresa,
13946
- rifemp: this.rifEmpresa,
13947
13941
  };
13948
13942
  }
13949
13943
  }