Merge branch 'Development' into SIPS-Development

This commit is contained in:
2025-07-03 11:20:38 +01:00
16 changed files with 93 additions and 1326 deletions
+5 -2
View File
@@ -364,13 +364,14 @@ export const createAppealPDFBlob = async (
const uploadBlobResponse = await blockBlobClient.uploadStream(content);
console.log(uploadBlobResponse);
let whichLocation = "846040000"; // Default value
const tags = {
containerid: containerName,
caseID: caseID,
blobType: "Appeal PDF",
documentLocationId: "846040000",
ishareLocation: "846040000",
ishareLocation: whichLocation,
documentLocationId: whichLocation,
};
//console.log("the tags:", tags);
@@ -433,6 +434,7 @@ export const createRepPDFBlob = async (
blobType: "Representation PDF",
documentLocationId: whichLocation,
ishareLocation: whichLocation,
documentLocationId: whichLocation,
};
//console.log("the tags:", tags);
@@ -624,6 +626,7 @@ export const uploadFile = async (formContent, containerName, foldername) => {
blobType: "RepresentationFile",
documentLocationId: whichLocation,
ishareLocation: whichLocation,
documentLocationId: whichLocation,
};
const withTags = blockBlobClient.setTags(tags);
const withMeta = blockBlobClient.setMetadata(tags);