diff --git a/apps/OpenSign/public/locales/en/translation.json b/apps/OpenSign/public/locales/en/translation.json index b60915032..d30c4a328 100644 --- a/apps/OpenSign/public/locales/en/translation.json +++ b/apps/OpenSign/public/locales/en/translation.json @@ -151,7 +151,8 @@ "Name": "Name", "Status": "Status", "created-date": "Created Date", - "Type": "Type" + "Type": "Type", + "Logs": "Logs" }, "report-help": { "Draft Documents": "These are documents you have started but have not finalized for sending.", @@ -648,5 +649,7 @@ "p4": "Please choose the option that best suits your document signing requirements." }, "advanced-options":"Advanced options", - "hide-advanced-options":"Hide Advanced options" + "hide-advanced-options":"Hide Advanced options", + "document-logs":"Document logs" + } diff --git a/apps/OpenSign/public/locales/fr/translation.json b/apps/OpenSign/public/locales/fr/translation.json index f2e40a37d..5ee3d6599 100644 --- a/apps/OpenSign/public/locales/fr/translation.json +++ b/apps/OpenSign/public/locales/fr/translation.json @@ -136,7 +136,8 @@ "Name": "Nom", "Status": "Statut", "created-date": "Date de création", - "Type": "Saisir" + "Type": "Saisir", + "Logs": "Journaux" }, "btnLabel": { "sign": "Signer", @@ -647,6 +648,7 @@ "p4": "Veuillez choisir l'option qui correspond le mieux à vos exigences en matière de signature de documents." }, "advanced-options":"Options avancées", - "hide-advanced-options": "Masquer les options avancées" + "hide-advanced-options": "Masquer les options avancées", + "document-logs":"Journaux de documents" } diff --git a/apps/OpenSign/src/json/ReportJson.js b/apps/OpenSign/src/json/ReportJson.js index 8100f5477..c1d5cc0d6 100644 --- a/apps/OpenSign/src/json/ReportJson.js +++ b/apps/OpenSign/src/json/ReportJson.js @@ -10,6 +10,15 @@ export default function reportJson(id) { "Owner", "Signers" ]; + const iphead = [ + "Sr.No", + "Title", + "Note", + "Folder", + "File", + "Logs", + "Signers" + ]; const contactbook = ["Sr.No", "Name", "Email", "Phone"]; const dashboardReportHead = ["Title", "File", "Owner", "Signers"]; const templateReport = ["Sr.No", "Title", "File", "Owner", "Signers"]; @@ -63,7 +72,7 @@ export default function reportJson(id) { case "1MwEuxLEkF": return { reportName: "In-progress documents", - heading: head, + heading: iphead, actions: [ { btnId: "8901", diff --git a/apps/OpenSign/src/primitives/GetReportDisplay.js b/apps/OpenSign/src/primitives/GetReportDisplay.js index 5f7dd97e1..1da433681 100644 --- a/apps/OpenSign/src/primitives/GetReportDisplay.js +++ b/apps/OpenSign/src/primitives/GetReportDisplay.js @@ -69,6 +69,7 @@ const ReportTable = (props) => { const [publicUserName, setIsPublicUserName] = useState(""); const [isViewShare, setIsViewShare] = useState({}); const [isSubscribe, setIsSubscribe] = useState(true); + const [isModal, setIsModal] = useState({}); const [reason, setReason] = useState(""); const Extand_Class = localStorage.getItem("Extand_Class"); const extClass = Extand_Class && JSON.parse(Extand_Class); @@ -1288,9 +1289,55 @@ const ReportTable = (props) => { {item?.URL ? t("download") : "-"} -