@eqproject/eqp-dynamic-module 2.7.5 → 2.7.7
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 +7 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +6 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +6 -3
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4428,10 +4428,11 @@ class DbgetterComponent {
|
|
|
4428
4428
|
this.field.DataGetter.DataGetterValue.openedFields.filter(x => x.QueryPropertyValue.indexOf('!') != -1).forEach((fieldWithRelation) => {
|
|
4429
4429
|
var fieldRelated = fieldWithRelation.QueryPropertyValue.replace("!", "");
|
|
4430
4430
|
if (this.record[fieldRelated] == null) {
|
|
4431
|
-
console.log("this.record[fieldRelated] E' NULL", fieldRelated, this.record[fieldRelated], this.record);
|
|
4431
|
+
console.log("this.record[fieldRelated] E' NULL", this.field.Name, fieldRelated, this.record[fieldRelated], this.record);
|
|
4432
4432
|
this.interval = setInterval(() => {
|
|
4433
|
-
console.log("this.record[fieldRelated] CHECK", fieldRelated, this.record[fieldRelated], this.record);
|
|
4433
|
+
console.log("this.record[fieldRelated] CHECK", this.field.Name, fieldRelated, this.record[fieldRelated], this.record);
|
|
4434
4434
|
if (this.record[fieldRelated] != null) {
|
|
4435
|
+
console.log("this.record[fieldRelated] E' CAMBIATO E NON E' NULL!! :)", this.field.Name, fieldRelated, this.record[fieldRelated], this.record);
|
|
4435
4436
|
fieldWithRelation.QueryPropertyValue = this.record[fieldRelated];
|
|
4436
4437
|
this.relationsLoaded = true;
|
|
4437
4438
|
clearInterval(this.interval);
|
|
@@ -4439,9 +4440,11 @@ class DbgetterComponent {
|
|
|
4439
4440
|
}, 1000);
|
|
4440
4441
|
}
|
|
4441
4442
|
else {
|
|
4442
|
-
console.log("this.record[fieldRelated] NON E' NULL!! :)", fieldRelated, this.record[fieldRelated], this.record);
|
|
4443
|
+
console.log("this.record[fieldRelated] NON E' NULL!! :)", this.field.Name, fieldRelated, this.record[fieldRelated], this.record);
|
|
4443
4444
|
fieldWithRelation.QueryPropertyValue = this.record[fieldRelated] != null ? this.record[fieldRelated] : '';
|
|
4445
|
+
this.relationsLoaded = true;
|
|
4444
4446
|
}
|
|
4447
|
+
this.showButtonReply = true;
|
|
4445
4448
|
});
|
|
4446
4449
|
}
|
|
4447
4450
|
else {
|