mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
41 lines
2.3 KiB
HTML
41 lines
2.3 KiB
HTML
<ion-content class="container">
|
|
<div class="arrow-right" (click)="close()">
|
|
<button class="btn-no-color">
|
|
<ion-icon slot="end" class="arrow-right-icon" src='assets/images/icons-arrow-arrow-right.svg'></ion-icon>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="width-100">
|
|
<div *ngIf="task && !p.userRole(['PR'])" class="d-flex width-100">
|
|
<div class="flex-grow-1">
|
|
<button class="btn-cancel desk" shape="round"> Responder ao PR </button>
|
|
<button (click)="openAddNoteModal('Executado')" class="btn-cancel" shape="round" >Executado</button>
|
|
<button class="btn-cancel desk" shape="round"> Reencaminhar para Área jurídica </button>
|
|
<button (click)="openAddNoteModal('Gerar Diploma')" class="btn-cancel" shape="round" >Gerar Diploma</button>
|
|
<button class="btn-cancel desk" shape="round"> Outras opções </button>
|
|
<button (click)="openExpedientActionsModal('0',fulltask)" class="btn-ok" shape="round" >Efetuar Despacho</button>
|
|
</div>
|
|
<div class="flex-grow-1">
|
|
<button (click)="openExpedientActionsModal('1',fulltask)" class="btn-cancel" shape="round" >Solicitar Parecer</button>
|
|
<button (click)="openExpedientActionsModal('2',fulltask)" class="btn-cancel" shape="round" >Pedido de Deferimento</button>
|
|
<button (click)="openDelegarModal(task)" class="btn-cancel" shape="round" >Delegar</button>
|
|
<button (click)="sendExpedienteToPending()" *ngIf="task.Status != 'Pending'" full class="btn-ok" shape="round" >Enviar para pendentes</button>
|
|
</div>
|
|
</div>
|
|
<div *ngIf="task && p.userRole(['PR'])" class="d-flex width-100">
|
|
<div class="flex-grow-1">
|
|
<button (click)="openExpedientActionsModal('0', fulltask)" class="btn-ok" shape="round" >Efetuar Despacho</button>
|
|
<div class="solid"></div>
|
|
<button (click)="openExpedientActionsModal('1',fulltask)" class="btn-cancel" shape="round" >Solicitar Parecer</button>
|
|
<button (click)="sendExpedienteToPending()" *ngIf="task.Status != 'Pending'" class="btn-cancel" shape="round" >Enviar para Pendentes</button>
|
|
<div hidden class="solid"></div>
|
|
<button hidden class="btn-cancel" shape="round" >Delegar</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="solid"></div>
|
|
<button (click)="cancle()" full class="btn-cancel" shape="round" >Cancelar</button>
|
|
</div>
|
|
|
|
</ion-content>
|