Merge pull request #70 from dod-ccpo/159018281-add-missing-fields
Add missing fields to financial verification step
This commit is contained in:
@@ -15,10 +15,14 @@ class FinancialForm(Form):
|
|||||||
"Unique Item Identifier (UII)s related to your application(s) if you already have them."
|
"Unique Item Identifier (UII)s related to your application(s) if you already have them."
|
||||||
)
|
)
|
||||||
|
|
||||||
pe_id = NewlineListField(
|
pe_id = StringField(
|
||||||
"Program Element (PE) Numbers related to your request"
|
"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()])
|
fname_co = StringField("Contracting Officer First Name", validators=[Required()])
|
||||||
lname_co = StringField("Contracting Officer Last Name", validators=[Required()])
|
lname_co = StringField("Contracting Officer Last Name", validators=[Required()])
|
||||||
|
|
||||||
|
@@ -35,6 +35,21 @@
|
|||||||
</div>
|
</div>
|
||||||
{% end %}
|
{% 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 -->
|
<!-- KO Information -->
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user