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/dist/module/workflow/repository/stage-movement.repository.js +1 -1
- package/dist/module/workflow/service/stage-group.service.js +0 -2
- package/dist/module/workflow/service/stage-group.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow/repository/stage-movement.repository.ts +1 -1
- package/src/module/workflow/service/stage-group.service.ts +0 -3
package/package.json
CHANGED
|
@@ -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) {
|