Determine if finver form should be extended by checking TO

This commit is contained in:
richard-dds
2018-10-22 10:17:04 -04:00
parent 68a18b834e
commit a1735874e6
6 changed files with 39 additions and 43 deletions

View File

@@ -159,9 +159,7 @@ class Requests(object):
return Requests.status_count(RequestStatus.APPROVED)
@classmethod
def update_financial_verification(
cls, request_id, financial_data, extended=False, task_order=None
):
def update_financial_verification(cls, request_id, financial_data, task_order=None):
request = RequestsQuery.get_with_lock(request_id)
delta = pick(
@@ -181,7 +179,6 @@ class Requests(object):
],
financial_data,
)
delta["extended"] = extended
if task_order:
request.task_order = task_order