rez_core 4.0.236 → 4.0.240
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/package.json
CHANGED
|
@@ -221,9 +221,12 @@ export class EntityJSONService extends EntityServiceImpl {
|
|
|
221
221
|
// 5. Merge linked attributes using saved filters
|
|
222
222
|
// 5. Merge linked attributes using saved filters
|
|
223
223
|
for (const linkAttr of safeAttributes.linkedAttributes) {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
const
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
const childEntityType = linkAttr.applicable_entity_type; // was undefined
|
|
227
|
+
const sourceKey = linkAttr.applicable_attribute_key; // already correct
|
|
228
|
+
const targetKey = linkAttr.target_attribute_key; // was undefined
|
|
229
|
+
// final JSON key = father_middle_name
|
|
227
230
|
|
|
228
231
|
if (!childEntityType || !sourceKey || !targetKey) continue;
|
|
229
232
|
|