if agent dont change to appellant on submit appeal

This commit is contained in:
2024-12-02 18:50:55 +00:00
parent 7c95f679ba
commit 499a1e9527
5 changed files with 31 additions and 16 deletions
+8 -2
View File
@@ -1847,12 +1847,18 @@ export const createContainerProxy = (containerName) => {
});
};
export const sendCaseCompleteMessage = async (containerID, caseReference) => {
export const sendCaseCompleteMessage = async (
containerID,
caseReference,
typeofinvolvement
) => {
var queryUrl =
"/api/file/createappealcompletemessage_api?container=" +
containerID +
"&tempcaseref=" +
caseReference;
caseReference +
"&inv=" +
typeofinvolvement;
var config = {
method: "get",