Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Artificial Intelligence
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Property Management
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How to add my custom module for payment in payment provider view?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
developmentpayment
2 Respostes
1484 Vistes
Avatar
Saksham Khanal

I am working on a custom payment module,I am able to add it to a payment method view, but I am not able to add it as a payment provider.I am referencing payment_demo  and payment_stripe module to understand implementation of this, but I am unable to find the solution.

The second image shows my payment module as payment method, but I cannot see in payment providers.



This is my payment_provider_data.xml view.Which I referenced form  payment_stripe

<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">
    <record id="payment_method_esewa" model="payment.provider">
        <field name="code">esewa</field>
        <field name="state">test</field>
        <field name="is_published">True</field>
        <field name="inline_form_view_id" ref="inline_form"/>
        <field name="express_checkout_form_view_id" ref="express_checkout_form"/>
        <field name="allow_tokenization">True</field>
        <field name="allow_express_checkout">True</field>
    </record>
</odoo>
0
Avatar
Descartar
Avatar
CandidRoot Solutions
Best Answer

Hello Saksham,

Hello,

Your colleague is correct, and this is a standard mistake when creating a custom payment provider in Odoo.

Why your provider is not visible

Adding a record in payment.provider is not enough.

In Odoo:

  • Payment Method ≠ Payment Provider

  • A provider appears in the UI only if its code is registered in the model selection

Right now:

  • Your module adds a payment method

  • But the provider code = 'esewa' is not registered in payment.provider model

  • Hence it never appears in Payment Providers

Correct way to fix it (required step)

You must extend payment.provider and add your provider using selection_add.

Correct way to fix it (required step)Python (mandatory)

from odoo import fields, models class PaymentProvider(models.Model): _inherit = 'payment.provider' code = fields.Selection( selection_add=[('esewa', 'eSewa')], ondelete={'esewa': 'set default'} ) esewa_merchant_id = fields.Char( string='Merchant ID', required_if_provider='esewa' ) esewa_secret_key = fields.Char( string='Secret Key', required_if_provider='esewa' )

XML (corrected provider record)

<odoo noupdate="1"> <record id="payment_provider_esewa" model="payment.provider"> <field name="name">eSewa</field> <field name="code">esewa</field> <field name="state">disabled</field> <field name="sequence">10</field> </record> </odoo>

Best Regards,


CandidRoot Solutions Pvt. Ltd.
Mobile: (+91) 8849036209
Whatapp: (+91) 8849036209

Email: info@candidroot.com
Web: https://www.candidroot.com

1
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer
Hi,
To add your custom payment module as a payment provider in Odoo, you need to properly inherit the payment.provider model and extend its code selection field. In your models/payment_provider.py file, create a class that inherits payment.provider and adds 'esewa' to the code selection using selection_add

from odoo import fields, models

class PaymentProvider(models.Model):
    _inherit = 'payment.provider'

    code = fields.Selection(
        selection_add=[('esewa', 'eSewa')],
        ondelete={'esewa': 'set default'}
    )
   
    esewa_merchant_id = fields.Char(string='Merchant ID', required_if_provider='esewa')
    esewa_secret_key = fields.Char(string='Secret Key', required_if_provider='esewa')

Then in your data/payment_provider_data.xml, create the default provider record with proper naming

<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">
    <record id="payment_provider_esewa" model="payment.provider">
        <field name="name">eSewa</field>
        <field name="code">esewa</field>
        <field name="state">disabled</field>
        <field name="sequence">10</field>
    </record>

</odoo>


Hope it helps

-1
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Error "Uncaught TypeError: odoo.define is not a function"
development payment plugin
Avatar
Avatar
2
de març 24
7257
Contract Front end website developer needed
development
Avatar
0
de juny 26
260
Where to avoid travel right now?
development
Avatar
0
de juny 26
2
Partage d'expérience : J'ai développé un client Windows pour Odoo POS
development
Avatar
0
de juny 26
426
[Atención al Cliente | México] ¿Cómo me comunico con un operador de Royal Caribbean?
development
Avatar
0
de juny 26
1
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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