feat(FE): Add "Stock Akhir" column to StockLogTable

This commit is contained in:
rstubryan
2026-02-12 15:23:17 +07:00
parent 5d92e6774e
commit 45ac8348fe
@@ -35,6 +35,13 @@ const StockLogTable = ({
header: 'Gudang',
accessorKey: 'warehouse_name',
},
{
header: 'Stock Akhir',
accessorKey: 'stock',
cell: (props) => {
return formatNumber(props.row.original.stock);
},
},
{
header: 'Peningkatan',
accessorKey: 'increase',