Remove some process from All process page

This commit is contained in:
Eudes Inácio
2022-05-06 11:32:45 +01:00
parent a50b4444a5
commit 48167e02e0
4 changed files with 26 additions and 2 deletions
@@ -161,6 +161,7 @@ export class EventListPage implements OnInit {
this.eventsMDGPRList = mdEventsOficial.concat(mdEventsPessoal);
this.eventsMDGPRList = this.sortService.sortDate(this.eventsMDGPRList, 'taskStartDate')
this.eventsMDGPRList = this.sortService.sortArrayByDate(this.eventsMDGPRList)
this.eventsMDGPRList.filter(element => element.activityInstanceName != 'Editar Evento')
this.storage.set('event-to-aproveMD',this.eventsMDGPRList).then(() => {
@@ -173,6 +174,7 @@ export class EventListPage implements OnInit {
this.eventsPRList = prEventsOficial.concat(prEventsPessoal);
this.eventsPRList = this.sortService.sortDate(this.eventsPRList, 'taskStartDate')
this.eventsPRList = this.sortService.sortArrayByDate(this.eventsPRList)
this.eventsPRList.filter(element => element.activityInstanceName != 'Editar Evento')
this.storage.set('event-to-aprovePR',this.eventsPRList).then(() => {