mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
82 lines
3.3 KiB
HTML
82 lines
3.3 KiB
HTML
<ion-content class="container-wrapper">
|
|
|
|
<div class="main-content d-flex height-100 overflow-hidden">
|
|
|
|
<app-task-details
|
|
*ngIf="task"
|
|
[task]=task
|
|
[intervenientes]=intervenientes
|
|
[cc]=cc
|
|
[customDate]=customDate
|
|
[mergedArray]="mergedArray"
|
|
(openOptions)= openOptions()
|
|
(goBack)= goBack()
|
|
(viewDocument)=viewDocument($event)
|
|
class="d-flex height-100 flex-column content"
|
|
[fulltask]="fulltask"
|
|
></app-task-details>
|
|
|
|
<div *ngIf="task && showOptions" (click)="showOptions=!showOptions" class="aside-right ">
|
|
<div class="aside-right-container flex-column height-100 overflow-y-auto">
|
|
<div class="buttons" *ngIf="task.activityInstanceName == 'Revisar Diploma'">
|
|
<button (click)="openAddNoteModal('Solicitar assinatura')" class="btn-cancel" shape="round" >Solicitar assinatura do Presidente</button>
|
|
<button (click)="openAddNoteModal('Solicitar alteração')" class="btn-cancel" shape="round" >Solicitar alteração</button>
|
|
<button (click)="openExpedientActionsModal('0',fulltask)" class="btn-cancel" shape="round" >Efectuar Despacho</button>
|
|
<button (click)="openAddNoteModal('Arquivo')" class="btn-cancel" shape="round" >Arquivar</button>
|
|
<button (click)="openBookMeetingModal(task)" class="btn-cancel" shape="round" >Marcar Reunião</button>
|
|
<div class="solid"></div>
|
|
</div>
|
|
<div class="buttons" *ngIf="task.activityInstanceName == 'Diploma Assinado'">
|
|
<!-- <button (click)="openAddNoteModal('Concluir diploma')" class="btn-cancel" shape="round" >Concluir</button> -->
|
|
<button (click)="openExpedientActionsModal('0',fulltask)" class="btn-cancel" shape="round" >Efectuar Despacho</button>
|
|
<button (click)="openAddNoteModal('Arquivo')" class="btn-cancel" shape="round" >Arquivar</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!task">
|
|
<ion-list>
|
|
<ion-list-header>
|
|
<ion-label>
|
|
<ion-skeleton-text animated style="width: 50%"></ion-skeleton-text>
|
|
</ion-label>
|
|
</ion-list-header>
|
|
<ion-item>
|
|
<ion-label>
|
|
<h3>
|
|
<ion-skeleton-text animated style="width: 50%"></ion-skeleton-text>
|
|
</h3>
|
|
<p>
|
|
<ion-skeleton-text animated style="width: 80%"></ion-skeleton-text>
|
|
</p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<ion-item>
|
|
<ion-label>
|
|
<h3>
|
|
<ion-skeleton-text animated style="width: 50%"></ion-skeleton-text>
|
|
</h3>
|
|
<p><ion-skeleton-text animated style="width: 80%"></ion-skeleton-text></p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<ion-item>
|
|
<ion-label>
|
|
<h3>
|
|
<ion-skeleton-text animated style="width: 50%"></ion-skeleton-text>
|
|
</h3>
|
|
<p>
|
|
<ion-skeleton-text animated style="width: 80%"></ion-skeleton-text>
|
|
</p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<ion-button color="medium" shape="round" expand="block">
|
|
<!-- <ion-icon color="medium" name="attach" slot="start"></ion-icon> -->
|
|
<ion-skeleton-text animated style="width: 50%"></ion-skeleton-text>
|
|
</ion-button>
|
|
</ion-list>
|
|
</div>
|
|
</div>
|
|
</ion-content>
|
|
|