updated weatched case for tickent number

This commit is contained in:
2025-08-13 09:58:39 +01:00
parent 664d0dd787
commit fc1f63f388
4 changed files with 40 additions and 12 deletions
+7 -9
View File
@@ -1431,7 +1431,7 @@ export const deleteMyRepresentationsFromBlob = (
}); });
}; };
export const deleteWatchedCases = (watchedCaseID) => { export const deleteWatchedCases = async (watchedCaseID) => {
var queryUrl = var queryUrl =
"/api/endpoint/deletewatchedcases_api?watchedCaseID=" + watchedCaseID; "/api/endpoint/deletewatchedcases_api?watchedCaseID=" + watchedCaseID;
var config = { var config = {
@@ -1439,14 +1439,12 @@ export const deleteWatchedCases = (watchedCaseID) => {
url: queryUrl, url: queryUrl,
}; };
return axios(config) try {
.then((res) => { const res = await axios(config);
//console.log("deleted ", res.data); return res.data;
return res.data; } catch (error) {
}) consoleLogger(error);
.catch((error) => { }
consoleLogger(error);
});
}; };
export const createAccount = (formValues) => { export const createAccount = (formValues) => {
+1 -1
View File
@@ -253,7 +253,7 @@ const TopThree = (props) => {
props.accountDetails props.accountDetails
.containerID, .containerID,
showTopThreeArr[key] showTopThreeArr[key]
.pinswg_name, .ticketnumber,
showTopThreeArr[key] showTopThreeArr[key]
.repfile_name .repfile_name
); );
+4 -1
View File
@@ -878,7 +878,10 @@ const ViewAllResults = (props) => {
deleteWatchedCases(caseID) deleteWatchedCases(caseID)
.then((data) => data) .then((data) => data)
.then(() => { .then(() => {
getWatchedCasesProxy(cookies.pinsUser).then((data) => { console.log("in heree");
getWatchedCasesProxy(
props.accountDetails.loggedinUserId
).then((data) => {
setWatchedCases(data), setWatchedCases(data),
getDetailsProxy(data, "myWatchedCases") getDetailsProxy(data, "myWatchedCases")
.then((data) => { .then((data) => {
+28 -1
View File
@@ -43,7 +43,7 @@ export default async function ApiProxy(req, res) {
var queryUrl = var queryUrl =
"pinswg_watchlists?$filter= _pinswg_contact_value eq " + "pinswg_watchlists?$filter= _pinswg_contact_value eq " +
loggedInUserId + loggedInUserId +
"&$select=modifiedon,pinswg_appealcasetype,pinswg_watchlistid,_pinswg_watchedcase_value,statuscode&$count=true&$orderby=createdon desc&$expand=pinswg_WatchedCase($select=pinswg_AssociatedLPA)"; "&$select=modifiedon,pinswg_appealcasetype,pinswg_watchlistid,_pinswg_watchedcase_value,statuscode,pinswg_representationsubmitted,pinswg_representationtype&$count=true&$orderby=createdon desc&$expand=pinswg_WatchedCase($select=pinswg_AssociatedLPA)";
return axios return axios
.get( .get(
@@ -51,6 +51,33 @@ export default async function ApiProxy(req, res) {
azureHeaders(token.access_token) azureHeaders(token.access_token)
) )
.then(({ data }) => { .then(({ data }) => {
data.value.forEach(function (element) {
element.ticketnumber = element.pinswg_WatchedCase.ticketnumber;
element.pinswg_title =
element[
"_pinswg_watchedcase_value@OData.Community.Display.V1.FormattedValue"
];
element[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
] =
element.pinswg_WatchedCase[
"_pinswg_associatedlpa_value@OData.Community.Display.V1.FormattedValue"
];
element._pinswg_associatedlpa_value =
element.pinswg_WatchedCase._pinswg_associatedlpa_value;
element[
"_ownerid_value@OData.Community.Display.V1.FormattedValue"
] =
element.pinswg_WatchedCase[
"_ownerid_value@OData.Community.Display.V1.FormattedValue"
];
element._ownerid_value =
element.pinswg_WatchedCase._ownerid_value;
delete element.pinswg_WatchedCase;
});
res.status(200).json(data); res.status(200).json(data);
}) })
.catch((error) => { .catch((error) => {