uat defect 117

This commit is contained in:
2025-01-09 16:10:09 +00:00
parent e80e4433a7
commit 93634ca173
+8 -2
View File
@@ -1942,12 +1942,18 @@ export const createContainerProxy = (containerName) => {
});
};
export const sendCaseCompleteMessage = async (containerID, caseReference) => {
export const sendCaseCompleteMessage = async (
containerID,
caseReference,
inv
) => {
var queryUrl =
"/api/file/createappealcompletemessage_api?container=" +
containerID +
"&tempcaseref=" +
caseReference;
caseReference +
"&inv=" +
inv;
var config = {
method: "get",