Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Manage Payment Token On A Subscription

Subscribe

Get notified when there's activity on this post

This question has been flagged
subscriptionpaymenttokenpayment.token
2 Replies
5005 Views
Avatar
Ben Thresher

I'd like to make it so that a partner can manage which payment token their individual subscription(s) is using. I dug around in the odoo & odoo-enterprise code, and found that there actually is a "Manage Payment Method" button on the portal that was hidden, possibly by our own code.

I read some enterprise code, and found:

​

​main class="modal-body">
div id="payment_method" class="text-start">
t t-call="payment.manage">
t t-set="assign_token_route" t-value="'/my/subscription/assign_token/' + str(subscription.id)"/>
t t-set="landing_route" t-value="subscription.get_portal_url() + '&message=Your payment method has been changed for this subscription.&message_class=alert-success'"/>



This code seems to be calling this template in payment_templates.xml in odoo:


template id="manage" name="Payment Manage">
- 'acquirers' - The payment acquirers supporting tokenization
- 'tokens' - The set of payment tokens of the current partner
- 'default_token_id' - The id of the token that should be pre-selected. Optional
# - 'reference_prefix' - The custom prefix to compute the full transaction reference
- 'partner_id' - The id of the partner managing the tokens
# - 'access_token' - The access token used to authenticate the partner.
# - 'transaction_route' - The route used to create a validation transaction
- 'assign_token_route' - The route to call to assign a token to a record. If set, it
enables the token assignation mechanisms: creation of a new
token through a refunded transaction and assignation of an
existing token
- 'landing_route' - The route the user is redirected to at then end of the flow
- 'footer_template_id' - The template id for the submit button. Optional
form name="o_payment_manage"


When I click "Manage Payment Method", a dialog pops up, but its empty. I assume this is because the enterprise code isn't passing all the mentioned arguments to The payment.manage template.

How do I get the values that the 'reference_prefix', 'access_token', and 'transaction_route' fields are asking for so that I can let the partner manage their subscription's payment method?

I'm in Odoo v15. I apologise for any confusion about this post and its duplicate, I had some trouble making this post and getting the formatting to show code, so I thought I had deleted the post. I have updated it since, in a way that it will hopefully be more read-able.

0
Avatar
Discard
Avatar
Antoine Vandevenne (anv)
Best Answer

Hello, the most likely issue is that there is no compatible payment acquirer for the current user. If there is no available payment acquirer or payment token, the button is hidden and the modal is empty.

You can check on this runbot where I created a subscription for Joel Willis (login with portal; portal). The button opens the modal with available payment acquirers and tokens.

1
Avatar
Discard
Ben Thresher
Author

We have a payment acquirer set up, and the button still didn't show. How is the "acquirers" variable actually being set? Where does it look in order to get its value?

Antoine Vandevenne (anv)

The `acquirers_sudo` variable is set here (https://github.com/odoo/enterprise/blob/15.0/sale_subscription/controllers/portal.py#L114-L120) and passed as `acquirers` to the template. In particular, it only considers acquirers that support tokenization ("save card for later"): https://www.odoo.com/documentation/15.0/applications/finance/payment_acquirers.html#supported-payment-acquirers

Ben Thresher
Author

We found the issue. Thank you for your help!

Avatar
Ben Thresher
Author Best Answer

We've found the issue to be within our own custom code. Antoine Vandevenne has been correct about everything they have said here.

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Manage Payment Token On A Subscription
subscription payment token Subscriptions
Avatar
0
May 23
2701
subscriptions: difference between "Send & try to charge" and "Send after succesful payment" modes
invoice subscription payment token
Avatar
0
May 24
4346
Payment Error when paying subscription
subscription payment
Avatar
0
Aug 24
1775
Stripe Payment Token for Subscription Auto-Charges
subscription payment token stripe v14
Avatar
Avatar
1
Jul 23
3202
Paypal subscriptions via webhook not working (Odoo Online V18)
subscription payment recurring paypal token webhook
Avatar
Avatar
1
Oct 25
461
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now