changes sandbox: {} to eval: true, caused errors in evaluated queries

This commit is contained in:
2025-04-15 17:25:14 +01:00
parent 854530e605
commit 87f0dcd811
55 changed files with 262 additions and 262 deletions
+4 -4
View File
@@ -160,7 +160,7 @@ const DocumentDetails = (props) => {
? jsonpath({
path: '$..[?(@.value=="All")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: "All"}
</option>
@@ -179,7 +179,7 @@ const DocumentDetails = (props) => {
item.pinswg_isharedocumentlocationsLabel +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: item.pinswg_isharedocumentlocationsLabel ||
t(
@@ -735,7 +735,7 @@ const DocumentDetails = (props) => {
incidentid +
"')]",
json: item,
sandbox: {},
eval: true,
});
detailsObj = item;
return (
@@ -830,7 +830,7 @@ const DocumentDetails = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_isharedocumentlocations@OData.Community.Display.V1.FormattedValue"
+8 -8
View File
@@ -212,18 +212,18 @@ let MakeRepresentation = (props) => {
? (casesObj = jsonpath({
path: '$..[?(@.title=="' + caseReference + '")]',
json: setCaseQueryObj,
sandbox: {},
eval: true,
}))
: currentType == "watchedCases"
? (casesObj = jsonpath({
path: '$..[?(@.ticketnumber=="' + caseReference + '")]',
json: watchedCases,
sandbox: {},
eval: true,
}))
: (casesObj = jsonpath({
path: '$..[?(@.reference=="' + caseReference + '")]',
json: setCaseQueryObj,
sandbox: {},
eval: true,
}));
casesObj = Object.assign({}, ...casesObj);
@@ -271,7 +271,7 @@ let MakeRepresentation = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseResultsObj,
sandbox: {},
eval: true,
});
resultsObj = resultsObj[0];
@@ -282,7 +282,7 @@ let MakeRepresentation = (props) => {
path:
'$..[?(@.repfile_name =="' + router.query.created + '")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -290,7 +290,7 @@ let MakeRepresentation = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -298,7 +298,7 @@ let MakeRepresentation = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
});
detailsObj = detailsObj[0];
@@ -945,7 +945,7 @@ let MakeRepresentation = (props) => {
detailsObj = jsonpath({
path: '$..[?(@.pinswg_name=="' + caseReference + '")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
});
detailsObj = detailsObj[0];
@@ -31,7 +31,7 @@ const RepDetails = (props) => {
detailsObj = jsonpath({
path: '$..[?(@.pinswg_name=="' + caseReference + '")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
});
detailsObj = detailsObj[0];
@@ -182,7 +182,7 @@ let RepLPA = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
});
let setCaseResultssObj = router.query.hasOwnProperty("state")
@@ -201,7 +201,7 @@ let RepLPA = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseResultssObj,
sandbox: {},
eval: true,
});
resultsObj = resultsObj[0];
@@ -23,7 +23,7 @@ const RepLPADetails = (props) => {
detailsObj = jsonpath({
path: '$..[?(@.pinswg_name=="' + caseReference + '")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
});
detailsObj = detailsObj[0];
@@ -64,7 +64,7 @@ let Enforcement_Questionnaire = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseDetailsObj,
sandbox: {},
eval: true,
});
let setCaseResultssObj = router.query.hasOwnProperty("state")
@@ -87,7 +87,7 @@ let Enforcement_Questionnaire = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseResultssObj,
sandbox: {},
eval: true,
});
resultsObj = resultsObj[0];
@@ -66,7 +66,7 @@ let S78_Questionnaire = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseResultssObj,
sandbox: {},
eval: true,
});
let setCaseResultssObj = router.query.hasOwnProperty("state")
@@ -95,7 +95,7 @@ let S78_Questionnaire = (props) => {
currentView.caseReference.currentReference +
'")]',
json: setCaseResultssObj,
sandbox: {},
eval: true,
});
resultsObj = resultsObj[0];
+1 -1
View File
@@ -63,7 +63,7 @@ const RepresentationList = (props) => {
incidentid +
"')]",
json: item,
sandbox: {},
eval: true,
});
detailsObj = item;
+9 -9
View File
@@ -138,7 +138,7 @@ const CaseSummary = (props) => {
whichIncident +
"')]",
json: watchedCases,
sandbox: {},
eval: true,
});
return isWatched;
@@ -178,30 +178,30 @@ const CaseSummary = (props) => {
? (casesObj = jsonpath({
path: '$..[?(@.title=="' + caseReference + '")]',
json: searchResultsObj,
sandbox: {},
eval: true,
}))
: currentType == "watchedCases"
? (casesObj = jsonpath({
path: '$..[?(@.pinswg_title=="' + caseReference + '")]',
json: setCaseQueryObj,
sandbox: {},
eval: true,
}))
: currentType == "myCases"
? (casesObj = jsonpath({
path: '$..[?(@.pinswg_title=="' + caseReference + '")]',
json: setCaseQueryObj,
sandbox: {},
eval: true,
}))
: currentType == "directResultsObj"
? (casesObj = jsonpath({
path: '$..[?(@.ticketnumber=="' + caseReference + '")]',
json: setCaseQueryObj,
sandbox: {},
eval: true,
}))
: (casesObj = jsonpath({
path: '$..[?(@.reference=="' + caseReference + '")]',
json: setCaseQueryObj,
sandbox: {},
eval: true,
}));
casesObj = Object.assign({}, ...casesObj);
@@ -212,14 +212,14 @@ const CaseSummary = (props) => {
? (detailsObj = jsonpath({
path: '$..[?(@.pinswg_name=="' + caseReference + '")]',
json: searchDetailsObj,
sandbox: {},
eval: true,
}))
: currentType == "directResultsObj"
? (detailsObj = setCaseDetailsObj[0].value[0])
: (detailsObj = jsonpath({
path: '$..[?(@.pinswg_name=="' + caseReference + '")]',
jsopn: setCaseDetailsObj,
sandbox: {},
eval: true,
}));
detailsObj = typeof detailsObj == "object" ? detailsObj : detailsObj[0];
@@ -405,7 +405,7 @@ const CaseSummary = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_casestage@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -60,7 +60,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_speacialistcaseprocess@OData.Community.Display.V1.FormattedValue"
@@ -82,7 +82,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -118,7 +118,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -139,7 +139,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -160,7 +160,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -185,7 +185,7 @@ const Pinswg_advertsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_callinss77id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_callinss77id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_callinss77id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_callinss77id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_callinss77id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_callinss77id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_commonlandid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_commonlandid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_commonlandid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_commonlandid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_commonlandid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_commonlandid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -235,7 +235,7 @@ const Pinswg_commonlandid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -243,7 +243,7 @@ const Pinswg_commonlandid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"
@@ -35,7 +35,7 @@ const Pinswg_communityinfrastructurelevyid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_communityinfrastructurelevyid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_communityinfrastructurelevyid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_communityinfrastructurelevyid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_communityinfrastructurelevyid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_communityinfrastructurelevyid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -75,7 +75,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -96,7 +96,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -117,7 +117,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -141,7 +141,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -215,7 +215,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -223,7 +223,7 @@ const Pinswg_compulsorypurchaseordersid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"
+6 -6
View File
@@ -131,7 +131,7 @@ const Pinswg_dnsid = (props) => {
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -157,7 +157,7 @@ const Pinswg_dnsid = (props) => {
detailsObj.pinswg_webaddress +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: (
<a
@@ -197,7 +197,7 @@ const Pinswg_dnsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -218,7 +218,7 @@ const Pinswg_dnsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_choiceofprocedure@OData.Community.Display.V1.FormattedValue"
@@ -281,7 +281,7 @@ const Pinswg_dnsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -350,7 +350,7 @@ const Pinswg_dnsid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -73,7 +73,7 @@ const Pinswg_electricityactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -97,7 +97,7 @@ const Pinswg_electricityactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -135,7 +135,7 @@ const Pinswg_electricityactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -158,7 +158,7 @@ const Pinswg_electricityactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -179,7 +179,7 @@ const Pinswg_electricityactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -203,7 +203,7 @@ const Pinswg_electricityactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -277,7 +277,7 @@ const Pinswg_electricityactid = (props) => {
detailsObj.pinswg_recommendation +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj.pinswg_recommendation ||
t(
@@ -300,7 +300,7 @@ const Pinswg_electricityactid = (props) => {
detailsObj.pinswg_webaddress +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj.pinswg_webaddress ||
t(
@@ -35,7 +35,7 @@ const Pinswg_enforcementlistedbuildingconseid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_enforcementlistedbuildingconseid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_enforcementlistedbuildingconseid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_enforcementlistedbuildingconseid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_enforcementlistedbuildingconseid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_enforcementlistedbuildingconseid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_enforcementnoticeappeals174id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_enforcementnoticeappeals174id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_enforcementnoticeappeals174id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_enforcementnoticeappeals174id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_enforcementnoticeappeals174id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_enforcementnoticeappeals174id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_environmentalpermittingid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_environmentalpermittingid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_environmentalpermittingid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_environmentalpermittingid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_environmentalpermittingid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_environmentalpermittingid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -235,7 +235,7 @@ const Pinswg_environmentalpermittingid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -243,7 +243,7 @@ const Pinswg_environmentalpermittingid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"
@@ -73,7 +73,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -97,7 +97,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -135,7 +135,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -156,7 +156,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -180,7 +180,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -254,7 +254,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
detailsObj.pinswg_recommendation +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj.pinswg_recommendation ||
t(
@@ -277,7 +277,7 @@ const Pinswg_harbourrevisionorderid = (props) => {
detailsObj.pinswg_webaddress +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj.pinswg_webaddress ||
t(
@@ -35,7 +35,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -60,7 +60,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_specialistcaseprocess@OData.Community.Display.V1.FormattedValue"
@@ -82,7 +82,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -118,7 +118,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -139,7 +139,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -160,7 +160,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -184,7 +184,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -258,7 +258,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -266,7 +266,7 @@ const Pinswg_hedgeshedgerowstreepreservatioid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"
@@ -35,7 +35,7 @@ const Pinswg_householderappealhasid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_householderappealhasid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_householderappealhasid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_householderappealhasid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -140,7 +140,7 @@ const Pinswg_householderappealhasid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_lawfuldevelopmentcertificatappid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_lawfuldevelopmentcertificatappid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_lawfuldevelopmentcertificatappid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_lawfuldevelopmentcertificatappid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_lawfuldevelopmentcertificatappid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_lawfuldevelopmentcertificatappid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
+6 -6
View File
@@ -35,7 +35,7 @@ const Pinswg_ldpid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_ldpid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_ldpid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_ldpid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_ldpid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_ldpid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_listedbuildingandconservationrid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_listedbuildingandconservationrid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_listedbuildingandconservationrid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_listedbuildingandconservationrid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_listedbuildingandconservationrid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_listedbuildingandconservationrid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_maintenanceoflands217id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_maintenanceoflands217id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_maintenanceoflands217id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_maintenanceoflands217id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_maintenanceoflands217id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_maintenanceoflands217id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -235,7 +235,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -243,7 +243,7 @@ const Pinswg_miscellaneouscasewordid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"
@@ -35,7 +35,7 @@ const Pinswg_nonvalidationid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_nonvalidationid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -94,7 +94,7 @@ const Pinswg_nonvalidationid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -115,7 +115,7 @@ const Pinswg_nonvalidationid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -139,7 +139,7 @@ const Pinswg_nonvalidationid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decisionissued@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_planningappeals78id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_planningappeals78id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_planningappeals78id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_planningappeals78id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -140,7 +140,7 @@ const Pinswg_planningappeals78id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -164,7 +164,7 @@ const Pinswg_planningappeals78id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_dicision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_planningconditionss73s79id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_planningconditionss73s79id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_planningconditionss73s79id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_planningconditionss73s79id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_planningconditionss73s79id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_planningconditionss73s79id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -35,7 +35,7 @@ const Pinswg_planningobligationappeals106id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_planningobligationappeals106id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_planningobligationappeals106id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_planningobligationappeals106id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_planningobligationappeals106id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_planningobligationappeals106id = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
+9 -9
View File
@@ -35,7 +35,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -60,7 +60,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_specialistcaseprocess@OData.Community.Display.V1.FormattedValue"
@@ -82,7 +82,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -118,7 +118,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -139,7 +139,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -160,7 +160,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -184,7 +184,7 @@ const Pinswg_rowid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -258,7 +258,7 @@ const Pinswg_rowid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -266,7 +266,7 @@ const Pinswg_rowid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"
@@ -73,7 +73,7 @@ const Pinswg_transportandworkactid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -98,7 +98,7 @@ const Pinswg_transportandworkactid = (props) => {
detailsObj.pinswg_recommendation +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj.pinswg_recommendation ||
t(
@@ -121,7 +121,7 @@ const Pinswg_transportandworkactid = (props) => {
detailsObj.pinswg_webaddress +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj.pinswg_webaddress ||
t(
@@ -35,7 +35,7 @@ const Pinswg_wayleaveid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
@@ -59,7 +59,7 @@ const Pinswg_wayleaveid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
@@ -95,7 +95,7 @@ const Pinswg_wayleaveid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_procedure@OData.Community.Display.V1.FormattedValue"
@@ -116,7 +116,7 @@ const Pinswg_wayleaveid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_typeofevent@OData.Community.Display.V1.FormattedValue"
@@ -137,7 +137,7 @@ const Pinswg_wayleaveid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: casesObj[
"statuscode@OData.Community.Display.V1.FormattedValue"
@@ -161,7 +161,7 @@ const Pinswg_wayleaveid = (props) => {
] +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: detailsObj[
"pinswg_decision@OData.Community.Display.V1.FormattedValue"
@@ -235,7 +235,7 @@ const Pinswg_wayleaveid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value_cy',
json: transLookup,
sandbox: {},
eval: true,
})
: jsonpath({
path:
@@ -243,7 +243,7 @@ const Pinswg_wayleaveid = (props) => {
detailsObj.pinswg_relevantauthorityname +
'")].value',
json: transLookup,
sandbox: {},
eval: true,
}) ||
t(
"case:summary-no-date-entered-label"