Merge pull request #70 from dod-ccpo/159018281-add-missing-fields

Add missing fields to financial verification step
This commit is contained in:
patricksmithdds 2018-07-12 17:05:18 -04:00 committed by GitHub
commit 9101f72ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 2 deletions

View File

@ -15,10 +15,14 @@ class FinancialForm(Form):
"Unique Item Identifier (UII)s related to your application(s) if you already have them."
)
pe_id = NewlineListField(
"Program Element (PE) Numbers related to your request"
pe_id = StringField(
"Program Element (PE) Number related to your request"
)
treasury_code = StringField("Please provide your Program Treasury Code")
ba_code = StringField("Please provide your Program BA Code")
fname_co = StringField("Contracting Officer First Name", validators=[Required()])
lname_co = StringField("Contracting Officer Last Name", validators=[Required()])

View File

@ -35,6 +35,21 @@
</div>
{% end %}
{{ f.treasury_code.label }}
{{ f.treasury_code(placeholder="Example: 1200") }}
{% for e in f.treasury_code.errors %}
<div class="usa-input-error-message">
{{ e }}
</div>
{% end %}
{{ f.ba_code.label }}
{{ f.ba_code(placeholder="Example: 02") }}
{% for e in f.ba_code.errors %}
<div class="usa-input-error-message">
{{ e }}
</div>
{% end %}
<!-- KO Information -->