@eqproject/eqp-dynamic-module 2.9.5 → 2.9.6
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 +5 -1
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +2 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +5 -0
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +5 -0
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5413,6 +5413,10 @@ class DbgetterComponent {
|
|
|
5413
5413
|
valueToBeSet = "";
|
|
5414
5414
|
}
|
|
5415
5415
|
this.record[this.field.Name] = valueToBeSet;
|
|
5416
|
+
// Comunque sia ci portiamo dietro l'ID della selezione con un campo custom, può sempre servire
|
|
5417
|
+
if (row.hasOwnProperty("ID")) {
|
|
5418
|
+
this.record[this.field.Name + "____ID"] = row['ID'];
|
|
5419
|
+
}
|
|
5416
5420
|
this.showTable = false;
|
|
5417
5421
|
//EqpDynamicModuleDialogService.Success("Un solo risultato trovato, è stato inserito in automatico");
|
|
5418
5422
|
this.selectedValue.emit([valueToBeSet, false]);
|
|
@@ -5639,6 +5643,7 @@ class DynamicModuleFieldFixComponent {
|
|
|
5639
5643
|
this.out.emit(ev);
|
|
5640
5644
|
}
|
|
5641
5645
|
onSelectedValue(value) {
|
|
5646
|
+
console.log("onSelectedValue FROM DBGETTER", value);
|
|
5642
5647
|
this.DBGetterLoaded = false;
|
|
5643
5648
|
if (value[0] == "****CLOSE****") {
|
|
5644
5649
|
return;
|