updated copy on representation complete submit

This commit is contained in:
2026-03-16 12:07:39 +00:00
parent e9b2753fd9
commit 071fcc0dab
10 changed files with 19 additions and 32 deletions
+6 -2
View File
@@ -243,9 +243,11 @@ export const generateRepPDF = async (
var queryUrl =
"/api/file/generatepdf" + (options.download ? "?download=true" : "");
const hashedUrl = await buildHashedQueryUrl(queryUrl);
const config = {
method: "post",
url: queryUrl,
url: hashedUrl,
data: formValues,
...(options.download ? { responseType: "blob" } : {})
};
@@ -271,9 +273,11 @@ export const generateAppealPDF = async (
var queryUrl = "/api/file/generateappealpdf?appealType=" + appealType;
const hashedUrl = await buildHashedQueryUrl(queryUrl);
const config = {
method: "post",
url: queryUrl,
url: hashedUrl,
data: formValues
};