Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

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

Odebírat

Get notified when there's activity on this post

This question has been flagged
pos18.0
1 Odpovědět
745 Zobrazení
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
Zrušit
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

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
Zrušit
Nyan Min Htet
Autor

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

Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Odoo 18: Price tags in Point of Sale (POS) Vyřešeno
pos 18.0
Avatar
Avatar
Avatar
Avatar
Avatar
8
zář 25
6626
How to print order bill and still have the possibility to make payment.
pos 18.0
Avatar
Avatar
Avatar
Avatar
Avatar
4
srp 25
2656
How to create a Manufacturing order record from POS order
pos 18.0
Avatar
Avatar
1
bře 25
2334
Point of Sale - When We redeem points, new points are also added
pos loyalty 18.0
Avatar
Avatar
1
srp 25
980
Change the number of loyalty points used in PoS.
pos loyalty 18.0
Avatar
Avatar
1
lis 24
2603
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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