rez_core 2.0.3 → 2.0.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -71,9 +71,9 @@ export class EntityListService {
71
71
  appcode?: string,
72
72
  ) {
73
73
  // Add appcode to filters if provided
74
- if (appcode) {
75
- filters = { ...filters, appcode };
76
- }
74
+ // if (appcode) {
75
+ // filters = { ...filters, appcode };
76
+ // }
77
77
 
78
78
  let query = this.getQuery(entityTable.data_source, null);
79
79
  let whereClause = await this.getWhereClause(entityTable, filters);
@@ -95,7 +95,7 @@ export class EntityListService {
95
95
  appcode?: string,
96
96
  ) {
97
97
  let query = this.getQuery(entityTable.data_source, entityTable.tab_column);
98
- let whereClause = await this.getWhereClause(entityTable, filters, appcode);
98
+ let whereClause = await this.getWhereClause(entityTable, filters);
99
99
  if (whereClause.query) {
100
100
  query += whereClause.query;
101
101
  }