diff --git a/ipi-survey-platform/public/assets/images/UAE_Dirham_Symbol.svg b/ipi-survey-platform/public/assets/images/UAE_Dirham_Symbol.svg index a2c0d3b..581c41b 100644 --- a/ipi-survey-platform/public/assets/images/UAE_Dirham_Symbol.svg +++ b/ipi-survey-platform/public/assets/images/UAE_Dirham_Symbol.svg @@ -1,7 +1,26 @@ - - Layer copy - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ipi-survey-platform/src/components/overview/DetailedOverview.jsx b/ipi-survey-platform/src/components/overview/DetailedOverview.jsx index 8c2cdcd..c01ac8e 100644 --- a/ipi-survey-platform/src/components/overview/DetailedOverview.jsx +++ b/ipi-survey-platform/src/components/overview/DetailedOverview.jsx @@ -272,7 +272,7 @@ export const DetailedOverview = ({ submission, onBack }) => { , unit.uom || 'N/A', product.current_quantity || '0', - AED {product.current_cost || '0'}, + AED {product.current_cost || '0'}, // Data definitions

Product (HS Code – Name): Standard trade classification. Start typing to search by code or name.

Quantity (Qty): Physical output produced in the month, measured in the selected unit.

-

Cost (AED AED): Total production cost for that month, excluding VAT (e.g., materials, energy, direct labour, and manufacturing expenses). Do not include sales margins.

+

Cost (AED AED): Total production cost for that month, excluding VAT (e.g., materials, energy, direct labour, and manufacturing expenses). Do not include sales margins.

Annual Installed Capacity: Maximum achievable annual output under normal operating conditions with existing equipment; do not include extraordinary overtime.

)} diff --git a/ipi-survey-platform/src/pages/Overview/Overview.jsx b/ipi-survey-platform/src/pages/Overview/Overview.jsx index 96b75c4..d40d2ff 100644 --- a/ipi-survey-platform/src/pages/Overview/Overview.jsx +++ b/ipi-survey-platform/src/pages/Overview/Overview.jsx @@ -106,8 +106,8 @@ const Overview = () => { 10, // Always show 10 for Total Products record.product_count || 0, // Show actual submitted products count record.total_cost !== undefined ? ( - - AED + + AED {record.total_cost} ) : '-', @@ -143,10 +143,9 @@ const Overview = () => { record.year, record.quarter, `${record.quarter} ${record.year}`, - 10, // Always show 10 for Total Products in CSV - record.product_count || 0, // Show actual submitted products count - record.total_cost !== undefined ? record.total_cost : '-', // Show total cost from API or '-' if not available - record.status, + 10, + record.product_count || 0, + record.total_cost !== undefined ? record.total_cost : '-', formatDate(record.created_at) ].map((value) => `"${String(value).replace(/"/g, '""')}"`).join(',')); });