rez_core 4.0.26 → 4.0.27
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 -3
- package/dist/module/workflow/repository/stage-movement.repository.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +1 -1
- package/src/module/workflow/repository/stage-movement.repository.ts +1 -3
package/package.json
CHANGED
|
@@ -186,12 +186,10 @@ export class StageMovementRepository {
|
|
|
186
186
|
SELECT
|
|
187
187
|
a.*,
|
|
188
188
|
m.stage_id,
|
|
189
|
-
ac.code AS action_category_code
|
|
190
|
-
arm.form_id
|
|
189
|
+
ac.code AS action_category_code
|
|
191
190
|
FROM frm_wf_action a
|
|
192
191
|
LEFT JOIN frm_wf_stage_action_mapping m ON a.id = m.action_id
|
|
193
192
|
LEFT JOIN frm_wf_action_category ac ON a.action_category = ac.id
|
|
194
|
-
LEFT JOIN frm_wf_action_resources_mapping arm ON m.id = arm.stg_act_mapping_id
|
|
195
193
|
WHERE m.stage_id = ?
|
|
196
194
|
`,
|
|
197
195
|
[stageId],
|