fix: add created at column

This commit is contained in:
ValdiANS
2026-04-30 11:40:16 +07:00
parent 47f74b8842
commit 15c883ca73
@@ -586,10 +586,14 @@ const FinanceTable = () => {
}, },
}, },
{ {
header: 'Tanggal', header: 'Tanggal Pembayaran',
accessorFn: (finance: Finance) => accessorFn: (finance: Finance) =>
formatDate(finance.payment_date, 'DD MMM YYYY'), formatDate(finance.payment_date, 'DD MMM YYYY'),
}, },
{
header: 'Tanggal Dibuat',
accessorFn: (finance) => formatDate(finance.created_at, 'DD MMM YYYY'),
},
{ {
header: 'Metode Pembayaran', header: 'Metode Pembayaran',
accessorKey: 'payment_method', accessorKey: 'payment_method',