I gave up with this problem in PayPal IPN I send a simple HTML to sandbox and strangely in the order review of Paypal I see that the tax is ALWAY computed as quantity * tax. Anyone got this problem?
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr/cgi-bin/webscr" method="post"><div class="paypal-form">
<input type="hidden" name="business" value="some_test_account@gmail.com">
<input type="hidden" name="notify_url" value="SOME NOTIFY ADDRESS">
<input type="hidden" name="return" value="SOME RETURN ADDRESS">
<input type="hidden" name="currency_code" value="EUR"><input type="hidden" name="lc" value="IT"><input type="hidden" name="encrypt" value="">
<input type="hidden" name="test" value="1">
<input type="hidden" name="type" value="cart">
<input type="hidden" name="custom" value="shipping=&clid=35&type=2start_date=2012-05-28+00%3A00%3A00&end_date=2013-05-28+00%3A00%3A00&typo=4">
<input type="hidden" name="address_street" value="">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1"><input type="hidden" name="item_name_1" value="Prova Terra 2">
<input type="hidden" name="item_number_1" value="56:51">
<input type="hidden" name="amount_1" value="1.33">
<input type="hidden" name="quantity_1" value="40">
<input type="hidden" name="shipping_1" value="0">
<input type="hidden" name="tax_1" value="5">
I was thinking that the formatting of numbers (decimal points or comma) was the problem. But it does not matter. Same for the item_number. It can be anyting
UPDATE I understood that the tax_ you put inside the form is always the tax for one piece of product and not the total. Therefore it is correct!