Paypal 的定期付款逻辑是否考虑增值税变化?
我有一个应用程序,每月向用户收取少量费用,但该金额可缴纳增值税。 1 月份增值税从 17.5% 调整为 20%。
Paypal 如何处理这个问题?我可以在 API 中看到您应该传递税额 https://cms.paypal.com/ us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_CreateRecurringPayments
这是否意味着我们必须代表客户在一月份更新每笔定期付款?
I have an application that will charge users a small fee on a monthly basis, but the amount is VAT-able. VAT is changing in January from 17.5% to 20%.
How does Paypal handle this? I can see in the API that you should pass the Tax Amount
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_CreateRecurringPayments
Does this mean we have to update every recurring payment on behalf of the customers in Jan?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是 - 您必须修改每笔付款。伟大的!您可以执行此操作的一种方法是使用一个按日期存储增值税值的表。
然后根据每次定期付款后贝宝的响应,计算下一次付款的天数,使用增值税表计算出税收是否有变化,如果有,则将价值变化应用于定期付款。 (叹)
The answer is - you have to amend each payment. Great! A way you could do this, is have a table that stores the VAT values by date.
Then on the response from paypal after every recurring payment, calculate the days to the next payment, work out if there is a change in tax using the VAT table, if there is then apply a value change to the recurring payment. (sigh)