mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 15:25:46 +00:00
refactor(FE-208): swap accessor keys for total_qty and sub_qty in PurchaseOrderDetail for accurate data representation
This commit is contained in:
@@ -526,12 +526,12 @@ const PurchaseOrderDetail = ({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
header: 'Jumlah Total',
|
header: 'Jumlah Total',
|
||||||
accessorKey: 'total_qty',
|
accessorKey: 'sub_qty',
|
||||||
cell: (props) => formatNumber(props.getValue() as number),
|
cell: (props) => formatNumber(props.getValue() as number),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
header: 'Jumlah Diterima',
|
header: 'Jumlah Diterima',
|
||||||
accessorKey: 'sub_qty',
|
accessorKey: 'total_qty',
|
||||||
cell: (props) => formatNumber(props.getValue() as number),
|
cell: (props) => formatNumber(props.getValue() as number),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user