fix new task

This commit is contained in:
Peter Maquiran
2023-04-19 09:18:25 +01:00
parent dba5d96cda
commit 34acfed80e
22 changed files with 34 additions and 31 deletions
+4 -4
View File
@@ -195,16 +195,16 @@ export class DeplomasService {
updateNewCount() {
this.diplomasAssinadoListNewCount = this._diplomasAssinadoList.filter((e) =>{
return this.lessthen24Hours(e.TaskStartDate)
return this.lessthen24Hours(e.TaskReceiveDate)
})
this.diplomasReviewListNewCount = this._diplomasReviewList.filter((e) =>{
return this.lessthen24Hours(e.TaskStartDate)
return this.lessthen24Hours(e.TaskReceiveDate)
})
this.diplomasGerarListNewCount = this._diplomasGerarList.filter((e) =>{
return this.lessthen24Hours(e.TaskStartDate)
return this.lessthen24Hours(e.TaskReceiveDate)
})
this.diplomasParaAssinarNewCount = this._diplomasParaAssinar.filter((e) =>{
return this.lessthen24Hours(e.TaskStartDate)
return this.lessthen24Hours(e.TaskReceiveDate)
})
}