provide defaults for SO information on review page
This commit is contained in:
parent
41e715a404
commit
72f4472882
@ -169,9 +169,9 @@ def so_review_form(task_order):
|
|||||||
so = task_order.officer_dictionary("security_officer")
|
so = task_order.officer_dictionary("security_officer")
|
||||||
form_data = {
|
form_data = {
|
||||||
"certifying_official": "{} {}".format(
|
"certifying_official": "{} {}".format(
|
||||||
so.get("first_name"), so.get("last_name")
|
so.get("first_name", ""), so.get("last_name", "")
|
||||||
),
|
),
|
||||||
"co_phone": so["phone_number"],
|
"co_phone": so.get("phone_number", ""),
|
||||||
}
|
}
|
||||||
return DD254Form(data=form_data)
|
return DD254Form(data=form_data)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user