Skip to content
Snippets Groups Projects
Commit f98942f9 authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FIX #20284 TIME 0:20 set modes for external users

parent cd0106da
No related branches found
No related tags found
No related merge requests found
...@@ -67,14 +67,17 @@ export class VisaWorkflowComponent implements OnInit { ...@@ -67,14 +67,17 @@ export class VisaWorkflowComponent implements OnInit {
formatRole(element: any) { formatRole(element: any) {
if (!this.functionsService.empty(element.externalInformations)) { if (!this.functionsService.empty(element.externalInformations)) {
if (this.functionsService.empty(element?.modes)) {
element['modes'] = [];
}
if (element.externalInformations.informations.type === 'yousign') { if (element.externalInformations.informations.type === 'yousign') {
element.role = element.externalInformations.informations.role === 'sign' ? 'otp_sign_yousign' : 'otp_visa_yousign'; element.role = element.externalInformations.informations.role === 'sign' ? 'otp_sign_yousign' : 'otp_visa_yousign';
} else if (element.externalInformations.informations.type === 'fast') { } else if (element.externalInformations.informations.type === 'fast') {
element.role = 'otp_sign_fast'; element.role = 'otp_sign_fast';
} }
this.otpService.setConnector(element.externalInformations.informations.type);
element.mode = element.role; element.mode = element.role;
element.modes.push(element.mode); element.modes = element.externalInformations.informations.type === 'fast' ? ['otp_sign_fast'] : ['otp_visa_yousign', 'otp_sign_yousign'];
element.modes = [... new Set(element.modes)];
} }
} }
......
...@@ -86,12 +86,13 @@ export class IndexationComponent implements OnInit { ...@@ -86,12 +86,13 @@ export class IndexationComponent implements OnInit {
this.appVisaWorkflow.loadWorkflow(data.document.workflow.map((item: any) => { this.appVisaWorkflow.loadWorkflow(data.document.workflow.map((item: any) => {
item.userSignatureModes.unshift('visa'); item.userSignatureModes.unshift('visa');
item.signatureMode = item.userId === null && item.signatureMode === 'stamp' ? 'sign' : item.signatureMode; item.signatureMode = item.userId === null && item.signatureMode === 'stamp' ? 'sign' : item.signatureMode;
this.appVisaWorkflow.formatRole(item);
return { return {
...item, ...item,
processDate: null, processDate: null,
current: false, current: false,
role: item.mode === 'visa' ? 'visa' : item.signatureMode, role: item.mode === 'visa' ? 'visa' : item.signatureMode,
modes: item.userId === null ? ['otp_sign_yousign', 'otp_visa_yousign', 'otp_sign_fast'] : item.userSignatureModes modes: item.userId === null ? item.modes : item.userSignatureModes
}; };
})); }));
for (let index = 0; index < data.document.attachments.length; index++) { for (let index = 0; index < data.document.attachments.length; index++) {
......
...@@ -75,7 +75,7 @@ export class OtpService { ...@@ -75,7 +75,7 @@ export class OtpService {
} }
setConnector(connectorType: any) { setConnector(connectorType: any) {
if (this.allowedConnectors.indexOf(connectorType.id) > -1) { if (this.allowedConnectors.indexOf(connectorType?.id) > -1) {
if (connectorType.id === 'fast') { if (connectorType.id === 'fast') {
this.connectorService = this.injector.get<OtpFastService>(OtpFastService); this.connectorService = this.injector.get<OtpFastService>(OtpFastService);
} else if (connectorType.id === 'yousign') { } else if (connectorType.id === 'yousign') {
......
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