rez_core 2.2.244 → 2.2.246
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/dist/module/filter/repository/saved-filter.repository.js +1 -0
- package/dist/module/filter/repository/saved-filter.repository.js.map +1 -1
- package/dist/module/filter/service/filter.service.js +2 -0
- package/dist/module/filter/service/filter.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/filter/repository/saved-filter.repository.ts +1 -0
- package/src/module/filter/service/filter.service.ts +2 -0
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@ export class SavedFilterRepositoryService {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
async getDetailsByCode(code: string): Promise<SavedFilterDetail[]> {
|
|
38
|
+
console.log("IN GET DETAILS BY CODE", code);
|
|
38
39
|
return this.savedFilterDetailRepo.find({
|
|
39
40
|
where: { mapped_filter_code: code },
|
|
40
41
|
});
|
|
@@ -136,7 +136,9 @@ export class FilterService {
|
|
|
136
136
|
);
|
|
137
137
|
|
|
138
138
|
// Get and parse saved filters
|
|
139
|
+
console.log("IN FILTER SERVICE",savedFilterCode);
|
|
139
140
|
const savedFilters = await this.getSavedFilters(savedFilterCode);
|
|
141
|
+
console.log("SAVED FILTERS", savedFilters);
|
|
140
142
|
const baseFilters = [
|
|
141
143
|
...(quickFilter || []).filter((f) => f.filter_value !== ''),
|
|
142
144
|
...savedFilters.filter((f) => f.filter_value !== ''),
|