rez_core 5.0.302 → 5.0.304
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-automation/service/schedule-handler.service.d.ts +3 -3
- package/dist/module/workflow-automation/service/schedule-handler.service.js +9 -6
- package/dist/module/workflow-automation/service/schedule-handler.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/workflow-automation/service/schedule-handler.service.ts +8 -5
|
@@ -3,16 +3,16 @@ import { DataSource, Repository } from 'typeorm';
|
|
|
3
3
|
import { WorkflowAutomationEngineService } from './workflow-automation-engine.service';
|
|
4
4
|
import { WorkflowAutomation } from '../entity/workflow-automation.entity';
|
|
5
5
|
import { EntityMaster } from 'src/module/meta/entity/entity-master.entity';
|
|
6
|
-
import {
|
|
6
|
+
import { ReflectionHelper } from 'src/utils/service/reflection-helper.service';
|
|
7
7
|
export declare class ScheduleHandlerService {
|
|
8
8
|
private readonly dataSource;
|
|
9
9
|
private readonly filterEvaluator;
|
|
10
10
|
private readonly workflowAutomationEngineService;
|
|
11
11
|
private readonly workflowAutomation;
|
|
12
12
|
private readonly entityMasterRepository;
|
|
13
|
-
|
|
13
|
+
readonly reflectionHelper: ReflectionHelper;
|
|
14
14
|
private readonly logger;
|
|
15
|
-
constructor(dataSource: DataSource, filterEvaluator: FilterEvaluatorService, workflowAutomationEngineService: WorkflowAutomationEngineService, workflowAutomation: Repository<WorkflowAutomation>, entityMasterRepository: Repository<EntityMaster>,
|
|
15
|
+
constructor(dataSource: DataSource, filterEvaluator: FilterEvaluatorService, workflowAutomationEngineService: WorkflowAutomationEngineService, workflowAutomation: Repository<WorkflowAutomation>, entityMasterRepository: Repository<EntityMaster>, reflectionHelper: ReflectionHelper);
|
|
16
16
|
scheduleQueryBuilder(workflow_id: number, jobData: any): Promise<{
|
|
17
17
|
results: any[];
|
|
18
18
|
workflow: WorkflowAutomation;
|
|
@@ -21,15 +21,15 @@ const workflow_automation_engine_service_1 = require("./workflow-automation-engi
|
|
|
21
21
|
const workflow_automation_entity_1 = require("../entity/workflow-automation.entity");
|
|
22
22
|
const typeorm_2 = require("@nestjs/typeorm");
|
|
23
23
|
const entity_master_entity_1 = require("../../meta/entity/entity-master.entity");
|
|
24
|
-
const
|
|
24
|
+
const reflection_helper_service_1 = require("../../../utils/service/reflection-helper.service");
|
|
25
25
|
let ScheduleHandlerService = ScheduleHandlerService_1 = class ScheduleHandlerService {
|
|
26
|
-
constructor(dataSource, filterEvaluator, workflowAutomationEngineService, workflowAutomation, entityMasterRepository,
|
|
26
|
+
constructor(dataSource, filterEvaluator, workflowAutomationEngineService, workflowAutomation, entityMasterRepository, reflectionHelper) {
|
|
27
27
|
this.dataSource = dataSource;
|
|
28
28
|
this.filterEvaluator = filterEvaluator;
|
|
29
29
|
this.workflowAutomationEngineService = workflowAutomationEngineService;
|
|
30
30
|
this.workflowAutomation = workflowAutomation;
|
|
31
31
|
this.entityMasterRepository = entityMasterRepository;
|
|
32
|
-
this.
|
|
32
|
+
this.reflectionHelper = reflectionHelper;
|
|
33
33
|
this.logger = new common_1.Logger(ScheduleHandlerService_1.name);
|
|
34
34
|
}
|
|
35
35
|
async scheduleQueryBuilder(workflow_id, jobData) {
|
|
@@ -55,7 +55,8 @@ let ScheduleHandlerService = ScheduleHandlerService_1 = class ScheduleHandlerSer
|
|
|
55
55
|
if (!entity?.data_source)
|
|
56
56
|
throw new Error(`Entity ${entityType} not found`);
|
|
57
57
|
const tableName = entity.data_source;
|
|
58
|
-
const
|
|
58
|
+
const listMasterItemsRepo = this.reflectionHelper.getRepoService('ListMasterItems');
|
|
59
|
+
const executionDateItem = await listMasterItemsRepo.findOne({
|
|
59
60
|
where: {
|
|
60
61
|
id: scheduleJson.executionDate,
|
|
61
62
|
},
|
|
@@ -111,6 +112,7 @@ let ScheduleHandlerService = ScheduleHandlerService_1 = class ScheduleHandlerSer
|
|
|
111
112
|
const entityIdToUse = record.id;
|
|
112
113
|
const executionUser = {
|
|
113
114
|
organization_id: jobData.organization_id,
|
|
115
|
+
enterprise_id: jobData.enterprise_id,
|
|
114
116
|
level_id: record.level_id,
|
|
115
117
|
level_type: record.level_type,
|
|
116
118
|
appcode: jobData.appcode,
|
|
@@ -135,6 +137,7 @@ let ScheduleHandlerService = ScheduleHandlerService_1 = class ScheduleHandlerSer
|
|
|
135
137
|
for (const entity of matchedEntities) {
|
|
136
138
|
const executionUser = {
|
|
137
139
|
organization_id: jobData.organization_id,
|
|
140
|
+
enterprise_id: jobData.enterprise_id,
|
|
138
141
|
level_id: entity.level_id,
|
|
139
142
|
level_type: entity.level_type,
|
|
140
143
|
appcode: jobData.appcode,
|
|
@@ -152,12 +155,12 @@ exports.ScheduleHandlerService = ScheduleHandlerService = ScheduleHandlerService
|
|
|
152
155
|
(0, common_1.Injectable)(),
|
|
153
156
|
__param(3, (0, typeorm_2.InjectRepository)(workflow_automation_entity_1.WorkflowAutomation)),
|
|
154
157
|
__param(4, (0, typeorm_2.InjectRepository)(entity_master_entity_1.EntityMaster)),
|
|
155
|
-
__param(5, (0,
|
|
158
|
+
__param(5, (0, common_1.Inject)()),
|
|
156
159
|
__metadata("design:paramtypes", [typeorm_1.DataSource,
|
|
157
160
|
filter_evaluator_service_1.FilterEvaluatorService,
|
|
158
161
|
workflow_automation_engine_service_1.WorkflowAutomationEngineService,
|
|
159
162
|
typeorm_1.Repository,
|
|
160
163
|
typeorm_1.Repository,
|
|
161
|
-
|
|
164
|
+
reflection_helper_service_1.ReflectionHelper])
|
|
162
165
|
], ScheduleHandlerService);
|
|
163
166
|
//# sourceMappingURL=schedule-handler.service.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schedule-handler.service.js","sourceRoot":"","sources":["../../../../src/module/workflow-automation/service/schedule-handler.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAA4D;AAC5D,4FAA4F;AAC5F,qCAAiD;AACjD,6FAAuF;AACvF,qFAA0E;AAC1E,6CAAmD;AACnD,iFAA2E;AAC3E,
|
|
1
|
+
{"version":3,"file":"schedule-handler.service.js","sourceRoot":"","sources":["../../../../src/module/workflow-automation/service/schedule-handler.service.ts"],"names":[],"mappings":"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"}
|