This commit is contained in:
Peter Maquiran
2023-06-10 12:19:46 +01:00
parent ab43d697ea
commit de531bc550
7 changed files with 44 additions and 15 deletions
@@ -114,7 +114,7 @@
<div *ngIf="hideSearchBtn">
<mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary" placeholder="Selecione agenda">
<mat-select [(value)]="filterName">
<mat-select [(value)]="filterName" (change)="dynamicSearch()">
<mat-option value="Para hoje" >
Para hoje
@@ -159,7 +159,7 @@
class=" box-hover ion-no-padding cursor-pointer"
*ngFor = "let task of AllProcess"
(click)="goToProcess(task.SerialNumber || task.serialNumber, task.WorkflowName || task.workflowName || task.workflowDisplayName || task.workflowName, task.activityInstanceName)">
<div class="item-wrapper" *ngIf="TaskService.filter(task, filterName)">
<div class="item-wrapper">
<div class="item width-100">
<div class="item-top-detail">
<div class="item-subject">
@@ -212,7 +212,7 @@ export class GabineteDigitalPage implements OnInit {
let subject = task.Folio || task.Subject || task.workflowInstanceDataFields.Subject
subject = subject.toLowerCase();
return subject.includes(this.searchSubject.toLowerCase())
})
}).filter( task => this.TaskService.filter(task, this.filterName))
if(ordinance == this.ordinance) {