rez_core 2.0.36 → 2.0.38
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
|
@@ -188,11 +188,11 @@ export class EntityListService {
|
|
|
188
188
|
let query = `SELECT COUNT(1) seq_no
|
|
189
189
|
FROM ${tableName} WHERE 1=1 `;
|
|
190
190
|
const argsObjectList: any[] = [];
|
|
191
|
-
if (parentId) {
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
}
|
|
191
|
+
// if (parentId) {
|
|
192
|
+
// query += ` AND parent_id = ? AND parent_type = ? `;
|
|
193
|
+
// argsObjectList.push(parentId);
|
|
194
|
+
// argsObjectList.push(parentType);
|
|
195
|
+
// }
|
|
196
196
|
|
|
197
197
|
let result = await this.entityManager.query(query, argsObjectList);
|
|
198
198
|
|