@eqproject/eqp-dynamic-module 2.7.13 → 2.7.15
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.
- package/esm2020/lib/components/private/dbgetter/dbgetter.component.mjs +6 -6
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +5 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +5 -5
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4419,16 +4419,14 @@ class DbgetterComponent {
|
|
|
4419
4419
|
this.QueryEditorComponent.inputParams.config.record = this.record;
|
|
4420
4420
|
this.QueryEditorComponent.inputParams.config.inConfig = this.inConfig;
|
|
4421
4421
|
if (this.field.DataGetter.DataGetterValue.openedFields.find(x => x.QueryPropertyValue == '?') != null) {
|
|
4422
|
-
// Il
|
|
4422
|
+
// Il campo ha almeno un valore con "?"
|
|
4423
4423
|
this.haveQuestions = true;
|
|
4424
4424
|
}
|
|
4425
4425
|
if (this.field.DataGetter.DataGetterValue.openedFields.find(x => x.QueryPropertyValue.indexOf('!') != -1) != null) {
|
|
4426
|
-
// Il
|
|
4426
|
+
// Il campo ha almeno un valore con "!nomerelazione"
|
|
4427
4427
|
this.haveRelations = true;
|
|
4428
4428
|
}
|
|
4429
|
-
|
|
4430
|
-
this.relationsLoaded = true;
|
|
4431
|
-
}
|
|
4429
|
+
this.relationsLoaded = true;
|
|
4432
4430
|
}
|
|
4433
4431
|
else {
|
|
4434
4432
|
if (this.data == null) {
|
|
@@ -4534,11 +4532,13 @@ class DbgetterComponent {
|
|
|
4534
4532
|
this.record[this.field.Name] = valueToBeSet;
|
|
4535
4533
|
this.showTable = false;
|
|
4536
4534
|
this.showQE = false;
|
|
4535
|
+
//EqpDynamicModuleDialogService.Success("Un solo risultato trovato, è stato inserito in automatico");
|
|
4537
4536
|
this.selectedValue.emit([valueToBeSet, false]);
|
|
4538
4537
|
}
|
|
4539
4538
|
close() {
|
|
4540
4539
|
this.selectedValue.emit(["****CLOSE****", true]);
|
|
4541
4540
|
this.showTable = false;
|
|
4541
|
+
this.showButtonReply = false;
|
|
4542
4542
|
}
|
|
4543
4543
|
delete() {
|
|
4544
4544
|
this.selectedValue.emit([null, true]);
|