refactor(FE-208,212,213): add transport-related fields and update form handling in PurchaseOrder forms

This commit is contained in:
rstubryan
2025-11-19 10:19:05 +07:00
parent 89d9d40713
commit b520b4ee54
5 changed files with 150 additions and 99 deletions
@@ -405,12 +405,12 @@ const PurchaseOrderDetail = ({
cell: (props) => formatNumber(props.getValue() as number),
},
{
accessorKey: 'price',
accessorKey: 'transport_per_item',
header: 'Transport /Item',
cell: (props) => formatCurrency(props.getValue() as number),
},
{
accessorKey: 'total_price',
accessorKey: 'transport_total',
header: 'Transport Total',
cell: (props) => formatCurrency(props.getValue() as number),
},