diff --git a/src/components/pages/master-data/customer/CustomersTable.tsx b/src/components/pages/master-data/customer/CustomersTable.tsx index b1fb8051..6465d1f7 100644 --- a/src/components/pages/master-data/customer/CustomersTable.tsx +++ b/src/components/pages/master-data/customer/CustomersTable.tsx @@ -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) => { diff --git a/src/components/pages/master-data/supplier/SupplierTable.tsx b/src/components/pages/master-data/supplier/SupplierTable.tsx index 763c18bf..0dfd2941 100644 --- a/src/components/pages/master-data/supplier/SupplierTable.tsx +++ b/src/components/pages/master-data/supplier/SupplierTable.tsx @@ -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',