From a206fafe0a883eb2d5f206010c2789cb3ae86d12 Mon Sep 17 00:00:00 2001 From: dandds Date: Wed, 3 Oct 2018 15:55:19 -0400 Subject: [PATCH] fix bug in fin ver service object --- atst/routes/requests/financial_verification.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atst/routes/requests/financial_verification.py b/atst/routes/requests/financial_verification.py index 31605a15..72b6b13a 100644 --- a/atst/routes/requests/financial_verification.py +++ b/atst/routes/requests/financial_verification.py @@ -32,7 +32,8 @@ class FinancialVerification: @property def _task_order_data(self): if self.request.task_order: - data = self.request.task_order.to_dictionary() + task_order = self.request.task_order + data = task_order.to_dictionary() data["task_order_number"] = task_order.number data["funding_type"] = task_order.funding_type.value return data