Skip to content

Commit

Permalink
[FIX] payment_stripe: disable tokenisation that will not be supported
Browse files Browse the repository at this point in the history
disable tokenisation of payment methods that use sepa debit because
it will not be supported in the future versions

closes odoo#132424

X-original-commit: df2a358
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
  • Loading branch information
vchu-odoo committed Aug 19, 2023
1 parent d587882 commit cd887a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/payment_stripe/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'apple_pay': True,
'au_becs_debit': True,
'bacs_debit': False, # Stripe doesn't support saving BACS with setupIntent.
'bancontact': True,
'bancontact': False,
'blik': False,
'boleto': True,
'card': True,
Expand All @@ -26,7 +26,7 @@
'giropay': False,
'google_pay': True,
'grabpay': False,
'ideal': True,
'ideal': False,
'klarna': False,
'konbini': False,
'link': True,
Expand All @@ -37,7 +37,7 @@
'paypal': True,
'promptpay': False,
'sepa_debit': True,
'sofort': True,
'sofort': False,
'us_bank_account': True,
'wechat_pay': False,
'zip': False,
Expand Down

0 comments on commit cd887a8

Please sign in to comment.