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

Develop new payment provider v16

Subscribe

Get notified when there's activity on this post

This question has been flagged
paymentpayment-providers
3 Replies
6505 Views
Avatar
Imarkas

Hi

I am developing a custom payment provider and I can't find a way to do it.

My goal is to appear on the payment providers list and set the Journal to bank


__manifest__.py
​{​

​'name': 'Payment Provider: CreateTest',​

  ​'version': '1.0',​

​ ​'category': 'Payment',​

​ ​'depends': ['payment'],​

​ ​'data': [ 'data/data.xml',​

​ ​'views/templates.xml', ],​

​ ​'installable': True,​

​ ​'auto_install': False,​

​ ​'license': 'LGPL-3',

​}


models.py

​from odoo import models, fields​
​class CreateTestPaymentProvider(models.Model): ​

​_inherit = 'payment.provider'​
​code = fields.Selection(selection_add=[('createtest', ​ ​ ​ ​'CreateTest')], ondelete={​'createtest': 'set default'})​


data.xml (Sorry, I am not allowed xml tags in the msg)

odoo

​record id="payment.payment_provider_create_test" model="payment.provider"

​field name="name">CreateTest

​field name="code">createtest

​record

odoo


When I Install this module and when I go to Payment Providers it doesn't allow me to select Journal (Bank).


Also, this payment provider doesn't appear account_payment_method_line database where all other installed providers Demo and Stripe do.


Is there proper documentation for how to develop payment provider in odoo? I see that I am clearly missing some steps.

0
Avatar
Discard
Antoine Vandevenne (anv)

There is no documentation yet, but it is planned (count a few weeks/months). In the meantime, it's probably best to start with an existing standard payment provider module and convert it step by step to the provider you want to integrate with. I recommend starting with https://github.com/odoo/odoo/tree/16.0/addons/payment_flutterwave

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

Inherit the payment.provider and add this code


@api.model

def _get_payment_method_information(self):

"""Override to add createtest payment method information to the

existing methods.

"""

res = super()._get_payment_method_information()

res['createtest'] = {'mode': 'unique', 'domain': [('type', '=', 'bank')]}

return res
After completing these steps, your custom payment provider should appear on the list of available payment providers, and you can set the journal to "bank" as specified in your code. 

Hope it helps

0
Avatar
Discard
Avatar
Imarkas
Author Best Answer

Reverse engineering doesn't help. My custom module (payment provider) works and I can implement post-processing steps with it. But the main issue is it doesn't connect with account_payment_method table and I cannot assign payment journal. That means upon activating my custom payment provider it doesn't perform some silly steps that are eiher hidden from community or this is lacking some major support.

0
Avatar
Discard
Lekhnath Rijal

I am also stuck in the same situation. Do you have any guidance on how to implement a custom payment provider?

Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,


There is no official documentation for the same. But you can refer to existing payment providers and develop your own provider. Other than default payment providers you have a lot of third party payment providers which is available for free in the odoo app store, to which you can look to understand how the module is developed and working.

Thanks

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
How to set new payment.provider
payment payment-providers
Avatar
Avatar
1
Mar 24
3849
Payment is not created from an online Payment received from Authorize. NEt.
payment Authorize.net payment-providers
Avatar
0
May 24
2133
What do I need to do so I can see Payment Providers in Odoo? Solved
payment-providers
Avatar
Avatar
1
Sep 25
3567
Payment Status Solved
payment
Avatar
Avatar
Avatar
Avatar
3
Sep 25
10653
Check is not enabled for Internal Transfers Odoo 18
payment
Avatar
Avatar
1
Sep 25
3234
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