2013-03-11 218 views
3

我使用PayPal网址方式,效果很好,但是当我尝试收取税款时,它似乎只是将税款应用于所有商品的总价值,而我想对总货物+运费收税,即PayPal运费税(不仅仅是项目)

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

这是我 https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart&[email protected]&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

回答

2

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

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

https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_cart 
&[email protected] 
&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 
&[email protected] 
&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 
+0

谢谢,我结束了使用tax_cart的总购物车税,并将税纳入总运费价格 – Dkong 2013-03-12 04:47:39

相关问题