rez_core 2.2.32 → 2.2.34

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.2.32",
3
+ "version": "2.2.34",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -94,10 +94,13 @@ export class EntityServiceImpl implements EntityService<BaseEntity> {
94
94
 
95
95
  const statusList = await repo.query(
96
96
  `SELECT id FROM cr_list_master_items WHERE code = ? AND organization_id = ?`,
97
- [STATUS_ACTIVE, loggedInUser?.organization_id || 0],
97
+ [STATUS_ACTIVE, loggedInUser?.organization_id],
98
98
  );
99
99
 
100
100
  console.log('Status List:', statusList); // Debug log
101
+ console.log(
102
+ `status_code,${STATUS_ACTIVE},statusList, ${loggedInUser?.organization_id}`,
103
+ ); // Debug log
101
104
 
102
105
  entityData.created_date = new Date();
103
106
  if (loggedInUser) {