Remove extra details from expired TO display, small refactors in TO methods

This commit is contained in:
leigh-mil
2019-12-12 14:57:49 -05:00
parent 2fe7d4bb5b
commit 4d7af1bab4
3 changed files with 27 additions and 27 deletions

View File

@@ -172,7 +172,7 @@ class TaskOrder(Base, mixins.TimestampsMixin):
@property
def invoiced_funds(self):
# TODO: implement this using reporting data from the CSP
return self.total_obligated_funds * 0.75
return self.total_obligated_funds * 75 / 100
@property
def display_status(self):