{% extends "base.html" %} {% from "components/alert.html" import Alert %} {% from "components/text_input.html" import TextInput %} {% from "components/options_input.html" import OptionsInput %} {% from "components/date_input.html" import DateInput %} {% block content %} {% include 'requests/review_menu.html' %} {% if request.is_pending_financial_verification and not f.errors and not extended %} {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }} {% endif %} {% if review_comment %} {% include 'requests/comment.html' %} {% endif %}
{% if extended %} {{ Alert('Manually enter Task Order information', message="Additional fields are displayed below, where you can manually enter financial information as documented in your Task Order.", level='warning', actions=[ { 'href': url_for('atst.helpdocs'), 'label': 'Learn more about the JEDI Cloud Task Order and the Financial Verification process.', 'icon': 'help' } ] ) }} {% endif %} {% if f.is_missing_task_order_number %} {% set extended_url = url_for('requests.financial_verification', request_id=request.id, extended=True) %} {% call Alert('Task Order not found in EDA', level='warning') %} We could not find your Task Order in our system of record, EDA. Please confirm that you have entered it correctly.
Enter Task Order information manually {% endcall %} {% endif %} {% block form_action %} {% if extended %}
{% else %} {% endif %} {% endblock %} {{ f.csrf_token }} {% block form %} {% autoescape false %} {% if f.errors and not f.is_only_missing_task_order_number %} {{ Alert('There were some errors', message="

Please see below.

", level='error' ) }} {% endif %}

Financial Verification

Request: {{ request.displayname }}

In order to get you access to the JEDI Cloud, we will need you to enter the details below that will help us verify and account for your Task Order.

{% if extended %}
{{ OptionsInput(f.funding_type) }} {{ DateInput(f.expiration_date, placeholder='MM / DD / YYYY', validation='date', tooltip='Please enter the expiration date for the task order only and do not include options that you may choose to exercise in the future.') }} {{ TextInput( f.clin_0001, validation='dollars' ) }} {{ TextInput( f.clin_0003, validation='dollars' ) }} {{ TextInput( f.clin_1001, validation='dollars' ) }} {{ TextInput( f.clin_1003, validation='dollars' ) }} {{ TextInput( f.clin_2001, validation='dollars' ) }} {{ TextInput( f.clin_2003, validation='dollars' ) }}
{{ f.task_order.label }} {{ f.task_order }} {% for error in f.task_order.errors %} {{error}} {% endfor %}
{% endif %} {{ TextInput( f.task_order_number, placeholder="e.g.: 1234567899C0001", tooltip="A Contracting Officer will likely be the best source for this number.", validation="anything" ) }} {{ TextInput(f.uii_ids, paragraph=True, placeholder="examples: \nDI 0CVA5786950 \nUN1945326361234786950", tooltip="A Unique Item Identifer is a unique code that helps the Department of Defense track and report on where and how digital assets are stored.
Not all applications have an existing UII number assigned." ) }} {{ TextInput(f.pe_id, placeholder="e.g.: 0105688F", validation="peNumber" ) }} {{ TextInput(f.treasury_code,placeholder="e.g.: 00123456",validation="treasuryCode") }} {{ TextInput(f.ba_code,placeholder="e.g.: 02A",validation="baCode") }}

Contracting Officer (KO) Information

{{ TextInput(f.fname_co) }}
{{ TextInput(f.lname_co) }}
{{ TextInput(f.email_co,validation='email', placeholder='e.g. jane@mail.mil') }}
{{ TextInput(f.office_co,placeholder="e.g.: WHS") }}

Contracting Officer Representative (COR) Information

{{ TextInput(f.fname_cor) }}
{{ TextInput(f.lname_cor) }}
{{ TextInput(f.email_cor,validation='email', placeholder='e.g. jane@mail.mil') }}
{{ TextInput(f.office_cor,placeholder="e.g.: WHS") }}
{% endautoescape %}
{% endblock form %} {% block next %}
{% endblock %}
{% endblock %}