rez_core 5.0.40 → 5.0.42
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/filter/service/filter.service.js +6 -6
- package/dist/module/filter/service/filter.service.js.map +1 -1
- package/dist/module/meta/repository/attribute-master.repository.js +1 -1
- package/dist/module/meta/repository/attribute-master.repository.js.map +1 -1
- package/dist/module/meta/service/populate-meta.service.d.ts +4 -2
- package/dist/module/meta/service/populate-meta.service.js +97 -36
- package/dist/module/meta/service/populate-meta.service.js.map +1 -1
- package/dist/module/workflow/controller/workflow.controller.d.ts +1 -1
- package/dist/module/workflow/service/populate-workflow.service.d.ts +1 -1
- package/dist/module/workflow/service/populate-workflow.service.js +93 -16
- package/dist/module/workflow/service/populate-workflow.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/filter/service/filter.service.ts +6 -6
- package/src/module/meta/repository/attribute-master.repository.ts +1 -1
- package/src/module/meta/service/populate-meta.service.ts +123 -94
- package/src/module/workflow/service/populate-workflow.service.ts +131 -104
|
@@ -32,12 +32,28 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
32
32
|
this.actionService = actionService;
|
|
33
33
|
}
|
|
34
34
|
async populateWorkflowData(organization_id, loggedInUser) {
|
|
35
|
-
|
|
36
|
-
if (
|
|
37
|
-
|
|
35
|
+
const listMasterItemsRepo = this.reflectionHelper.getRepoService('ListMasterItems');
|
|
36
|
+
if (!listMasterItemsRepo)
|
|
37
|
+
return;
|
|
38
|
+
let statusRow = await listMasterItemsRepo.findOne({
|
|
39
|
+
where: { code: 'STATUS_ACTIVE', organization_id: organization_id },
|
|
40
|
+
});
|
|
41
|
+
if (!statusRow) {
|
|
42
|
+
statusRow = await listMasterItemsRepo.findOne({
|
|
43
|
+
where: { code: 'STATUS_ACTIVE', organization_id: -1 },
|
|
44
|
+
});
|
|
38
45
|
}
|
|
39
|
-
const statusValue = statusRow
|
|
40
|
-
const
|
|
46
|
+
const statusValue = statusRow?.id;
|
|
47
|
+
const commTemplateRepo = this.reflectionHelper.getRepoService('CommTemplate');
|
|
48
|
+
if (!commTemplateRepo)
|
|
49
|
+
return;
|
|
50
|
+
const defaultCommTemplates = await commTemplateRepo.find({
|
|
51
|
+
where: {
|
|
52
|
+
organization_id: -1,
|
|
53
|
+
level_type: 'ORG',
|
|
54
|
+
level_id: -1,
|
|
55
|
+
},
|
|
56
|
+
});
|
|
41
57
|
if (defaultCommTemplates.length > 0) {
|
|
42
58
|
for (const template of defaultCommTemplates) {
|
|
43
59
|
const { id, created_date, modified_date, ...rest } = template;
|
|
@@ -53,7 +69,11 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
53
69
|
}
|
|
54
70
|
}
|
|
55
71
|
const workflowTables = [
|
|
56
|
-
{
|
|
72
|
+
{
|
|
73
|
+
table: 'frm_wf_master',
|
|
74
|
+
entityType: 'WRFW',
|
|
75
|
+
service: 'workflowService',
|
|
76
|
+
},
|
|
57
77
|
{
|
|
58
78
|
table: 'frm_wf_stage_group',
|
|
59
79
|
entityType: 'WFSG',
|
|
@@ -62,10 +82,25 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
62
82
|
{ table: 'frm_wf_stage', entityType: 'WFS', service: 'stageService' },
|
|
63
83
|
{ table: 'frm_wf_action', entityType: 'WFAC', service: 'actionService' },
|
|
64
84
|
];
|
|
65
|
-
const
|
|
66
|
-
const
|
|
67
|
-
const
|
|
85
|
+
const workFlowRepo = this.reflectionHelper.getRepoService('Workflow');
|
|
86
|
+
const stageGroupRepo = this.reflectionHelper.getRepoService('StageGroup');
|
|
87
|
+
const stageRepo = this.reflectionHelper.getRepoService('Stage');
|
|
88
|
+
const actionRepo = this.reflectionHelper.getRepoService('ActionEntity');
|
|
89
|
+
const stageActionMappingRepo = this.reflectionHelper.getRepoService('StageActionMapping');
|
|
90
|
+
const workflowLevelMappingRepo = this.reflectionHelper.getRepoService('WorkflowLevelMappingEntity');
|
|
91
|
+
const listMasterRepo = this.reflectionHelper.getRepoService('ListMaster');
|
|
92
|
+
const actionCategoryRepo = this.reflectionHelper.getRepoService('ActionCategory');
|
|
93
|
+
const viewMasterRepo = this.reflectionHelper.getRepoService('ViewMaster');
|
|
68
94
|
const workflowIdMap = {};
|
|
95
|
+
let transformRepo;
|
|
96
|
+
transformRepo = workFlowRepo;
|
|
97
|
+
const workflows = await transformRepo?.find({
|
|
98
|
+
where: {
|
|
99
|
+
organization_id: -1,
|
|
100
|
+
level_type: 'ORG',
|
|
101
|
+
level_id: -1,
|
|
102
|
+
},
|
|
103
|
+
});
|
|
69
104
|
for (const row of workflows) {
|
|
70
105
|
const { id, ...rest } = row;
|
|
71
106
|
const newWf = await this.workflowService.createEntity({
|
|
@@ -75,11 +110,25 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
75
110
|
entity_type: 'WRFW',
|
|
76
111
|
status: statusValue,
|
|
77
112
|
}, loggedInUser);
|
|
78
|
-
|
|
113
|
+
if (!workflowLevelMappingRepo)
|
|
114
|
+
continue;
|
|
115
|
+
await workflowLevelMappingRepo.create({
|
|
116
|
+
workflow_id: newWf.id,
|
|
117
|
+
mapped_level_id: organization_id.toString(),
|
|
118
|
+
mapped_level_type: 'ORG',
|
|
119
|
+
});
|
|
79
120
|
workflowIdMap[id] = newWf.id;
|
|
80
121
|
}
|
|
81
122
|
const stageGroupIdMap = {};
|
|
82
123
|
const stageGroupToWorkflowMap = {};
|
|
124
|
+
transformRepo = stageGroupRepo;
|
|
125
|
+
const stageGroups = await transformRepo?.find({
|
|
126
|
+
where: {
|
|
127
|
+
organization_id: -1,
|
|
128
|
+
level_type: 'ORG',
|
|
129
|
+
level_id: -1,
|
|
130
|
+
},
|
|
131
|
+
});
|
|
83
132
|
for (const row of stageGroups) {
|
|
84
133
|
const { id, workflow_id, ...rest } = row;
|
|
85
134
|
const newSg = await this.stageGroupService.createEntity({
|
|
@@ -95,6 +144,14 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
95
144
|
}
|
|
96
145
|
const stageIdMap = {};
|
|
97
146
|
const stageToStageGroupMap = {};
|
|
147
|
+
transformRepo = stageRepo;
|
|
148
|
+
const stages = await transformRepo?.find({
|
|
149
|
+
where: {
|
|
150
|
+
organization_id: -1,
|
|
151
|
+
level_type: 'ORG',
|
|
152
|
+
level_id: -1,
|
|
153
|
+
},
|
|
154
|
+
});
|
|
98
155
|
for (const row of stages) {
|
|
99
156
|
const { id, stage_group_id, ...rest } = row;
|
|
100
157
|
const originalWorkflowId = stageGroupToWorkflowMap[stage_group_id];
|
|
@@ -109,11 +166,19 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
109
166
|
}, loggedInUser);
|
|
110
167
|
stageIdMap[id] = newStage.id;
|
|
111
168
|
stageToStageGroupMap[id] = stage_group_id;
|
|
112
|
-
|
|
169
|
+
if (!stageActionMappingRepo)
|
|
170
|
+
continue;
|
|
171
|
+
const stageIds = await stageActionMappingRepo.find({
|
|
172
|
+
where: {
|
|
173
|
+
stage_id: id,
|
|
174
|
+
},
|
|
175
|
+
});
|
|
113
176
|
const actionIds = stageIds.map((item) => item.action_id);
|
|
114
177
|
let actions = [];
|
|
115
178
|
if (actionIds.length > 0) {
|
|
116
|
-
|
|
179
|
+
if (!actionRepo)
|
|
180
|
+
continue;
|
|
181
|
+
actions = await actionRepo?.findByIds(actionIds);
|
|
117
182
|
}
|
|
118
183
|
else {
|
|
119
184
|
actions = [];
|
|
@@ -122,15 +187,27 @@ let PopulateWorkflowService = class PopulateWorkflowService extends entity_servi
|
|
|
122
187
|
for (const row of actions) {
|
|
123
188
|
const { id, created_date, modified_date, workflow_id, ...rest } = row;
|
|
124
189
|
const newWorkflowId = workflowIdMap[workflow_id];
|
|
125
|
-
const [oldIsMandatory] = await
|
|
126
|
-
|
|
190
|
+
const [oldIsMandatory] = await listMasterItemsRepo.find({
|
|
191
|
+
where: { id: rest.action_requirement },
|
|
192
|
+
});
|
|
193
|
+
const newIsMandatoryList = await listMasterItemsRepo.find({
|
|
194
|
+
where: { organization_id: organization_id, listtype: 'ACRQ' },
|
|
195
|
+
});
|
|
127
196
|
console.log(`Populating action for stage ${newStage.id} in workflow ${newWorkflowId}`);
|
|
128
197
|
console.log(`Old is_mandatory code: ${oldIsMandatory?.code}`);
|
|
129
198
|
console.log(`New is_mandatory list:`, newIsMandatoryList);
|
|
130
199
|
const matchedNewMandatory = newIsMandatoryList.find((item) => item.code === oldIsMandatory?.code);
|
|
131
200
|
console.log(`Matched new mandatory item:`, matchedNewMandatory);
|
|
132
|
-
|
|
133
|
-
|
|
201
|
+
if (!actionCategoryRepo)
|
|
202
|
+
continue;
|
|
203
|
+
const formActionCategory = await actionCategoryRepo.find({
|
|
204
|
+
where: { id: row.action_category, is_form: true },
|
|
205
|
+
});
|
|
206
|
+
if (!viewMasterRepo)
|
|
207
|
+
continue;
|
|
208
|
+
const formViewMaster = await viewMasterRepo.find({
|
|
209
|
+
where: { code: 'LEAD_FORM', organization_id: organization_id },
|
|
210
|
+
});
|
|
134
211
|
await this.actionService.createEntity({
|
|
135
212
|
...rest,
|
|
136
213
|
stage_id: newStage.id,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"populate-workflow.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/populate-workflow.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"populate-workflow.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/populate-workflow.service.ts"],"names":[],"mappings":"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"}
|