Merge branch 'staging' into to-index-fixes

This commit is contained in:
leigh-mil
2020-02-11 09:40:50 -05:00
committed by GitHub
37 changed files with 391 additions and 387 deletions

View File

@@ -89,6 +89,12 @@ class Portfolio(
def active_task_orders(self):
return [task_order for task_order in self.task_orders if task_order.is_active]
@property
def total_obligated_funds(self):
return sum(
(task_order.total_obligated_funds for task_order in self.active_task_orders)
)
@property
def funding_duration(self):
"""