Skip to content
Snippets Groups Projects
Commit 39f11d49 authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #12091 TIME 0:15 fix step indicator from MP visa workflow

parent bcbadf1b
No related branches found
No related tags found
No related merge requests found
...@@ -293,8 +293,9 @@ export class VisaWorkflowComponent implements OnInit { ...@@ -293,8 +293,9 @@ export class VisaWorkflowComponent implements OnInit {
this.visaWorkflow.items = []; this.visaWorkflow.items = [];
this.http.get(`../../rest/attachments/${attachmentId}/maarchParapheurWorkflow`) this.http.get(`../../rest/attachments/${attachmentId}/maarchParapheurWorkflow`)
.subscribe((data: any) => { .subscribe((data: any) => {
data.workflow.forEach((element: any) => { data.workflow.forEach((element: any, key:any) => {
const user = { const user = {
'listinstance_id': key,
'id': element.userId, 'id': element.userId,
'labelToDisplay': element.userDisplay, 'labelToDisplay': element.userDisplay,
'requested_signature': element.mode === 'visa' ? false : true, 'requested_signature': element.mode === 'visa' ? false : true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment