Ensure that task order PDF makes it into the FV form

This commit is contained in:
richard-dds 2018-10-18 10:18:24 -04:00
parent 5bd41a1016
commit 348687cd03

View File

@ -171,7 +171,7 @@ def financial_verification(request_id):
@requests_bp.route("/requests/verify/<string:request_id>", methods=["POST"])
def update_financial_verification(request_id):
request = Requests.get(g.current_user, request_id)
fv_data = http_request.form
fv_data = {**http_request.form, **http_request.files}
is_extended = http_request.args.get("extended")
try: