Fake remaining balance for A-Wing and B-Wing
This commit is contained in:
parent
201e4e9e35
commit
febb2c5d0a
@ -19,6 +19,11 @@ from werkzeug.datastructures import FileStorage
|
|||||||
|
|
||||||
from atst.models import Attachment, Base, types, mixins
|
from atst.models import Attachment, Base, types, mixins
|
||||||
|
|
||||||
|
# Imports used for mocking TO balance
|
||||||
|
from atst.domain.csp.reports import MockReportingProvider
|
||||||
|
from flask import current_app as app
|
||||||
|
import random
|
||||||
|
|
||||||
|
|
||||||
class Status(Enum):
|
class Status(Enum):
|
||||||
STARTED = "Started"
|
STARTED = "Started"
|
||||||
@ -135,6 +140,10 @@ class TaskOrder(Base, mixins.TimestampsMixin):
|
|||||||
def is_active(self):
|
def is_active(self):
|
||||||
return self.status == Status.ACTIVE
|
return self.status == Status.ACTIVE
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_expired(self):
|
||||||
|
return self.status == Status.EXPIRED
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def status(self):
|
def status(self):
|
||||||
if self.is_submitted:
|
if self.is_submitted:
|
||||||
@ -164,6 +173,15 @@ class TaskOrder(Base, mixins.TimestampsMixin):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def balance(self):
|
def balance(self):
|
||||||
|
# Faking the remaining balance using the stubbed reporting data for A-Wing & B-Wing
|
||||||
|
if (
|
||||||
|
self.portfolio_name in MockReportingProvider.REPORT_FIXTURE_MAP
|
||||||
|
and self.is_active
|
||||||
|
):
|
||||||
|
return self.budget - app.csp.reports.get_total_spending(self.portfolio)
|
||||||
|
# Faking an almost fully spent TO if the TO is expired
|
||||||
|
if self.is_expired:
|
||||||
|
return random.randrange(300) / 100 # nosec
|
||||||
# TODO: somehow calculate the remaining balance. For now, assume $0 spent
|
# TODO: somehow calculate the remaining balance. For now, assume $0 spent
|
||||||
return self.budget
|
return self.budget
|
||||||
|
|
||||||
|
@ -27,10 +27,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class='portfolio-header__budget--amount'>
|
<div class='portfolio-header__budget--amount'>
|
||||||
<span class='portfolio-header__budget--dollars'>
|
<span class='portfolio-header__budget--dollars'>
|
||||||
{{ portfolio.task_orders | selectattr('is_active') | sum(attribute='budget') | justDollars }}
|
{{ portfolio.task_orders | selectattr('is_active') | sum(attribute='balance') | justDollars }}
|
||||||
</span>
|
</span>
|
||||||
<span class='portfolio-header__budget--cents'>
|
<span class='portfolio-header__budget--cents'>
|
||||||
.{{ portfolio.task_orders | selectattr('is_active') | sum(attribute='budget') | justCents }}
|
.{{ portfolio.task_orders | selectattr('is_active') | sum(attribute='balance') | justCents }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user