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
    • Validacions
    • 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ó
    • Gestió immobiliària
    • 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

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
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 create a Custom Payment Method with QR (Bakong KHQR) in POS (Odoo 19)

Subscriure's

Get notified when there's activity on this post

This question has been flagged
pospaymentcustom-moduleodoo19
1 Respondre
780 Vistes
Avatar
tangsoklim7@gmail.com

Hello community,


I am working on Odoo v19 POS and trying to integrate Bakong KHQR (Cambodian payment system) as a payment method.


So far, I have:


Created a custom module with a pos.payment.method extension (new fields like token, account, merchant info).


Added form view fields for the payment method.


Added assets (payment_bakong.js) for POS.



The problem:


I can save payment methods in backend.


But I cannot display the KHQR code on the POS payment screen.


My current XML view inheritance fails with xpath (error: Element '<xpath expr="//sheet/notebook">' cannot be located in parent view).



Questions:


1. What is the correct way to extend the POS payment screen in Odoo 19 to display a QR code (dynamic/static)?


2. Do I need to use OWL (Odoo Web Library) components for the POS frontend or can I rely on pure JS/QWeb templates?


3. Any working examples/tutorials for extending pos.payment.method with custom fields visible in the POS UI?


Resource:

pypi.org/project/bakong-khqr



Thanks a lot for your support 🙏

0
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi


In Odoo 19, the POS frontend is fully rewritten in OWL (Odoo Web Library). That means:


    You cannot reliably use only QWeb/xpath to inject UI in POS anymore.


    Instead, you extend or patch OWL components (e.g., PaymentScreen, PaymentScreenPaymentLines, or PaymentMethodButton) using patch from @web/core/utils/patch.


Example code:-


/** @odoo-module **/


import { patch } from "@web/core/utils/patch";

import { PaymentScreen } from "@point_of_sale/app/screens/payment_screen/payment_screen";


patch(PaymentScreen.prototype, {

    setup() {

        super.setup();

        this.state.showQR = false;

    },


    async showKHQR(paymentMethod) {

        // Example: generate KHQR code with bakong-khqr lib or external API

        const qrData = "your_dynamic_qr_string";

        this.state.qrData = qrData;

        this.state.showQR = true;

    },

});


Then in your custom template:


<t t-name="pos.PaymentScreenKHQR" owl="1">

  <div t-if="state.showQR" class="bakong-qr-container">

    <img t-att-src="'/report/barcode/?type=QR&value=' + state.qrData" />

  </div>

</t>


And register the template with PaymentScreen.components.


Tips for Flow for Bakong KHQR Integration:-


    Add your custom fields (token, merchant_id, etc.) to pos.payment.method.


    Load them in POS using PosGlobalState patch (pos_data_loader.js).


    Patch PaymentScreen to detect when your KHQR payment method is selected.


    Generate QR (dynamic string) either:


        On backend via Python (using bakong-khqr pypi lib), return to POS, OR


        On frontend with a JS QR library.


    Display QR inside your custom OWL component embedded in PaymentScreen.


Hope it helps

0
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
Advise on Payment method integration
pos payment
Avatar
0
de març 25
1782
UPI Payment in Odoo 18 Solved
pos payment
Avatar
Avatar
1
de març 25
2927
PoS Error: Unknown error at validating payment
pos payment
Avatar
Avatar
Avatar
2
de febr. 25
3263
Why are there 2 sets of accounts to set for Payment Method in POS Odoo v10?
pos payment
Avatar
0
de nov. 17
3769
How to add Odoo9 POS payments Solved
pos payment
Avatar
Avatar
3
d’ag. 16
4073
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 ภาษาไทย 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