update: table manage products to show transaction type

This commit is contained in:
Wikzyy
2025-09-09 20:37:04 +07:00
parent ceb023e871
commit b1c25c6b4a

View File

@ -118,6 +118,16 @@ const ManageProductsContextProvider = ({ children }: { children: React.ReactNode
headerClassName: 'w-[250px]'
}
},
{
accessorFn: (row) => row.transaction_type?.name,
id: 'transaction_type',
header: ({ column }) => <DataGridColumnHeader title="Transaction Type" column={column} />,
enableSorting: false,
enableHiding: false,
meta: {
headerClassName: 'w-[250px]'
}
},
{
accessorFn: (row) => row.type,
id: 'type',