sigesp 1.1.6-20240925 → 1.1.7-20240927

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.
@@ -1344,7 +1344,7 @@ class MCuentaInstitucional extends MBasicModel {
1344
1344
  class MMoneda extends MBasicModel {
1345
1345
  constructor(moneda) {
1346
1346
  super();
1347
- this.id_moneda = 0;
1347
+ this.idMoneda = 0;
1348
1348
  this.denominacion = '';
1349
1349
  this.iso = '';
1350
1350
  this.simbolo = '';
@@ -1353,7 +1353,7 @@ class MMoneda extends MBasicModel {
1353
1353
  this.decimales = 0;
1354
1354
  this.decimalesAlternos = 0;
1355
1355
  if (moneda) {
1356
- this.id_moneda = +moneda.id_moneda;
1356
+ this.idMoneda = +moneda.id_moneda;
1357
1357
  this.denominacion = moneda.denmon;
1358
1358
  this.iso = moneda.codiso;
1359
1359
  this.simbolo = moneda.simmon;
@@ -1365,7 +1365,7 @@ class MMoneda extends MBasicModel {
1365
1365
  }
1366
1366
  dataInterface() {
1367
1367
  return {
1368
- id_moneda: this.id_moneda.toString(),
1368
+ id_moneda: this.idMoneda.toString(),
1369
1369
  denmon: this.denominacion,
1370
1370
  codiso: this.iso,
1371
1371
  simmon: this.simbolo,
@@ -3802,7 +3802,7 @@ class MEmpresa extends MBasicModel {
3802
3802
  this.codigoMunicipio = '';
3803
3803
  this.codigoParroquia = '';
3804
3804
  this.codigoComunidad = '';
3805
- this.id_moneda = 0;
3805
+ this.idMoneda = 0;
3806
3806
  this.nombreRepresentanteLegal = '';
3807
3807
  this.cedulaRepresentanteLegal = '';
3808
3808
  this.telefonoRepresentanteLegal = '';
@@ -3831,7 +3831,6 @@ class MEmpresa extends MBasicModel {
3831
3831
  this.codigoCentroCosto = '';
3832
3832
  this.estructuraPresupuestaria = '';
3833
3833
  this.tipoEmpresa = 0;
3834
- this.idMoneda = 0;
3835
3834
  if (e) {
3836
3835
  this.idEmpresa = +e.id_empresa;
3837
3836
  this.rif = e.rifemp;