diff --git a/components/case/summary.js b/components/case/summary.js
index 1c841b66..20717ea0 100644
--- a/components/case/summary.js
+++ b/components/case/summary.js
@@ -141,6 +141,10 @@ const CaseSummary = (props) => {
{getFormCollectionByID(appealTypeID)
.PrimaryIdAttribute == "pinswg_dnsid"
? t("case:summary-applicantonly-label")
+ : getFormCollectionByID(appealTypeID)
+ .PrimaryIdAttribute ==
+ "pinswg_nonvalidationid"
+ ? t("case:summary-appellantonly-label")
: t("case:summary-applicant-label")}
diff --git a/components/case/summaryTypes/pinswg_nonvalidationid.js b/components/case/summaryTypes/pinswg_nonvalidationid.js
index e32f2076..84d515af 100644
--- a/components/case/summaryTypes/pinswg_nonvalidationid.js
+++ b/components/case/summaryTypes/pinswg_nonvalidationid.js
@@ -77,7 +77,7 @@ const Pinswg_nonvalidationid = (props) => {
: ""}
-
+ {/*
{t("case:summary-procedure-label")}
@@ -95,7 +95,7 @@ const Pinswg_nonvalidationid = (props) => {
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
] || ""}
-
+
*/}
{t("case:summary-status-label")}
@@ -128,12 +128,12 @@ const Pinswg_nonvalidationid = (props) => {
transLookup,
'$..[?(@.value=="' +
detailsObj[
- "pinswg_decision@OData.Community.Display.V1.FormattedValue"
+ "pinswg_decisionissued@OData.Community.Display.V1.FormattedValue"
] +
'")].value_cy'
)
: detailsObj[
- "pinswg_decision@OData.Community.Display.V1.FormattedValue"
+ "pinswg_decisionissued@OData.Community.Display.V1.FormattedValue"
] ||
t(
"case:summary-no-date-entered-label"
@@ -164,12 +164,12 @@ const Pinswg_nonvalidationid = (props) => {
{t("case:summary-start-date-label")}
- {_.has(detailsObj, "pinswg_startdate")
+ {_.has(detailsObj, "pinswg_validdate")
? !_.isEmpty(
- detailsObj.pinswg_startdate
+ detailsObj.pinswg_validdate
)
? formatDates(
- detailsObj.pinswg_startdate
+ detailsObj.pinswg_validdate
)
: t(
"case:summary-no-date-entered-label"
@@ -200,13 +200,13 @@ const Pinswg_nonvalidationid = (props) => {
{_.has(
detailsObj,
- "pinswg_casedecisiondate"
+ "pinswg_decisionissueddate"
)
? !_.isEmpty(
- detailsObj.pinswg_casedecisiondate
+ detailsObj.pinswg_decisionissueddate
)
? formatDates(
- detailsObj.pinswg_casedecisiondate
+ detailsObj.pinswg_decisionissueddate
)
: t(
"case:summary-no-date-entered-label"
diff --git a/locales/cy/case.json b/locales/cy/case.json
index 51f3ed9a..7fda900b 100644
--- a/locales/cy/case.json
+++ b/locales/cy/case.json
@@ -4,6 +4,7 @@
"summary-reference-label": "Cyfeirnod",
"summary-applicant-label": "Apelydd",
"summary-applicantonly-label": "Ymgeisydd",
+ "summary-appellantonly-label": "Apelydd",
"summary-agent-label": "Asiant",
"summary-site-address-label": "Cyfeiriad y Safle",
"summary-description-label": "Disgrifiad",
diff --git a/locales/en/case.json b/locales/en/case.json
index bae076ea..c80fe0b4 100644
--- a/locales/en/case.json
+++ b/locales/en/case.json
@@ -4,6 +4,7 @@
"summary-reference-label": "Reference",
"summary-applicant-label": "Appellant",
"summary-applicantonly-label": "Applicant",
+ "summary-appellantonly-label": "Appellant",
"summary-agent-label": "Agent",
"summary-site-address-label": "Site Address",
"summary-description-label": "Description",