#alex-currency-conversion
1 messages · Page 1 of 1 (latest)
Hi 👋
I'm not sure what you mean here. Until the customer pays the invoice in a specific currency, Stripe doesn't know what to convert it to. Unfortunately this isn't something you can configure.
Yeah, I understand. In the past, we were using a service called octobat (integrated with Stripe) for issuing invoices. Octobat allowed to set a conversion (from USD to Euros in our case).
The point is that we only can bill in USD, but a client asks for a USD-Euro conversion in the invoices.
So the prices are represented in Euros?
No, in USD. and they ask for somethin similar to this
Prices in dollars and including a conversion to euros.
My only idea is update the invoice object, including free text with the conversion in the footer or in the memo field. But it sounds horrible to me ...
I can understand that. And are you using Prices with multiple currencies or just USD? https://stripe.com/docs/products-prices/pricing-models#multicurrency
Hum, just USD.
I asked to Stripe Support and they didn't mention anything about multicurrency ...
I haven't had a chance to test it but I'm not sure this would create the text rendering you are looking for, based on this section about Invoices
When you create an Invoice Item, use the currency parameter to tell the Invoice Item which of the multi-currency Price’s currencies to use.
Note, you must explicitly pass the currency parameter even if it’s the same as the Customer’s default currency. If you omit the currency parameter, multi-currency Prices won’t work.
At least is something to investigate ...
I think it will work for us to use several currencies and choose the currency to issue the invoice with
Then that may be a valid option for your business.
But I guess this involve to set fixed prices in the additional currency youwant (Euros in our case). It won't be a "conversion", it will be having two static options and choosing one. And the conversion that we might apply could not be valid the day after ...
That is true so this might be much more work than expected.