rez_core 3.1.15 → 3.1.16
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
|
@@ -229,6 +229,8 @@ export class FilterService {
|
|
|
229
229
|
loggedInUser,
|
|
230
230
|
);
|
|
231
231
|
|
|
232
|
+
console.log(getAttributeColumnMeta,"ATTRIBUTE META FOR ENTITY");
|
|
233
|
+
|
|
232
234
|
const attributeMetaMap = getAttributeColumnMeta.reduce(
|
|
233
235
|
(acc, attr) => {
|
|
234
236
|
acc[attr.attribute_key] = attr;
|
|
@@ -638,8 +640,10 @@ export class FilterService {
|
|
|
638
640
|
filter: any,
|
|
639
641
|
meta: any,
|
|
640
642
|
): { query: string; params: any } | null {
|
|
643
|
+
console.log(filter,meta,"FILTER AND META");
|
|
641
644
|
if (!meta) return null;
|
|
642
645
|
|
|
646
|
+
|
|
643
647
|
let attr = filter.filter_attribute;
|
|
644
648
|
const val = filter.filter_value;
|
|
645
649
|
const op = filter.filter_operator;
|