rez_core 4.0.232 → 4.0.234
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
|
@@ -99,12 +99,13 @@ export class EntityJSONService extends EntityServiceImpl {
|
|
|
99
99
|
'fla.applicable_entity_type = attr.mapped_entity_type AND fla.applicable_attribute_key = attr.attribute_key',
|
|
100
100
|
)
|
|
101
101
|
.select([
|
|
102
|
-
'fla.applicable_entity_type',
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
-
'
|
|
107
|
-
|
|
102
|
+
'fla.applicable_entity_type AS applicable_entity_type',
|
|
103
|
+
'fla.applicable_attribute_key AS applicable_attribute_key', // SOURCE KEY (middle_name)
|
|
104
|
+
'fla.attribute_key AS target_attribute_key', // TARGET KEY (father_middle_name)
|
|
105
|
+
'fla.saved_filter_code AS saved_filter_code',
|
|
106
|
+
'attr.name AS name',
|
|
107
|
+
'attr.id AS id'
|
|
108
|
+
])
|
|
108
109
|
.where('attr.organization_id = :orgId', { orgId })
|
|
109
110
|
.getRawMany();
|
|
110
111
|
await this.loggerService.log(
|