This commit is contained in:
Peter Maquiran
2021-08-11 10:52:31 +01:00
parent dcbe98df94
commit 4bcaba8ee0
11 changed files with 248 additions and 23 deletions
+27
View File
@@ -0,0 +1,27 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class DeadlineService {
constructor() { }
priorityToDeadlineType(Priority): string {
if(Priority=='99999861') {
return 'Normal';
}
else if(Priority=='99999862') {
return 'Urgente';
}
else if(Priority=='99999863') {
return 'Muito Urgente';
}
else if(Priority=='99999864') {
return 'Urgentíssimo';
}
}
}