From c84c6503b01421b0ff4e382bca6b318747359f47 Mon Sep 17 00:00:00 2001 From: Srinath Date: Wed, 28 Jan 2026 19:31:14 +0530 Subject: [PATCH] Added Emplyee Access missing names --- src/Pages/PurchaseQuotation/PurchaseQuotationForm.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pages/PurchaseQuotation/PurchaseQuotationForm.jsx b/src/Pages/PurchaseQuotation/PurchaseQuotationForm.jsx index cc0effc..6f807cd 100644 --- a/src/Pages/PurchaseQuotation/PurchaseQuotationForm.jsx +++ b/src/Pages/PurchaseQuotation/PurchaseQuotationForm.jsx @@ -612,7 +612,7 @@ const SalesQuotationForm = () => { }; let response = await dispatch(getEmpAccess(data)).unwrap(); let datas = response?.data?.data?.[0]?.EmpAccessDetails?.filter( - (item) => item.ConfigName === 'Purchase Quotation' + (item) => item.ConfigName === 'Sales Quotation' ); setEmpData(datas?.[0]); }; @@ -1653,7 +1653,7 @@ const SalesQuotationForm = () => { // Add these functions inside your component, before the return statement: // const handleEmailClick = () => { - // const subject = encodeURIComponent('Purchase Quotation'); + // const subject = encodeURIComponent('Sales Quotation'); // const body = encodeURIComponent('Please find attached the purchase quotation.'); // window.open(`mailto:?subject=${subject}&body=${body}`); // };