Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional reference numbers to Refund route #231

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d659061
First attempt adding 3 extra reference numbers to the question "Which…
ChisomOguibe11 Jan 26, 2023
67e5a72
fix eslint errors
ChisomOguibe11 Feb 1, 2023
7b98ea7
upgrade hof package from v20.1.10 to v20.1.19
ChisomOguibe11 Feb 1, 2023
7281d33
upgrade hof package from v20.1.19 to v20.2.1
ChisomOguibe11 Feb 1, 2023
5f851ca
update expiry date for SNYK-JS-MINIMIST
ChisomOguibe11 Feb 2, 2023
8375349
add additional reference fields to complaint json converters and decs…
ChisomOguibe11 Feb 14, 2023
5e3a366
ammend new reference field labels to match JIRA ticket version
ChisomOguibe11 Feb 16, 2023
ad5c862
add missing refund details in "Check your answers" page
ChisomOguibe11 Feb 20, 2023
33d102d
First attempt adding 3 extra reference numbers to the question "Which…
ChisomOguibe11 Jan 26, 2023
78db03f
fix eslint errors
ChisomOguibe11 Feb 1, 2023
8034526
upgrade hof package from v20.1.10 to v20.1.19
ChisomOguibe11 Feb 1, 2023
992bce6
upgrade hof package from v20.1.19 to v20.2.1
ChisomOguibe11 Feb 1, 2023
926813e
update expiry date for SNYK-JS-MINIMIST
ChisomOguibe11 Feb 2, 2023
7ae5b40
add additional reference fields to complaint json converters and decs…
ChisomOguibe11 Feb 14, 2023
4951100
ammend new reference field labels to match JIRA ticket version
ChisomOguibe11 Feb 16, 2023
371aa78
add missing refund details in "Check your answers" page
ChisomOguibe11 Feb 20, 2023
b505e61
Merge remote-tracking branch 'origin/UKVIC-156' into UKVIC-156
ChisomOguibe11 Feb 21, 2023
fecfe8a
add extra missing refund details in "Check your answers" page
ChisomOguibe11 Feb 21, 2023
f2f34ac
Add validation error message for exceeding character limit for compla…
ChisomOguibe11 Feb 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .snyk
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ ignore:
SNYK-JS-MINIMIST-2429795:
- '*':
reason: low severity
expires: '2022-11-01T17:02:21.865Z'
expires: '2023-11-01T17:02:21.865Z'
patch: {}
12 changes: 12 additions & 0 deletions apps/ukvi-complaints/behaviours/caseworker-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,18 @@ const getDataRows = (model, translate) => {
label: translate('pages.confirm.fields.uan-reference.label'),
value: model['uan-reference']
},
model['case-id-reference'] && {
label: translate('pages.confirm.fields.case-id-reference.label'),
value: model['case-id-reference']
},
model['payment-reference'] && {
label: translate('pages.confirm.fields.payment-reference.label'),
value: model['payment-reference']
},
model['other-reference'] && {
label: translate('pages.confirm.fields.other-reference.label'),
value: model['other-reference']
},
model['complaint-details'] && {
label: translate('pages.confirm.fields.complaint-details.label'),
value: model['complaint-details']
Expand Down
12 changes: 12 additions & 0 deletions apps/ukvi-complaints/behaviours/customer-email.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,18 @@ const getDataRows = (model, translate) => {
label: translate('pages.confirm.fields.uan-reference.label'),
value: model['uan-reference']
},
model['case-id-reference'] && {
label: translate('pages.confirm.fields.case-id-reference.label'),
value: model['case-id-reference']
},
model['payment-reference'] && {
label: translate('pages.confirm.fields.payment-reference.label'),
value: model['payment-reference']
},
model['other-reference'] && {
label: translate('pages.confirm.fields.other-reference.label'),
value: model['other-reference']
},
model['complaint-details'] && {
label: translate('pages.confirm.fields.complaint-details.label'),
value: model['complaint-details']
Expand Down
Loading