diff --git a/lang/en.json b/lang/en.json index a2044fd2387d6e88cc8b104822abb3075de05729..cd798544ba7f66b9007637c878bc5c027d89c27f 100755 --- a/lang/en.json +++ b/lang/en.json @@ -466,7 +466,9 @@ "notificationNewAccountId": "<br/> <br/> <b> Your username: </b>", "notificationNewAccountFooter": "<br/> <br/> This message is sent automatically following an action by the administrator. <br/> Please do not answer it. <br/> <br/> For any questions, please contact the technical administrator of the solution.", "documentIdSearch": "Document ID", - "refuseActionDocInMailGroup": "Do you want to refuse the other documents?", - "notificationDeletedUserBody": "Hello, <br/> <br/> A visa workflow you initiated was interrupted because a user was deleted. <br/> <br/> Click on the link below to view it: <br / >" + "refuseActionDocInMailGroup": "Do you want to refuse the other documents from a direct mail?", + "notificationDeletedUserBody": "Hello, <br/> <br/> A visa workflow you initiated was interrupted because a user was deleted. <br/> <br/> Click on the link below to view it: <br / >", + "stopProcessInfo": "Interrupted on", + "refProcessInfo": "Refused on" } } \ No newline at end of file diff --git a/lang/fr.json b/lang/fr.json index 20e38b37a57c95ba292c8c4abe77efe7d79ef6c2..e0a46fa275b438b6abaa3f1591ab331dbfca67de 100755 --- a/lang/fr.json +++ b/lang/fr.json @@ -463,6 +463,8 @@ "noItem": "Aucun élément", "modelCreated": "Modèle créé", "undefined": "Non défini", - "refuseActionDocInMailGroup": "Voulez-vous refuser les autres documents issus d'un publipostage ?" + "refuseActionDocInMailGroup": "Voulez-vous refuser les autres documents issus d'un publipostage ?", + "stopProcessInfo": "Interrompu le", + "refProcessInfo": "Refusé le" } } diff --git a/src/frontend/app/document/document.component.ts b/src/frontend/app/document/document.component.ts index ac4ee946193126ea9940fbd97ae2e60709755cd1..cfb2e6c98b5ef3cb2482363bf8c71e2e48254d89 100755 --- a/src/frontend/app/document/document.component.ts +++ b/src/frontend/app/document/document.component.ts @@ -328,7 +328,7 @@ export class DocumentComponent implements OnInit { const realUserWorkflow = this.mainDocument.workflow.filter((line: { current: boolean; }) => line.current === true); - this.mainDocument.isCertified = this.mainDocument.workflow.filter((line: any) => line.mode === 'sign' && line.signatureMode !== 'stamp' && line.processDate !== null).length > 0; + this.mainDocument.isCertified = this.mainDocument.workflow.filter((line: any) => line.status !== 'REF' && line.status !== 'STOP' && line.mode === 'sign' && line.signatureMode !== 'stamp' && line.processDate !== null).length > 0; if (realUserWorkflow.length === 0 || this.mainDocument.readOnly) { this.actionsList = [ diff --git a/src/frontend/app/document/visa-workflow/visa-workflow.component.html b/src/frontend/app/document/visa-workflow/visa-workflow.component.html index 3c7b3f66aa5c1dffeae137f4eb62b82252ad45c5..7865a96ae57ea65c58177da8e0b543da78efe20b 100644 --- a/src/frontend/app/document/visa-workflow/visa-workflow.component.html +++ b/src/frontend/app/document/visa-workflow/visa-workflow.component.html @@ -61,9 +61,19 @@ </ion-select-option> </ion-select> </p> - <p *ngIf="diffusion.processDate !== null" [title]="diffusion.processDate" class="processDate"> - {{'lang.'+diffusion.mode+'ProcessInfo' | translate}} - {{diffusion.processDate}} + <p *ngIf="diffusion.processDate !== null" [title]="diffusion.processDate"> + <ion-note *ngIf="diffusion.status === 'VAL'" class="valProcess"> + {{'lang.'+diffusion.mode+'ProcessInfo' | translate}} + {{diffusion.processDate}} + </ion-note> + <ion-note *ngIf="diffusion.status === 'REF'" class="refProcess"> + {{'lang.refProcessInfo' | translate}} + {{diffusion.processDate}} + </ion-note> + <ion-note *ngIf="diffusion.status === 'STOP'" class="stopProcess"> + {{'lang.stopProcessInfo' | translate}} + {{diffusion.processDate}} + </ion-note> </p> </ion-label> <ion-icon *ngIf="!editMode && diffusion.current" color="success" slot="end" name="caret-back-outline"> diff --git a/src/frontend/app/document/visa-workflow/visa-workflow.component.scss b/src/frontend/app/document/visa-workflow/visa-workflow.component.scss index df70b86fbf7a8ce630d533ba016043ad99cde3e1..20b4531c56d4fe538138fc0e08011d32fb02ec7d 100644 --- a/src/frontend/app/document/visa-workflow/visa-workflow.component.scss +++ b/src/frontend/app/document/visa-workflow/visa-workflow.component.scss @@ -42,7 +42,7 @@ ion-select { display: none !important; } -.processDate { +.valProcess { display: flex; justify-content: flex-start; font-size: 12px; @@ -50,4 +50,15 @@ ion-select { color : var(--ion-color-success); padding-top: 10px; padding-bottom: 10px; -} \ No newline at end of file +} + +.refProcess, .stopProcess { + display: flex; + justify-content: flex-start; + font-size: 12px; + text-align: right; + color : var(--ion-color-danger); + padding-top: 10px; + padding-bottom: 10px; +} +