PayPal运费税(不仅仅是物品)

时间:2013-03-11 08:11:20

标签: paypal paypal-sandbox

我正在使用PayPal网址方法效果很好但是当我尝试征收税时,它似乎只是将税收应用于所有商品的总价值,而我想在总商品+运费上征收税款,即

商品$ 100.00, 运费$ 20.00, 小计$ 120.00, 税(10%)12.00美元, 总计$ 132.00

这就是我所拥有的 https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart&business=xxxxxxxxxxxxxx_biz@gmail.com&button_subtype=services&upload=1&no_note=1&currency_code=USD&rm=1&item_name_1=Product1&amount_1=200.00&quantity_1=2&item_name_2=Product2&amount_2=200.00&quantity_2=22&shipping_2=6&tax_1=10&tax_2=10&return=http://staging.xxxx.com/store/success.aspx&cancel_return=http://staging.xxxx.com/store/failed.aspx

1 个答案:

答案 0 :(得分:2)

我对税收变量进行了更改以应用费率而不是金额。此时,PayPal不收取包括运费在内的税费,因为服务通常不征税。

如果这是一项要求,我建议您在将帖子发送到PayPal之前计算您网站上的总税额。该值可以在tax_1字段中输入。我在第二篇文章中展示了这个例子。

https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart
&business=xxxxxxxxxxxxxx_biz@gmail.com
&button_subtype=services
&upload=1
&no_note=1
&currency_code=USD
&rm=1
&item_name_1=Product1
&amount_1=200.00
&quantity_1=2
&item_name_2=Product2
&amount_2=200.00
&quantity_2=2
&shipping_2=6
&tax_rate_1=10
&tax_rate_2=10
&return=http://staging.xxxx.com/store/success.aspx
&cancel_return=http://staging.xxxx.com/store/failed.aspx

以下是计算金额的示例。请注意,您只为每个项目发送一个税额而不是税额。 PayPal不向客户显示分项税额,因此不会对客户产生影响。

https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart
&business=xxxxxxxxxxxxxx_biz@gmail.com
&button_subtype=services
&upload=1
&no_note=1
&currency_code=USD
&rm=1
&item_name_1=Product1
&amount_1=200.00
&quantity_1=2
&item_name_2=Product2
&amount_2=200.00
&quantity_2=2
&shipping_2=6
&tax_1=10
&return=http://staging.xxxx.com/store/success.aspx
&cancel_return=http://staging.xxxx.com/store/failed.aspx