我为我的网站在Stripe(客户端版本)中配置了Checkout。我建议的价格包括增值税,因为我知道Stripe中的税款存在问题。 但是我的客户是专业人士,我需要在发票上显示增值税。 我在仪表板中创建了一个税(包括演算),并在服务器中进行了编码:
const stripe = require('stripe')(stripeSecretKey);
stripe.invoices.update(
'in_18jwqyLlRB0eXbMtrUQ97YBz',
{
default_tax_rates: [
'txr_1F4NqUGMDnVbIGuN45auNGxZ',
],
},
function (err, invoice) {
// asynchronously called
}
)
module.exports = router;
我测试付款时,一切正常,但是增值税不在我的发票上。我想将这笔税项应用于所有发票。