refactor(FE-208): swap accessor keys for total_qty and sub_qty in PurchaseOrderDetail for accurate data representation

This commit is contained in:
rstubryan
2025-11-22 10:17:38 +07:00
parent f9215738aa
commit 6a39c2fd3f
@@ -526,12 +526,12 @@ const PurchaseOrderDetail = ({
},
{
header: 'Jumlah Total',
accessorKey: 'total_qty',
accessorKey: 'sub_qty',
cell: (props) => formatNumber(props.getValue() as number),
},
{
header: 'Jumlah Diterima',
accessorKey: 'sub_qty',
accessorKey: 'total_qty',
cell: (props) => formatNumber(props.getValue() as number),
},
{