Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to create a Custom Payment Method with QR (Bakong KHQR) in POS (Odoo 19)

Naroči se

Get notified when there's activity on this post

This question has been flagged
pospaymentcustom-moduleodoo19
1 Odgovori
789 Prikazi
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
Opusti
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
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Advise on Payment method integration
pos payment
Avatar
0
mar. 25
1784
UPI Payment in Odoo 18 Solved
pos payment
Avatar
Avatar
1
mar. 25
2930
PoS Error: Unknown error at validating payment
pos payment
Avatar
Avatar
Avatar
2
feb. 25
3267
Why are there 2 sets of accounts to set for Payment Method in POS Odoo v10?
pos payment
Avatar
0
nov. 17
3770
How to add Odoo9 POS payments Solved
pos payment
Avatar
Avatar
3
avg. 16
4078
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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