Kdyby/PayPalExpress

Error when calculating ITEMAMT in Cart

Closed this issue · 1 comments

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.

maybe it would be benefitial to write test with larger quantity of items than 1 :)