show modal for requests pending CCPO approval
This commit is contained in:
parent
0371c969e7
commit
654f9231b5
@ -104,7 +104,7 @@ def requests_submit(request_id=None):
|
|||||||
return redirect("/requests?modal=pendingFinancialVerification")
|
return redirect("/requests?modal=pendingFinancialVerification")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
return redirect("/requests")
|
return redirect("/requests?modal=pendingCCPOApproval")
|
||||||
|
|
||||||
|
|
||||||
# TODO: generalize this, along with other authorizations, into a policy-pattern
|
# TODO: generalize this, along with other authorizations, into a policy-pattern
|
||||||
|
@ -21,6 +21,7 @@ const app = new Vue({
|
|||||||
modals: {
|
modals: {
|
||||||
styleguideModal: false,
|
styleguideModal: false,
|
||||||
pendingFinancialVerification: false,
|
pendingFinancialVerification: false,
|
||||||
|
pendingCCPOApproval: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
11
templates/fragments/pending_ccpo_approval_alert.html
Normal file
11
templates/fragments/pending_ccpo_approval_alert.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<p>
|
||||||
|
We will review and respond to your request in 72 hours. You’ll be notified via email or phone.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
While your request is being reviewed, your next step is to create a Task Order associated with JEDI Cloud. Please contact a Contracting Officer (KO), Contracting Officer Representative (COR), or a Financial Manager to help with this step.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Learn more about the JEDI Task Order and the Financial Verification process.
|
||||||
|
</p>
|
35
templates/fragments/pending_ccpo_approval_modal.html
Normal file
35
templates/fragments/pending_ccpo_approval_modal.html
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<h1>
|
||||||
|
Request submitted. Approval pending.
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
We will review and respond to your request in 72 hours. You’ll be notified via email or phone.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Your request is being reviewed because:
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Your request includes over $1 million for cloud resources
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
We may need more information about your request
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>
|
||||||
|
Next Steps
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
While your request is being reviewed, your next step is to create a Task Order associated with JEDI Cloud. Please contact a Contracting Officer (KO), Contracting Officer Representative (COR), or a Financial Manager to help with this step.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Once the Task Order has been created, you will be asked to provide details about the task order in the Financial Verification step.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Learn more about the JEDI Task Order and the Financial Verification process.
|
||||||
|
</p>
|
@ -16,6 +16,15 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endcall %}
|
{% endcall %}
|
||||||
|
|
||||||
|
{% call Modal(name='pendingCCPOApproval', dismissable=True) %}
|
||||||
|
|
||||||
|
{% include 'fragments/pending_ccpo_approval_modal.html' %}
|
||||||
|
|
||||||
|
<div class='action-group'>
|
||||||
|
<a v-on:click="closeModal('pendingCCPOApproval')" class='action-group__action usa-button'>Close</a>
|
||||||
|
</div>
|
||||||
|
{% endcall %}
|
||||||
|
|
||||||
{% if not requests %}
|
{% if not requests %}
|
||||||
|
|
||||||
{{ EmptyState(
|
{{ EmptyState(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user