Error when calculating ITEMAMT in Cart
Closed this issue · 1 comments
tomasstrejcek commented
line 130: $data[$prefix . 'ITEMAMT'] += $item['AMT'];
should be $data[$prefix . 'ITEMAMT'] += $item['AMT']*$item['QTY'];
or else paypal api error: The totals of the cart item amounts do not match order amounts.
tomasstrejcek commented
maybe it would be benefitial to write test with larger quantity of items than 1 :)