mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
220 lines
9.1 KiB
HTML
220 lines
9.1 KiB
HTML
<ion-header class="ion-no-border">
|
|
<!-- <app-header > </app-header> -->
|
|
</ion-header>
|
|
|
|
<ion-header class="ion-no-border header-2">
|
|
|
|
<div class="title d-flex justify-space-between">
|
|
<div class="d-flex align-center" (click)="goBack()">
|
|
<div class="d-flex align-center font-35-rem">
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="end"
|
|
src='assets/images/icons-arrow-arrow-left.svg'></ion-icon>
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end"
|
|
src='assets/images/theme/gov/icons-calendar-arrow-left.svg'></ion-icon>
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " slot="end"
|
|
src='assets/images/theme/{{ThemeService.currentTheme}}/icons-calendar-arrow-left.svg'></ion-icon>
|
|
</div>
|
|
<div class="thetitle"><ion-label>Pedidos</ion-label></div>
|
|
</div>
|
|
|
|
<div class="theicon btn-refresh d-flex">
|
|
|
|
<div>
|
|
<div class="d-flex" (click)="reorderList('old')" *ngIf="ordinance == 'recent' ">
|
|
<ion-icon class="mr-10 font-25" src="assets/images/theme/gov/crescente.svg"></ion-icon>
|
|
</div>
|
|
|
|
<div class="d-flex" (click)="reorderList('recent')" *ngIf="ordinance != 'recent' ">
|
|
<ion-icon class="mr-10 font-25" src="assets/images/theme/gov/decrescente.svg"></ion-icon>
|
|
</div>
|
|
</div>
|
|
|
|
<mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary"
|
|
placeholder="Selecione agenda">
|
|
<mat-select [(value)]="filterName">
|
|
|
|
<mat-option value="Para hoje">
|
|
Para hoje
|
|
</mat-option>
|
|
|
|
<mat-option value="Novos">
|
|
Novas
|
|
</mat-option>
|
|
|
|
<mat-option value="Lidos">
|
|
Lidas
|
|
</mat-option>
|
|
|
|
<mat-option value="Não lidos">
|
|
Não lidas
|
|
</mat-option>
|
|
|
|
<mat-option value="OverdueTasks">
|
|
Em atraso
|
|
</mat-option>
|
|
|
|
|
|
<mat-option value="Todos">
|
|
Todas
|
|
</mat-option>
|
|
|
|
|
|
</mat-select>
|
|
</mat-form-field>
|
|
<button class="btn-no-color" (click)="doRefresh($event)">
|
|
<ion-icon slot="end" class="title-icon font-awesome" name="reload-circle"></ion-icon>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<ion-toolbar>
|
|
<ion-segment [(ngModel)]="segment" (ionChange)="segmentChanged($event)">
|
|
<ion-segment-button value="parecer">
|
|
Parecer
|
|
</ion-segment-button>
|
|
<ion-segment-button value="deferimento">
|
|
Deferimento
|
|
</ion-segment-button>
|
|
</ion-segment>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content>
|
|
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
|
<ion-refresher-content pullingIcon="chevron-down-circle-outline" pullingText="deslize para actualizar"
|
|
refreshingSpinner="circles" refreshingText="A actualizar...">
|
|
</ion-refresher-content>
|
|
</ion-refresher>
|
|
|
|
<div class="main-content width-100 overflow-y-auto height-100">
|
|
|
|
|
|
<div class="width-100" [ngSwitch]="segment">
|
|
<ion-progress-bar type="indeterminate" *ngIf="skeletonLoader"></ion-progress-bar>
|
|
<div *ngIf="pedidosstorage.listparecer">
|
|
<ion-list *ngSwitchCase="'parecer'">
|
|
<!-- *ngFor = "let task of pedidosstorage.listparecer; let i = index"
|
|
(click)="viewExpedientDetail(task.SerialNumber)" -->
|
|
<div class="ion-no-padding ion-no-margin cursor-pointer" *ngFor="let task of pedidosstorage.listparecer"
|
|
(click)="goToPedido(task.SerialNumber)">
|
|
<!-- (click)="viewExpedientDetail(task.SerialNumber)" -->
|
|
<!-- [routerLink]="['/home/gabinete-digital/expediente',task.SerialNumber]" -->
|
|
<div class="item width-100 expediente" *ngIf="TaskService.filter(task, filterName)">
|
|
<div class="exp-top-detail">
|
|
<div class="subject d-flex align-center">
|
|
<ion-label [class.gb-seen]="TaskService.seen(task)">{{ task.Folio }}</ion-label>
|
|
<span class="dead-line ml-10" *ngIf="TaskService.deadlineIsToday(task.Deadline)">Para hoje</span>
|
|
<span class="new-task ml-10" *ngIf="TaskService.lessThen24Hours(task.TaskReceiveDate)">Nova</span>
|
|
</div>
|
|
<div class="exp-icon">
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' "
|
|
src="assets/images/icons-expediente-attachment.svg"></ion-icon>
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' "
|
|
src="assets/images/theme/gov/icons-expediente-attachment.svg"></ion-icon>
|
|
<label *ngIf="task.DocumentsQty != 0">{{task.DocumentsQty}}</label>
|
|
</div>
|
|
</div>
|
|
<div class="exp-bottom-detail">
|
|
<div class="exp-remetente">
|
|
<ion-label>{{task.Senders}}</ion-label>
|
|
</div>
|
|
</div>
|
|
<div class="exp-middle-detail">
|
|
<div class="exp-workflow">
|
|
<span class="label">{{task.WorkflowName}}</span>
|
|
</div>
|
|
<div class="exp-date">
|
|
<ion-label>{{ task.taskStartDate || task.TaskStartDate | date: 'dd-MM-yyyy HH:mm' }}</ion-label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ion-list>
|
|
|
|
</div>
|
|
<div *ngIf="pedidosstorage.listdeferimento">
|
|
<ion-list *ngSwitchCase="'deferimento'">
|
|
<div class="expediente ion-no-padding ion-no-margin cursor-pointer"
|
|
*ngFor="let task of pedidosstorage.listdeferimento" (click)="goToPedido(task.SerialNumber)">
|
|
<!-- (click)="viewExpedientDetail(task.SerialNumber)" -->
|
|
<!-- [routerLink]="['/home/gabinete-digital/expediente',task.SerialNumber]" -->
|
|
<div class="item width-100">
|
|
<div class="exp-top-detail">
|
|
<div class="subject d-flex">
|
|
<ion-label [class.gb-seen]="TaskService.seen(task)">{{ task.Folio }}</ion-label>
|
|
<span class="dead-line ml-10" *ngIf="TaskService.deadlineIsToday(task.Deadline)">Para hoje</span>
|
|
<span class="new-task ml-10" *ngIf="TaskService.lessThen24Hours(task.TaskReceiveDate)">Nova</span>
|
|
</div>
|
|
<div class="exp-icon">
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' "
|
|
src="assets/images/icons-expediente-attachment.svg"></ion-icon>
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' "
|
|
src="assets/images/theme/gov/icons-expediente-attachment.svg"></ion-icon>
|
|
<label *ngIf="task.DocumentsQty != 0">{{task.DocumentsQty}}</label>
|
|
</div>
|
|
</div>
|
|
<div class="exp-bottom-detail">
|
|
<div class="exp-remetente">
|
|
<ion-label>{{task.Senders}}</ion-label>
|
|
</div>
|
|
</div>
|
|
<div class="exp-middle-detail">
|
|
<div class="exp-workflow">
|
|
<span class="label">{{task.WorkflowName}}</span>
|
|
</div>
|
|
<div class="exp-date">
|
|
<ion-label>{{ task.taskStartDate || task.TaskStartDate | date: 'dd-MM-yyyy HH:mm' }}</ion-label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ion-list>
|
|
</div>
|
|
</div>
|
|
|
|
<div [ngSwitch]="segment">
|
|
<div *ngSwitchCase="'parecer'" class="centered-div d-flex height-100 align-center justify-content-center">
|
|
<div *ngIf="pedidosstorage.listparecer.length == 0"
|
|
class="empty-list d-flex height-100 align-center justify-content-center">
|
|
<span>Lista vazia</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div *ngSwitchCase="'deferimento'" class="centered-div d-flex height-100 align-center justify-content-center">
|
|
<div *ngIf="pedidosstorage.listdeferimento.length == 0"
|
|
class="empty-list d-flex height-100 align-center justify-content-center">
|
|
<span>Lista vazia</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
*ngIf="skeletonLoader && pedidosstorage.listdeferimento.length == 0 && skeletonLoader && pedidosstorage.listparecer.length == 0">
|
|
|
|
<ion-list>
|
|
<ion-item>
|
|
<ion-thumbnail slot="end">
|
|
<ion-skeleton-text animated></ion-skeleton-text>
|
|
</ion-thumbnail>
|
|
<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>
|
|
<p><ion-skeleton-text animated style="width: 60%"></ion-skeleton-text></p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<ion-item>
|
|
<ion-thumbnail slot="end">
|
|
<ion-skeleton-text animated></ion-skeleton-text>
|
|
</ion-thumbnail>
|
|
<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>
|
|
<p><ion-skeleton-text animated style="width: 60%"></ion-skeleton-text></p>
|
|
</ion-label>
|
|
</ion-item>
|
|
</ion-list>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</ion-content> |