@eqproject/eqp-dynamic-module 2.7.32 → 2.7.34

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.
@@ -4499,12 +4499,14 @@ class DbgetterComponent {
4499
4499
  console.log("RELOAD COMPONENT CALLED", this.record, this.QueryEditorComponent.inputParams.config.record);
4500
4500
  this.reload = false;
4501
4501
  this.QueryEditorComponent.inputParams.config.record = this.record;
4502
+ this.QueryEditorComponent.inputParams.config.field = this.field;
4502
4503
  setTimeout(() => { this.reload = true; console.log("RELOADED QUERYEDITOR"); }, 1000);
4503
4504
  }
4504
4505
  checkRelations() {
4505
4506
  this.relationsLoaded = this.relations.find(x => x.loaded) != null;
4506
4507
  }
4507
4508
  onExternalSQLResultOut(ev) {
4509
+ console.log("Risultato dell'elaborazione del query editor: onExternalSQLResultOut", ev);
4508
4510
  if (ev.Behaviours.indexOf("send-out") != -1) {
4509
4511
  this.out.emit(ev);
4510
4512
  }
@@ -4545,12 +4547,12 @@ class DbgetterComponent {
4545
4547
  }
4546
4548
  }
4547
4549
  else {
4548
- this.showQE = true;
4550
+ //this.showQE = true;
4549
4551
  }
4550
4552
  }
4551
4553
  onClickButtonReply() {
4552
4554
  this.showTable = true;
4553
- this.showQE = true;
4555
+ //this.showQE = true;
4554
4556
  }
4555
4557
  selectValue(row, value) {
4556
4558
  var valueToBeSet = "";
@@ -4566,7 +4568,7 @@ class DbgetterComponent {
4566
4568
  this.showButtonReply = true;
4567
4569
  this.record[this.field.Name] = valueToBeSet;
4568
4570
  this.showTable = false;
4569
- this.showQE = false;
4571
+ //this.showQE = false;
4570
4572
  //EqpDynamicModuleDialogService.Success("Un solo risultato trovato, è stato inserito in automatico");
4571
4573
  this.selectedValue.emit([valueToBeSet, false]);
4572
4574
  }