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

POS Custom Promotion Popup: Confirm button not triggering applyPromotions()

Iscriviti

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

La domanda è stata contrassegnata
pos18.0
1 Rispondi
806 Visualizzazioni
Avatar
Nyan Min Htet


I’m developing a custom promotion program for Odoo 18 POS. 

I created a popup (`SelectedPromotionPopup`) where the user can select a promotion and then click **Confirm** to apply it. 


The problem: when I click **Confirm**, nothing happens — my `applyPromotions()` function is not being called.


Here’s a simplified version of the code:

ApplPromotionButton.js

/** @odoo-module */
import { ControlButtons } from "@point_of_sale/app/screens/product_screen/control_buttons/control_buttons";
import { patch } from "@web/core/utils/patch";
import { SelectedPromotionPopup } from "@promotion_program/app/utils/input_popups/SelectedPromotionPopup";
import { _t } from "@web/core/l10n/translation";
import { AlertDialog } from "@web/core/confirmation_dialog/confirmation_dialog";
import { useService } from "@web/core/utils/hooks"; // Ensure useService is imported

patch(ControlButtons.prototype, {
    setup() {
        super.setup(...arguments);
        this.dialog = useService("dialog");
        this.pos = this.env.services.pos;
    },
    async onApplyPromotionClick() {
        const order = this.pos.get_order();
        const promotions = this.pos.promotions || [];

        if (promotions.length > 0) {
            try {
                const { confirmed, payload } = await this.dialog.add(SelectedPromotionPopup, {
                    title: _t("Select Promotions to Apply"),
                    promotions: promotions,
                    confirmText: _t("Apply"),
                    cancelText: _t("Cancel"),
                });
            } catch (error) {
                console.error("Error opening popup:", error);
            }
        } else if (order.orderlines.length > 0) {
            this.dialog.add(AlertDialog, {
                title: _t("No Promotion Available"),
                body: _t("There is no promotion available for the current order!"),
            });
        }
    }
});

SelectedPromotionPopup.js


applyPromotions(willApplyAll) {
    console.log("applyPromotions called");
    this.props.resolve({ confirmed: true, payload: this.state.selectedPromotions });
}

SelectedPromotionPopup.xml

<t t-name="promotion_program.SelectedPromotionPopup">
    <Dialog title="props.title">
        <div class="popup popup-textinput">
            <div class="modal-body">
                <div class="list-group mt-1">
                    <t t-foreach="props.promotions" t-as="promotion" t-key="promotion.id">
                        <div class="list-group-item list-group-item-action d-flex align-items-center"
                             t-att-class="{'selected-item': this.state.selectedPromotionId === promotion.id}"
                             t-attf-id="promotion-item-{{ promotion.id }}"
                             t-att-data-id="promotion.id"
                             t-on-click.prevent="() => this.selectPromotion(promotion.id)">

                            <!-- Icon -->
                            <div class="me-2" style="font-size: 28px;">
                                <i t-if="promotion.type == 'buy_one_get_one'" class="fa fa-gift" style="color:#5B0082"></i>
                                <i t-if="promotion.type == 'discount'" class="fa fa-percent" style="color:#008081"></i>
                                <i t-if="promotion.type == 'free_shipping'" class="fa fa-truck" style="color:#006401"></i>
                            </div>

                            <!-- Text -->
                            <div>
                                <div class="fw-bold">
                                    <t t-esc="promotion.code"/>
                                </div>
                                <div class="text-muted small">
                                    <t t-esc="promotion.description or ''"/>
                                </div>
                            </div>
                        </div>
                    </t>
                </div>
            </div>

            <t t-set-slot="footer">
                <div class="button confirm highlight btn btn-lg btn-primary"
                     t-att-disabled="!this.state.selectedPromotionId"
                     t-on-click.prevent="() => this.applyPromotions()">
                    <t t-esc="props.confirmText" />
                </div>
                <div class="button cancel btn btn-lg btn-secondary" t-on-click="props.cancel">
                    <t t-esc="props.cancelText" />
                </div>
            </t>
        </div>
    </Dialog>
</t>

0
Avatar
Abbandona
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Risposta migliore

Hi,


Please try the following,


- Change your t-on-click to directly call the method (without arrow function):


<div class="button confirm highlight btn btn-lg btn-primary"

     t-att-disabled="!this.state.selectedPromotionId"

     t-on-click="applyPromotions">

    <t t-esc="props.confirmText" />

</div>


Also, make sure your JS method is correct


applyPromotions() {

    console.log("applyPromotions called");

    this.props.resolve({

        confirmed: true,

        payload: this.state.selectedPromotionId, // or selectedPromotions if multiple

    });

}


Usage in ApplPromotionButton.js


async onApplyPromotionClick() {

    const { confirmed, payload } = await this.dialog.add(SelectedPromotionPopup, {

        title: _t("Select Promotions to Apply"),

        promotions: this.pos.promotions || [],

        confirmText: _t("Apply"),

        cancelText: _t("Cancel"),

    });


    if (confirmed) {

        console.log("Selected promo:", payload);

        this.applyPromotionToOrder(payload);

    }

}


Hope it helps

0
Avatar
Abbandona
Nyan Min Htet
Autore

It seen like in the applyPromotions() this.props.resolve don't seen to know it as a function cuz i got
Uncaught TypeError: this.props.resolve is not a function

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à
Odoo 18: Price tags in Point of Sale (POS) Risolto
pos 18.0
Avatar
Avatar
Avatar
Avatar
Avatar
8
set 25
6779
How to print order bill and still have the possibility to make payment.
pos 18.0
Avatar
Avatar
Avatar
Avatar
Avatar
4
ago 25
2737
How to create a Manufacturing order record from POS order
pos 18.0
Avatar
Avatar
1
mar 25
2389
Point of Sale - When We redeem points, new points are also added
pos loyalty 18.0
Avatar
Avatar
1
ago 25
1031
Change the number of loyalty points used in PoS.
pos loyalty 18.0
Avatar
Avatar
1
nov 24
2648
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