rez_core 2.2.39 → 2.2.40
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
|
@@ -36,6 +36,8 @@ export class StageGroupService extends EntityServiceImpl {
|
|
|
36
36
|
},
|
|
37
37
|
});
|
|
38
38
|
|
|
39
|
+
console.log('Workflow Level Mapping:', workflowLevelMapping);
|
|
40
|
+
|
|
39
41
|
// If not found, fallback to organization-level mapping
|
|
40
42
|
if (!workflowLevelMapping) {
|
|
41
43
|
workflowLevelMapping = await this.workflowLevelMappingRepo.findOne({
|
|
@@ -44,6 +46,7 @@ export class StageGroupService extends EntityServiceImpl {
|
|
|
44
46
|
mapped_level_id: String(loggedInUser.organization_id),
|
|
45
47
|
},
|
|
46
48
|
});
|
|
49
|
+
console.log('Fallback Workflow Level Mapping:', workflowLevelMapping);
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
// If still not found, return null
|