total column removed

This commit is contained in:
Swetha-Josh 2026-06-12 17:21:56 +05:30
parent 32d87c634a
commit 81061d2e90

View File

@ -181,7 +181,7 @@ const showToast = (message, type = 'success') => {
record.year,
record.quarter,
`${record.quarter} ${record.year}`,
10, // Always show 10 for Total Products
// 10, // Always show 10 for Total Products
record.product_count || 0, // Show actual submitted products count
record.total_cost !== undefined ? (
<span className="flex items-center">
@ -491,7 +491,7 @@ const showToast = (message, type = 'success') => {
</div>
<section className="bg-white rounded-lg border border-[#E2E8F0] shadow-sm">
<Table
headers={['Year', 'Quarter', 'Submission Window', 'Total Products', 'Products Submitted', 'Total Value (AED)', 'Status', 'Date Submitted', 'Action']}
headers={['Year', 'Quarter', 'Submission Window', 'Products Submitted', 'Total Value (AED)', 'Status', 'Date Submitted', 'Action']}
rows={rows}
beforeHeader={toolbar}
separated