rez_core 5.0.23 → 5.0.25

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": "5.0.23",
3
+ "version": "5.0.25",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -192,7 +192,7 @@ export class StageMovementRepository {
192
192
  LEFT JOIN frm_wf_stage_action_mapping m
193
193
  ON a.id = m.action_id::bigint
194
194
  LEFT JOIN frm_wf_action_category ac
195
- ON a.action_category = ac.id
195
+ ON a.action_category::bigint = ac.id
196
196
  WHERE m.stage_id::bigint = $1
197
197
  `,
198
198
  [Number(stageId)],
@@ -96,8 +96,6 @@ export class StageGroupService extends EntityServiceImpl {
96
96
  return [];
97
97
  }
98
98
 
99
- console.log('stageMovementttegst', stageMovement);
100
-
101
99
  const stageGroupData = await this.stageGroupRepo.findOne({
102
100
  where: {
103
101
  id: stageMovement[0].stage_group_id,
@@ -116,7 +114,6 @@ export class StageGroupService extends EntityServiceImpl {
116
114
  lead_id,
117
115
  loggedInUser,
118
116
  );
119
- console.log('leadData', leadData);
120
117
  const leadRecord = Array.isArray(leadData) ? leadData[0] : null;
121
118
 
122
119
  if (leadRecord && leadRecord.lead_status != null) {