Skip to content
Snippets Groups Projects
Commit 744c109d authored by Damien's avatar Damien
Browse files

[FIX] #5364 Hide document and display visa workflow when type is outgoing

parent cb7a0687
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
<div *ngIf="!loading" class='visaContent'>
<div class="titleSignatureBook">
<div id="tabSignatureBook">
<div title="Courrier" class="item" [ngClass]="{'activeTabSignatureBook': headerTab == 1}" (click)="changeSignatureBookLeftContent(1)">
<div *ngIf="signatureBook.documents[0] && signatureBook.documents[0].category_id != 'outgoing'" title="Courrier" class="item" [ngClass]="{'activeTabSignatureBook': headerTab == 1}" (click)="changeSignatureBookLeftContent(1)">
<i class="fa fa-file-text-o fa-2x"></i>
</div>
<div title="Note(s)" class="item" [ngClass]="{'activeTabSignatureBook': headerTab == 2}" (click)="changeSignatureBookLeftContent(2)">
......
......@@ -116,6 +116,9 @@ var SignatureBookComponent = (function () {
_this.rightContentWidth = "44%";
if (_this.signatureBook.documents[0]) {
_this.leftViewerLink = _this.signatureBook.documents[0].viewerLink;
if (_this.signatureBook.documents[0].category_id == "outgoing") {
_this.headerTab = 3;
}
}
if (_this.signatureBook.attachments[0]) {
_this.rightViewerLink = _this.signatureBook.attachments[0].viewerLink;
......
......@@ -121,6 +121,9 @@ export class SignatureBookComponent implements OnInit {
this.rightContentWidth = "44%";
if (this.signatureBook.documents[0]) {
this.leftViewerLink = this.signatureBook.documents[0].viewerLink;
if (this.signatureBook.documents[0].category_id == "outgoing") {
this.headerTab = 3;
}
}
if (this.signatureBook.attachments[0]) {
this.rightViewerLink = this.signatureBook.attachments[0].viewerLink;
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
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