Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

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

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
pospaymentcustom-moduleodoo19
1 Rispondi
759 Visualizzazioni
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
Abbandona
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Advise on Payment method integration
pos payment
Avatar
0
mar 25
1779
UPI Payment in Odoo 18 Risolto
pos payment
Avatar
Avatar
1
mar 25
2922
PoS Error: Unknown error at validating payment
pos payment
Avatar
Avatar
Avatar
2
feb 25
3261
Why are there 2 sets of accounts to set for Payment Method in POS Odoo v10?
pos payment
Avatar
0
nov 17
3767
How to add Odoo9 POS payments Risolto
pos payment
Avatar
Avatar
3
ago 16
4070
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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