rez_core 2.2.90 → 2.2.91

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.90",
3
+ "version": "2.2.91",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -106,6 +106,7 @@ export class ActionService extends EntityServiceImpl {
106
106
  const resourceMapping = {
107
107
  stg_act_mapping_id: stageActionMappingData.id,
108
108
  organization_id: entityData.organization_id,
109
+ level_id: entityData.level_id,
109
110
  form_id: actionData.form,
110
111
  type: 'form',
111
112
  entity_type: 'ARMS',
@@ -279,7 +279,8 @@ export class PopulateWorkflowService extends EntityServiceImpl {
279
279
 
280
280
  //get view master form
281
281
  const formViewMaster = await this.dataSource.query(
282
- `SELECT id FROM cr_view_master WHERE code = "LEAD_FORM"`,
282
+ `SELECT id FROM cr_view_master WHERE code = "LEAD_FORM" and organization_id = ?`,
283
+ [organization_id],
283
284
  );
284
285
 
285
286
  // Step 4: Use the matched new item's id (if found)