Sales Bill List table Update

This commit is contained in:
efrilm
2025-09-10 14:31:16 +07:00
parent 7077bf8d87
commit 420df71452
2 changed files with 87 additions and 24 deletions
@@ -188,7 +188,6 @@ const ExpenseListTable = () => {
return filteredData.reduce((sum, expense) => sum + expense.total, 0)
}, [filteredData])
// For demonstration, adding tax/additional fees to show difference between subtotal and total
const taxAmount = subtotalTotal * 0.1 // 10% tax example
const finalTotal = subtotalTotal + taxAmount