#MarceloOlandim

1 messages · Page 1 of 1 (latest)

ionic gateBOT
quiet cairn
#

It's likely that you're not actually generating an invoice, but a receipt (where no tax information is shown)

#

Can you share an example pi_xxx ID?

charred zenith
#

sure.. let me get for you

quiet cairn
#

Ok, yep. Payment Intents don't automatically generate a payment invoice that includes tax details. Only a receipt

#

If you need an invoice, you'll need to either:

  • Use the Invoicing API directly instead of Payment Intents.
  • Generate a 'paid out of band' invoice after the payment.
charred zenith
#

I dont mind if the payment invoice doesn't contain the tax, but it should be on the receit

quiet cairn
#

Our receipts don't contain tax information as explained, so you'd either need to do the above, or use your own receipts

charred zenith
#

use your own receipts ?

quiet cairn
#

Yes, generate your own PDF receipts using webhooks and our API

charred zenith
#

Really? Stripe doesn't provide tax information on a base receipts ?

#

Sorry, but I think is hard to believe that a service dedicate to payment services doesn't provide tax information on a easy way

quiet cairn
#

We do, via invoices

charred zenith
#

Okay, I will need a look into it

#

That means that I would need to refactored all our payment approach because Stripe doesn't provide tax on payment intents, even if the price used has a Tax policy set on the price used.

quiet cairn
charred zenith
#

By the way, you are talking about subscription

quiet cairn
#

Nope, that link is for one-time payments with Checkout

charred zenith
#

But the invoice I dealing here is for subscriptoin

quiet cairn
#

Oh, wait. My bad I was looking at the wrong Payment Intent

#

Is there data missing from that invoice that you require?

charred zenith
#

But the users aren't seen any tax information on the receipts

quiet cairn
#

Can you share a specific in_xxx?

#

And which 'tax information' specifically?

charred zenith
#

yes

quiet cairn
#

But which tax information is missing?

charred zenith
#

VAT

#

Tasx

#

tax

quiet cairn
#

So you expect a tax (VAT) line item on the invoice?

charred zenith
#

yes

quiet cairn
#

You ether need to pass a Tax Rate, or use Stripe Tax

charred zenith
#

I set this on stripe already

#

I set this on the price used

quiet cairn
#

Yes, you set the tax behaviour on the Price which is required. But you also need to pass either a Tax Rates (https://stripe.com/docs/api/subscriptions/create#create_subscription-items-tax_rates) or enable automatic calculation via Stripe Tax (https://stripe.com/docs/api/subscriptions/create#create_subscription-automatic_tax)

#

We then calculate the tax due according to the location/address of the customer

charred zenith
#

I tried to enable automatic calculation via stripe tax, I thought it was done

#

When I go to the tax tab, I can see this:

#

So I presume that is enabled

quiet cairn
charred zenith
#

Ahhhhhhhhh

#

Thanks !!! That would solve the problem I guess

#

I will try this, thanks

quiet cairn
#

Sorry for the confusion

#

Let me know if any other issues