fixes for rep complete queue

This commit is contained in:
2024-05-02 16:19:46 +01:00
parent 0f3d20ca80
commit 46582d761c
7 changed files with 190 additions and 67 deletions
+8 -2
View File
@@ -1774,12 +1774,18 @@ export const sendCaseCompleteMessageProxy = async (
});
};
export const sendRepCompleteMessage = async (containerID, caseReference) => {
export const sendRepCompleteMessage = async (
containerID,
caseReference,
fileName
) => {
var queryUrl =
"/api/file/createrepcompletemessage_api?container=" +
containerID +
"&tempcaseref=" +
caseReference;
caseReference +
"&repid=" +
fileName;
var config = {
method: "get",