Merge pull request #284 from dod-ccpo/ui/request-approval-screen
Ui/request approval screen
This commit is contained in:
commit
dffd0e9e0f
@ -7,7 +7,10 @@ from .validators import Alphabet, PhoneNumber
|
||||
|
||||
|
||||
class CCPOReviewForm(ValidatedForm):
|
||||
comment = TextAreaField("Comments (optional)")
|
||||
comment = TextAreaField(
|
||||
"Instructions or comments",
|
||||
description="Provide instructions or notes for additional information that is necessary to approve the request here. The requestor may then re-submit the updated request or initiate contact outside of AT-AT if further discussion is required. <strong>This message will be shared with the person making the JEDI request.</strong>.",
|
||||
)
|
||||
fname_mao = StringField(
|
||||
"First Name (optional)", validators=[Optional(), Alphabet()]
|
||||
)
|
||||
|
@ -5,4 +5,8 @@ from .forms import ValidatedForm
|
||||
|
||||
|
||||
class InternalCommentForm(ValidatedForm):
|
||||
text = TextAreaField(validators=[Optional()])
|
||||
text = TextAreaField(
|
||||
"CCPO Internal Notes",
|
||||
description="You may add additional comments and notes for internal CCPO reference and follow-up here.",
|
||||
validators=[Optional()],
|
||||
)
|
||||
|
@ -8,7 +8,7 @@ class RequestReview(Base):
|
||||
__tablename__ = "request_reviews"
|
||||
|
||||
id = Column(BigInteger, primary_key=True)
|
||||
status = relationship("RequestStatusEvent", back_populates="review")
|
||||
status = relationship("RequestStatusEvent", uselist=False, back_populates="review")
|
||||
|
||||
user_id = Column(ForeignKey("users.id"), nullable=False)
|
||||
reviewer = relationship("User")
|
||||
|
@ -48,6 +48,8 @@ class RequestStatusEvent(Base):
|
||||
def log_name(self):
|
||||
if self.new_status == RequestStatus.CHANGES_REQUESTED:
|
||||
return "Denied"
|
||||
if self.new_status == RequestStatus.CHANGES_REQUESTED_TO_FINVER:
|
||||
return "Denied"
|
||||
elif self.new_status == RequestStatus.PENDING_FINANCIAL_VERIFICATION:
|
||||
return "Accepted"
|
||||
else:
|
||||
|
@ -35,7 +35,7 @@ def render_approval(request, form=None):
|
||||
return render_template(
|
||||
"requests/approval.html",
|
||||
data=data,
|
||||
status_events=reversed(request.status_events),
|
||||
reviews=list(reversed(request.reviews)),
|
||||
request=request,
|
||||
current_status=request.status.value,
|
||||
pending_review=pending_review,
|
||||
@ -58,7 +58,7 @@ def submit_approval(request_id):
|
||||
|
||||
form = CCPOReviewForm(http_request.form)
|
||||
if form.validate():
|
||||
if http_request.form.get("approved"):
|
||||
if http_request.form.get("review") == "approving":
|
||||
Requests.advance(g.current_user, request, form.data)
|
||||
else:
|
||||
Requests.request_changes(g.current_user, request, form.data)
|
||||
@ -93,4 +93,6 @@ def create_internal_comment(request_id):
|
||||
request = Requests.get(g.current_user, request_id)
|
||||
Requests.update_internal_comments(g.current_user, request, form.data["text"])
|
||||
|
||||
return redirect(url_for("requests.approval", request_id=request_id))
|
||||
return redirect(
|
||||
url_for("requests.approval", request_id=request_id, _anchor="ccpo-notes")
|
||||
)
|
||||
|
28
js/components/forms/ccpo_approval.js
Normal file
28
js/components/forms/ccpo_approval.js
Normal file
@ -0,0 +1,28 @@
|
||||
import textinput from '../text_input'
|
||||
|
||||
export default {
|
||||
name: 'ccpo-approval',
|
||||
|
||||
components: {
|
||||
textinput
|
||||
},
|
||||
|
||||
data: function () {
|
||||
return {
|
||||
approving: false,
|
||||
denying: false
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
setReview: function (e) {
|
||||
if (e.target.value === 'approving') {
|
||||
this.approving = true
|
||||
this.denying = false
|
||||
} else {
|
||||
this.approving = false
|
||||
this.denying = true
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
21
js/components/local_datetime.js
Normal file
21
js/components/local_datetime.js
Normal file
@ -0,0 +1,21 @@
|
||||
import { format } from 'date-fns'
|
||||
|
||||
export default {
|
||||
name: 'local-datetime',
|
||||
|
||||
props: {
|
||||
timestamp: String,
|
||||
format: {
|
||||
type: String,
|
||||
default: 'MMM D YYYY H:mm'
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
displayTime: function () {
|
||||
return format(this.timestamp, this.format)
|
||||
}
|
||||
},
|
||||
|
||||
template: '<time v-bind:datetime="timestamp">{{ this.displayTime }}</time>'
|
||||
}
|
@ -19,7 +19,8 @@ export default {
|
||||
default: () => ''
|
||||
},
|
||||
initialErrors: Array,
|
||||
paragraph: String
|
||||
paragraph: String,
|
||||
noMaxWidth: String
|
||||
},
|
||||
|
||||
data: function () {
|
||||
|
@ -16,6 +16,8 @@ import NewProject from './components/forms/new_project'
|
||||
import Modal from './mixins/modal'
|
||||
import selector from './components/selector'
|
||||
import BudgetChart from './components/charts/budget_chart'
|
||||
import CcpoApproval from './components/forms/ccpo_approval'
|
||||
import LocalDatetime from './components/local_datetime'
|
||||
|
||||
Vue.use(VTooltip)
|
||||
|
||||
@ -33,7 +35,9 @@ const app = new Vue({
|
||||
financial,
|
||||
NewProject,
|
||||
selector,
|
||||
BudgetChart
|
||||
BudgetChart,
|
||||
CcpoApproval,
|
||||
LocalDatetime
|
||||
},
|
||||
mounted: function() {
|
||||
const modalOpen = document.querySelector("#modalOpen")
|
||||
|
@ -9,6 +9,10 @@
|
||||
border-left-width: $gap / 2;
|
||||
border-left-style: solid;
|
||||
@include panel-margin;
|
||||
|
||||
@include media($medium-screen) {
|
||||
padding: $gap * 4;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin alert-level($level) {
|
||||
@ -53,6 +57,10 @@
|
||||
.alert__title {
|
||||
@include h3;
|
||||
margin-top: 0;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.alert__content {
|
||||
|
@ -5,6 +5,10 @@
|
||||
margin-top: $gap * 4;
|
||||
margin-bottom: $gap * 4;
|
||||
|
||||
&--tight {
|
||||
margin-top: $gap * 2;
|
||||
}
|
||||
|
||||
.usa-button,
|
||||
a {
|
||||
margin: 0 0 0 ($gap * 2);
|
||||
|
@ -246,6 +246,19 @@
|
||||
}
|
||||
}
|
||||
|
||||
&.no-max-width {
|
||||
padding-right: $gap * 3;
|
||||
|
||||
input, textarea, select, label {
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.icon-validation {
|
||||
left: auto;
|
||||
right: - $gap * 4;
|
||||
}
|
||||
}
|
||||
|
||||
&.usa-input--error {
|
||||
@include input-state('error');
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
margin: 0 $gap;
|
||||
padding: 0 $gap;
|
||||
border-radius: $gap / 2;
|
||||
white-space: nowrap;
|
||||
|
||||
&.label--info {
|
||||
background-color: $color-primary;
|
||||
|
@ -63,6 +63,7 @@
|
||||
|
||||
.panel__heading {
|
||||
padding: $gap * 2;
|
||||
|
||||
@include media($medium-screen) {
|
||||
padding: $gap * 4;
|
||||
}
|
||||
@ -71,6 +72,10 @@
|
||||
padding: $gap*2;
|
||||
}
|
||||
|
||||
&--divider {
|
||||
border-bottom: 1px solid $color-gray-light;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
@ -90,15 +95,16 @@
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-bottom: 1px dashed $color-gray-light;
|
||||
margin: ($gap * 4) ($site-margins*-4);
|
||||
}
|
||||
}
|
||||
|
||||
.panel__actions {
|
||||
@include panel-actions;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-bottom: 1px dashed $color-gray-light;
|
||||
margin: 0px $site-margins*-4;
|
||||
}
|
||||
|
||||
|
@ -32,6 +32,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
.request-approval__review {
|
||||
.action-group {
|
||||
margin-bottom: $gap * 6;
|
||||
}
|
||||
}
|
||||
|
||||
.approval-log {
|
||||
ol {
|
||||
list-style: none;
|
||||
@ -43,7 +49,7 @@
|
||||
border-top: 1px dashed $color-gray-light;
|
||||
|
||||
&:first-child {
|
||||
border-top-style: solid;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
@include media($medium-screen) {
|
||||
@ -94,4 +100,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.internal-notes {
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,24 +1,35 @@
|
||||
{% from "components/icon.html" import Icon %}
|
||||
{% from "components/tooltip.html" import Tooltip %}
|
||||
|
||||
{% macro TextInput(field, tooltip='', placeholder='', validation='anything', paragraph=False, initial_value='') -%}
|
||||
{% macro TextInput(
|
||||
field,
|
||||
label=field.label | striptags,
|
||||
description=field.description,
|
||||
tooltip='',
|
||||
placeholder='',
|
||||
validation='anything',
|
||||
paragraph=False,
|
||||
initial_value='',
|
||||
noMaxWidth=False) -%}
|
||||
|
||||
<textinput
|
||||
name='{{ field.name }}'
|
||||
validation='{{ validation }}'
|
||||
{% if paragraph %}paragraph='true'{% endif %}
|
||||
{% if noMaxWidth %}no-max-width='true'{% endif %}
|
||||
{% if initial_value or field.data %}initial-value='{{ initial_value or field.data }}'{% endif %}
|
||||
{% if field.errors %}v-bind:initial-errors='{{ field.errors }}'{% endif %}
|
||||
key='{{ field.name }}'
|
||||
inline-template>
|
||||
|
||||
<div
|
||||
v-bind:class="['usa-input usa-input--validation--' + validation, { 'usa-input--error': showError, 'usa-input--success': showValid, 'usa-input--validation--paragraph': paragraph }]">
|
||||
v-bind:class="['usa-input usa-input--validation--' + validation, { 'usa-input--error': showError, 'usa-input--success': showValid, 'usa-input--validation--paragraph': paragraph, 'no-max-width': noMaxWidth }]">
|
||||
|
||||
<label for={{field.name}}>
|
||||
<div class="usa-input__title">{{ field.label | striptags }} {% if tooltip %}{{ Tooltip(tooltip) }}{% endif %}</div>
|
||||
<div class="usa-input__title">{{ label }} {% if tooltip %}{{ Tooltip(tooltip) }}{% endif %}</div>
|
||||
|
||||
{% if field.description %}
|
||||
<span class='usa-input__help'>{{ field.description | safe }}</span>
|
||||
<span class='usa-input__help'>{{ description | safe }}</span>
|
||||
{% endif %}
|
||||
|
||||
<span v-show='showError'>{{ Icon('alert',classes="icon-validation") }}</span>
|
||||
|
@ -23,8 +23,6 @@
|
||||
{% endif %}
|
||||
{% endmacro %}
|
||||
|
||||
|
||||
<hr>
|
||||
<h2>
|
||||
Details of Use
|
||||
{% if editable %}
|
||||
|
@ -16,8 +16,9 @@
|
||||
{% endif %}
|
||||
|
||||
<section class='panel'>
|
||||
<header class='panel__heading request-approval__heading'>
|
||||
<h1 class='h2'>Request #{{ request.id }}</h1>
|
||||
<header class='panel__heading panel__heading--divider request-approval__heading'>
|
||||
<h1 class='h2'>Request #{{ request.id }}
|
||||
</h1>
|
||||
<span class='label label--info'>{{ current_status }}</span>
|
||||
</header>
|
||||
|
||||
@ -32,38 +33,58 @@
|
||||
</section>
|
||||
|
||||
{% if pending_review %}
|
||||
<section class='request-approval__review'>
|
||||
<form method="POST" action="{{ url_for("requests.submit_approval", request_id=request.id) }}" autocomplete="off">
|
||||
{{ f.csrf_token }}
|
||||
<section class='panel'>
|
||||
<header class='panel__heading'>
|
||||
<h2 class='h3'>Approval Notes</h2>
|
||||
</header>
|
||||
|
||||
<ccpo-approval inline-template>
|
||||
<div>
|
||||
<div class='panel'>
|
||||
<div class='panel__content'>
|
||||
<h2>Review this Request</h2>
|
||||
|
||||
<div class="form__sub-fields">
|
||||
|
||||
<h3>Instructions for the Requestor</h3>
|
||||
|
||||
Provide instructions or notes for additional information that is necessary to approve the request here. The requestor may then re-submit the updated request or initiate contact outside of AT-AT if further discussion is required. <b>These notes will be visible to the person making the JEDI Cloud request</b>.
|
||||
|
||||
{{ TextInput(f.comment, paragraph=True, placeholder="Add notes or comments explaining what changes are being requested or why further discussion is needed about this request.") }}
|
||||
<div class='usa-input'>
|
||||
<fieldset class='usa-input__choices usa-input__choices--inline'>
|
||||
<input v-on:change='setReview' type='radio' name='review' id='review-approving' value='approving'/>
|
||||
<label for='review-approving'>Ready for approval</label>
|
||||
|
||||
<input v-on:change='setReview' type='radio' name='review' id='review-denying' value='denying'/>
|
||||
<label for='review-denying'>Request revisions</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-col">
|
||||
<h3>Authorizing Officials</h3>
|
||||
<p>This section is not visible to the person making the request. It is only viewable by CCPO staff.</p>
|
||||
<p>Provide the name of the key officials for both parties that have authorized this request to move forward.</p>
|
||||
<div v-if='approving || denying' class='form__sub-fields' v-cloak>
|
||||
<h3>Message to Requestor <span class='subtitle'>(optional)</span></h3>
|
||||
<div v-if='approving' key='approving' v-cloak>
|
||||
{{ TextInput(
|
||||
f.comment,
|
||||
label='Approval comments or notes',
|
||||
description='Provide any comments or notes regarding the approval of this request. <strong>This message will be shared with the person making the JEDI request.</strong>.',
|
||||
paragraph=True,
|
||||
noMaxWidth=True
|
||||
) }}
|
||||
</div>
|
||||
|
||||
<div v-else key='denying' v-cloak>
|
||||
{{ TextInput(
|
||||
f.comment,
|
||||
label='Revision instructions or notes',
|
||||
paragraph=True,
|
||||
noMaxWidth=True
|
||||
) }}
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="h3">Mission Authorizing Official</h4>
|
||||
|
||||
<div v-if='approving' class='form__sub-fields' v-cloak>
|
||||
|
||||
<h3>Authorizing Officials <span class='subtitle'>(optional)</span></h3>
|
||||
<p>Provide the name of the key officials for both parties that have authorized this request to move forward. <strong>This section is not visible to the person making the request. It is only viewable by CCPO staff.</strong></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<h4>Mission Authorizing Official</h4>
|
||||
|
||||
<div class='form-row'>
|
||||
|
||||
<div class='form-col form-col--half'>
|
||||
{{ TextInput(f.fname_mao, placeholder="First name of mission authorizing official") }}
|
||||
</div>
|
||||
@ -71,27 +92,23 @@
|
||||
<div class='form-col form-col--half'>
|
||||
{{ TextInput(f.lname_mao, placeholder="Last name of mission authorizing official") }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class='form-row'>
|
||||
|
||||
<div class='form-col form-col--half'>
|
||||
{{ TextInput(f.email_mao, placeholder="name@mail.mil") }}
|
||||
{{ TextInput(f.email_mao, placeholder="name@mail.mil", validation='email') }}
|
||||
</div>
|
||||
|
||||
|
||||
<div class='form-col form-col--half'>
|
||||
{{ TextInput(f.phone_mao, placeholder="(123) 456-7890", validation='usPhone') }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<h4 class="h3">CCPO Authorizing Official</h4>
|
||||
<h4>CCPO Authorizing Official</h4>
|
||||
|
||||
<div class='form-row'>
|
||||
|
||||
<div class='form-col form-col--half'>
|
||||
{{ TextInput(f.fname_ccpo, placeholder="First name of CCPO authorizing official") }}
|
||||
</div>
|
||||
@ -99,86 +116,97 @@
|
||||
<div class='form-col form-col--half'>
|
||||
{{ TextInput(f.lname_ccpo, placeholder="Last name of CCPO authorizing official") }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
<section class='action-group'>
|
||||
<input type="submit" name="approved" class='usa-button usa-button-big' value='Approve Request'>
|
||||
<input type="submit" name="denied" class='usa-button usa-button-big usa-button-secondary' value='Mark as Changes Requested'>
|
||||
<div v-if='approving || denying' class='action-group' v-cloak>
|
||||
<button v-if='approving' type="submit" name="approved" class='usa-button usa-button-big'>Approve Request</button>
|
||||
<button v-if='denying' type="submit" name="denied" class='usa-button usa-button-big'>Request Revisions</button>
|
||||
<a href='{{ url_for("requests.requests_index") }}' class='icon-link'>
|
||||
{{ Icon('x') }}
|
||||
<span>Cancel</span>
|
||||
</a>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</ccpo-approval>
|
||||
</form>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
<section class='panel'>
|
||||
<h4 class="h3">CCPO Internal Notes</h4>
|
||||
<p>You may add additional comments and notes for internal CCPO reference and follow-up here.</p>
|
||||
<div class='form-row'>
|
||||
<div class='form-col'>
|
||||
|
||||
<section class='internal-notes' id='ccpo-notes'>
|
||||
<form method="POST" action="{{ url_for('requests.create_internal_comment', request_id=request.id) }}">
|
||||
<div class='panel'>
|
||||
<div class='panel__content'>
|
||||
|
||||
{{ internal_comment_form.csrf_token }}
|
||||
{{ TextInput(internal_comment_form.text, paragraph=True) }}
|
||||
<button type="submit">Leave comment</button>
|
||||
{{ TextInput(internal_comment_form.text, paragraph=True, noMaxWidth=True) }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='action-group action-group--tight'>
|
||||
<button class='usa-button' type="submit">Save Notes</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class='panel'>
|
||||
<header class='panel__heading'>
|
||||
<h2 class='h3 request-approval__columns__heading'>Approval Log</h2>
|
||||
<section>
|
||||
<div class='panel'>
|
||||
<header class='panel__heading panel__heading--divider'>
|
||||
<h2 class='h3 request-approval__columns__heading'>CCPO Activity Log</h2>
|
||||
</header>
|
||||
<div>
|
||||
<div class='approval-log'>
|
||||
<ol>
|
||||
|
||||
{% for status_event in status_events %}
|
||||
{% if status_event.review %}
|
||||
<div class='approval-log'>
|
||||
{% if reviews %}
|
||||
<ol>
|
||||
{% for review in reviews %}
|
||||
<li>
|
||||
<article class='approval-log__log-item'>
|
||||
<div>
|
||||
<h3 class='approval-log__log-item__header'>{{ status_event.log_name }} by {{ status_event.review.full_name_reviewer }}</h3>
|
||||
{% if status_event.review.comment %}
|
||||
<p>{{ status_event.review.comment }}</p>
|
||||
{{ review.log_name }}
|
||||
<h3 class='approval-log__log-item__header'>{{ review.status.log_name }} by {{ review.full_name_reviewer }}</h3>
|
||||
{% if review.comment %}
|
||||
<p>{{ review.comment }}</p>
|
||||
{% endif %}
|
||||
|
||||
<div class='approval-log__behalfs'>
|
||||
{% if status_event.review.lname_mao %}
|
||||
{% if review.lname_mao %}
|
||||
<div class='approval-log__behalf'>
|
||||
<h3 class='approval-log__log-item__header'>Mission Owner approval on behalf of:</h3>
|
||||
<span>{{ status_event.review.full_name_mao }}</span>
|
||||
<span>{{ status_event.review.email_mao }}</span>
|
||||
<span>{{ status_event.review.phone_mao }}</span>
|
||||
<span>{{ review.full_name_mao }}</span>
|
||||
<span>{{ review.email_mao }}</span>
|
||||
<span>{{ review.phone_mao }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if status_event.review.lname_ccpo %}
|
||||
{% if review.lname_ccpo %}
|
||||
<div class='approval-log__behalf'>
|
||||
<h3 class='approval-log__log-item__header'>CCPO approval on behalf of:</h3>
|
||||
<span>{{ status_event.review.full_name_ccpo }}</span>
|
||||
<span>{{ review.full_name_ccpo }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% set timestamp=status_event.time_created | formattedDate("%Y-%m-%d %H:%M:%S %Z") %}
|
||||
<footer class='approval-log__log-item__timestamp'><time datetime='{{ timestamp }}'>{{ timestamp }}</time></footer>
|
||||
{% set timestamp=review.status.time_created | formattedDate("%Y-%m-%d %H:%M:%S %Z") %}
|
||||
<footer class='approval-log__log-item__timestamp'>
|
||||
<local-datetime timestamp='{{ timestamp }}'></local-datetime>
|
||||
</footer>
|
||||
</article>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
</ol>
|
||||
{% else %}
|
||||
<div class='panel__content'>
|
||||
<p class='h4'>No CCPO approvals or request changes have been recorded yet.</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
|
||||
{% endblock %}
|
||||
|
@ -87,7 +87,7 @@ def test_can_submit_request_approval(client, user_session):
|
||||
status=RequestStatus.PENDING_CCPO_ACCEPTANCE
|
||||
)
|
||||
review_data = RequestReviewFactory.dictionary()
|
||||
review_data["approved"] = True
|
||||
review_data["review"] = "approving"
|
||||
response = client.post(
|
||||
url_for("requests.submit_approval", request_id=request.id), data=review_data
|
||||
)
|
||||
@ -102,7 +102,7 @@ def test_can_submit_request_denial(client, user_session):
|
||||
status=RequestStatus.PENDING_CCPO_ACCEPTANCE
|
||||
)
|
||||
review_data = RequestReviewFactory.dictionary()
|
||||
review_data["denied"] = True
|
||||
review_data["review"] = "denying"
|
||||
response = client.post(
|
||||
url_for("requests.submit_approval", request_id=request.id), data=review_data
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user