mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
Update
This commit is contained in:
@@ -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';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user