feat: add bank name column

This commit is contained in:
ValdiANS
2026-05-13 16:25:13 +07:00
parent 7b5af69dd1
commit 4cad8aba64
2 changed files with 10 additions and 0 deletions
@@ -189,6 +189,11 @@ const CustomersTable = () => {
accessorKey: 'email',
header: 'Email',
},
{
accessorKey: 'bank_name',
header: 'Nama Bank',
cell: (props) => props.row.original.bank_name || '-',
},
{
header: 'Aksi',
cell: (props: CellContext<Customer, unknown>) => {
@@ -326,6 +326,11 @@ const SuppliersTable = () => {
accessorKey: 'email',
header: 'Email',
},
{
accessorKey: 'bank_name',
header: 'Nama Bank',
cell: (props) => props.row.original.bank_name || '-',
},
{
accessorKey: 'address',
header: 'Alamat',