diff --git a/src/components/AdvancePayment/AdvancePaymentList.jsx b/src/components/AdvancePayment/AdvancePaymentList.jsx index 0430b027..5f4681d5 100644 --- a/src/components/AdvancePayment/AdvancePaymentList.jsx +++ b/src/components/AdvancePayment/AdvancePaymentList.jsx @@ -110,9 +110,9 @@ const AdvancePaymentList = ({ employeeId }) => { ]; return ( -
+
- + {columns.map((col) => ( {columns.map((col) => ( - ))} ))} - + - +
@@ -125,7 +125,7 @@ const AdvancePaymentList = ({ employeeId }) => { {rowsWithBalance.map((row) => (
+ {col.key === "balance" || col.key === "credit" || col.key === "debit" @@ -133,15 +133,18 @@ const AdvancePaymentList = ({ employeeId }) => { style: "currency", currency: "INR", }) - : row[col.key]} + : (
+ Projec Name + {row[col.key]} +
)}
Final BalanceFinal Balance {currentBalance.toLocaleString("en-IN", { style: "currency",