rez_core 5.0.302 → 5.0.303
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.js +2 -0
- 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 +2 -1
package/package.json
CHANGED
|
@@ -136,6 +136,7 @@ export class ScheduleHandlerService {
|
|
|
136
136
|
|
|
137
137
|
const executionUser = {
|
|
138
138
|
organization_id: jobData.organization_id,
|
|
139
|
+
enterprise_id: jobData.enterprise_id,
|
|
139
140
|
level_id: record.level_id,
|
|
140
141
|
level_type: record.level_type,
|
|
141
142
|
appcode: jobData.appcode,
|
|
@@ -182,7 +183,7 @@ export class ScheduleHandlerService {
|
|
|
182
183
|
for (const entity of matchedEntities) {
|
|
183
184
|
const executionUser = {
|
|
184
185
|
organization_id: jobData.organization_id,
|
|
185
|
-
|
|
186
|
+
enterprise_id: jobData.enterprise_id,
|
|
186
187
|
level_id: entity.level_id,
|
|
187
188
|
level_type: entity.level_type,
|
|
188
189
|
appcode: jobData.appcode,
|