fix: set received_qty default value to sub_qty

This commit is contained in:
ValdiANS
2026-03-30 14:40:26 +07:00
parent 7bee13124d
commit 4f3e304b2b
@@ -308,7 +308,7 @@ const PurchaseOrderAcceptApprovalForm = ({
}
: null,
expedition_vendor_id: expeditionVendorId,
received_qty: item.total_qty || '',
received_qty: item.sub_qty || '',
transport_per_item: item.transport_per_item || '',
};
});