link on portal for pdf download

This commit is contained in:
2025-06-24 10:52:06 +01:00
parent febfb4e532
commit 4d310fd6c1
10 changed files with 564 additions and 64 deletions
+49
View File
@@ -572,6 +572,7 @@ export const getSearchDocumentDetails = (incidentID) => {
.then((res) => res.data)
.catch((error) => {
consoleLogger(error);
throw error; // Important!
});
};
@@ -586,6 +587,19 @@ export const getSearchDocumentTypes = (incidentID) => {
});
};
export const getAppealPDFDocs = (incidentID) => {
return axios
.get(
BASE_URL +
"/api/endpoint/getappealpdfdocuments_api?incidentid=" +
incidentID
)
.then((res) => res.data)
.catch((error) => {
consoleLogger(error);
});
};
export const getSearchDocumentDetailsPaged = (
incidentID,
pageNumber,
@@ -1360,6 +1374,25 @@ export const getCase = (incidentID) => {
});
};
export const getCaseByID = (incidentID) => {
//console.log(
// "////////////// ------" +
// BASE_URL +
// "/api/endpoint/getcase_api?incidentID=" +
// incidentID
// );
return axios
.get(
BASE_URL + "/api/endpoint/getcasebyid_api?incidentID=" + incidentID
)
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
});
};
export const deleteMyRepresentations = (myRepresentationsID) => {
var queryUrl =
"/api/endpoint/deletemyrepresentations_api?myRepresentationsID=" +
@@ -2160,3 +2193,19 @@ export const getPreferredLanguage = async (email) => {
return error.response;
});
};
export const getAppealPDFDocument = async (incidentid) => {
return axios
.get(
BASE_URL +
"/api/endpoint/getappealpdfdocuments_api?incidentid=" +
incidentid
)
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
};