Skip to Content
Odoo Меню
  • Увійти
  • Спробуйте це безкоштовно
  • Додатки
    Фінанси
    • Бухоблік
    • Виставлення рахунку
    • Витрати
    • Електронні таблиці (BI)
    • Документи
    • Підпис
    Продажі
    • CRM
    • Продажі
    • POS Магазин
    • POS Ресторан
    • Підписки
    • Оренда
    Веб-сайти
    • Конструктор веб-сайту
    • Електронна комерція
    • Блог
    • Форум
    • Живий чат
    • Електронне навчання
    Ланцюг поставок
    • Склад
    • Виробництво
    • PLM
    • Купівлі
    • Технічне обслуговування
    • Якість
    Кадри
    • Співробітники
    • Рекрутинг
    • Відпустки
    • Оцінювання
    • Рекомендації
    • Автотранспорт
    Маркетинг
    • Маркетинг соцмереж
    • Email-маркетинг
    • SMS-маркетинг
    • Події
    • Автом. маркетингу
    • Опитування
    Послуги
    • Проект
    • Табелі
    • Виїзне обслуговування
    • Служба підтримки
    • Планування
    • Призначення
    Продуктивність
    • Обговорення
    • Схвалення
    • IoT
    • IP-телефонія
    • База знань
    • WhatsApp
    Сторонні модулі Odoo Studio Платформа Odoo Cloud
  • Сфери
    Роздрібна торгівля
    • Книжковий магазин
    • Магазин одягу
    • Магазин меблів
    • Продуктовий магазин
    • Магазин будівельних матеріалів
    • Магазин іграшок
    Food & Hospitality
    • Бар та паб
    • Ресторан
    • Фастфуд
    • Guest House
    • Дистриб'ютор напоїв
    • Hotel
    Нерухомість
    • Real Estate Agency
    • Архітектурна фірма
    • Будівництво
    • Управління нерухомістю
    • Садівництво
    • Асоціація власників нерухомості
    Консалтинг
    • Бухгалтерська компанія
    • Партнер Odoo
    • Агенція маркетингу
    • Юридична фірма
    • Придбання Талантів
    • Аудит та сертифікація
    Виробництво
    • Textile
    • Metal
    • Меблі
    • Їжа
    • Brewery
    • Корпоративні подарунки
    Здоров'я & Фітнес
    • Спортивний клуб
    • Оптика
    • Фітнес-центр
    • Практики здоров'я
    • Аптека
    • Салон краси
    Trades
    • Ремонтник
    • IT-обладнання та Підтримка
    • Системи сонячної енергії
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Інші
    • Nonprofit Organization
    • Екологічна агенція
    • Оренда білбордів
    • Фотографія
    • Лізинг велосипедів
    • Реселлер програмного забезпечення
    Browse all Industries
  • Спільнота
    Навчання
    • Навчальний посібник
    • Документація
    • Сертифікації
    • Тренування
    • Блог
    • Подкаст
    Сприяйте Освіті
    • Програма навчання
    • Бізнес гра Scale Up!
    • Відвідайте Odoo
    Отримайте програмне забезпечення
    • Завантаження
    • Порівняйте версії
    • Релізи
    Співпрацюйте
    • Github
    • Форум
    • Події
    • Переклади
    • Стати партнером
    • Services for Partners
    • Зареєструйте вашу бухгалтерську фірму
    Отримайте послуги
    • Знайдіть партнера
    • Знайдіть бухгалтера
    • Зустріньтеся з консультантом
    • Послуги з впровадження
    • Референси клієнтів
    • Підтримка
    • Оновлення
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Отримати демо
  • Ціни
  • Допомога

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

  • CRM
  • e-Commerce
  • Бухоблік
  • Склад
  • PoS
  • Проект
  • MRP
All apps
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Допомога

How to Load Related Many2Many Data (pos.ticket.type) into the Frontend?

Підписатися

Отримуйте сповіщення про активність щодо цієї публікації

Це запитання позначене
javascriptdevelopment
1835 Переглядів
Аватар
Samar Guicha

Hello Odoo Community,

I'm developing a custom module for the Odoo Point of Sale (POS) and have encountered a persistent issue with data loading for a custom Many2Many field, preventing me from displaying the correct information in a custom popup.

My Goal: I'm implementing a new payment method type for "Tickets Restaurant" (or similar vouchers). Each such payment method needs to be associated with specific pos.ticket.type records, which define properties like a name and discount_rate. When a user selects one of these ticket payment methods in the POS, I intend to open a custom popup (ManageTicketRestaurantPopup). This popup should then display a list of the actual names and discount rates of the pos.ticket.type records that are linked to the selected payment method.

Any guidance or common pitfalls I might be overlooking would be greatly appreciated! Thank you!

My Current Setup (Odoo 18):

Here's a simplified view of my relevant models and JavaScript:

  1. pos.ticket.type Model (Python): This model defines the structure for my ticket types. Python
    # your_module_name/models/pos_ticket_type.py
    from odoo import models, fields
    
    class PosTicketType(models.Model):
        _name = 'pos.ticket.type'
        _description = 'Type de Ticket'
    
        name = fields.Char(required=True)
        discount_rate = fields.Float(string="Taux de retenue (%)", required=True)
    
  2. pos.payment.method Model (Python - Inherited): I've added a boolean flag and a Many2Many field to link to the ticket types. I've also extended _load_pos_data_fields to ensure these fields are loaded for the payment method itself. Python
    # your_module_name/models/pos_payment_method.py
    from odoo import models, fields, api
    
    class PosPaymentMethod(models.Model):
        _inherit = 'pos.payment.method'
    
        is_ticket_payment = fields.Boolean(string="Mode de paiement par ticket ?", default=False)
        allowed_ticket_type_ids = fields.Many2many('pos.ticket.type', string="Types de tickets autorisés")
    
        @api.model
        def _load_pos_data_fields(self, config_id):
            res = super()._load_pos_data_fields(config_id)
            res += ['is_ticket_payment', 'allowed_ticket_type_ids']
            return res
    
  3. pos.config Model (Python - Loading related data): To make the full pos.ticket.type records available in the frontend, I've extended _get_pos_ui_res_config. Python
    # your_module_name/models/pos_config.py
    from odoo import models, fields, api
    
    class PosConfig(models.Model):
        _inherit = 'pos.config'
    
        @api.model
        def _get_pos_ui_res_config(self, config):
            result = super()._get_pos_ui_res_config(config)
            ticket_types_data = self.env['pos.ticket.type'].search_read([], ['id', 'name', 'discount_rate'])
            result['pos_ticket_types'] = ticket_types_data
            return result
    
  4. payment_screen_patch.js (JavaScript Frontend): This is where I try to access the data and pass it to my custom popup. JavaScript
    // your_module_name/static/src/js/payment_screen_patch.js
    /** @odoo-module **/
    import { _t } from "@web/core/l10n/translation";
    import { patch } from "@web/core/utils/patch";
    import { PaymentScreen } from "@point_of_sale/app/screens/payment_screen/payment_screen";
    import { ManageTicketRestaurantPopup } from "@pos_ticket_voucher/js/ticket_restaurant_popup"; // Ensure this path is correct
    import { useService } from "@web/core/utils/hooks";
    
    patch(PaymentScreen.prototype, {
        setup() {
            super.setup(...arguments);
            this.dialog = useService("dialog");
            this.pos = useService("pos"); // Access the pos service
        },
    
        async addNewPaymentLine(payment_method) {
            await super.addNewPaymentLine(payment_method);
    
            if (payment_method.is_ticket_payment) {
                // This line is where the problem occurs for me.
                // I expect full voucher types, but I get just IDs or an empty array when trying to map.
                const allowedTicketTypeIds = payment_method.allowed_ticket_type_ids || [];
    
                // Access the loaded pos_ticket_types data from this.pos
                const allPosTicketTypes = this.pos.pos_ticket_types; // This seems to contain full records
    
                // Attempt to map IDs to full objects
                const ticketTypes = allowedTicketTypeIds.map(id =>
                    allPosTicketTypes.find(ticketType => ticketType.id === id)
                ).filter(Boolean);
    
                console.log("Allowed Ticket Type IDs (from payment_method):", allowedTicketTypeIds);
                console.log("All loaded POS Ticket Types (from this.pos):", allPosTicketTypes);
                console.log("Filtered Ticket Types for Popup (EXPECTING FULL OBJECTS):", ticketTypes);
    
                const { payload } = await this.dialog.add(ManageTicketRestaurantPopup, {
                    title: _t("Tickets Restaurant"),
                    ticketTypes: ticketTypes, // This `ticketTypes` array is empty or contains wrong data
                    getPayload: (tickets) => {
                        const total = tickets.reduce((sum, t) => sum + parseFloat(t.discounted), 0);
                        const paymentline = this.currentOrder.selected_paymentline;
                        if (paymentline) {
                            paymentline.set_amount(total);
                            paymentline.ticket_data = tickets; // for later use
                        }
                    },
                    close: () => {},
                });
    
                // (Optional code to remove payment line if popup is cancelled)
                // if (!payload || !payload.length) {
                //     this.currentOrder.remove_paymentline(this.currentOrder.selected_paymentline);
                // }
            }
        }
    }); 
0
Аватар
Відмінити
Enjoying the discussion? Don't just read, join in!

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

Реєстрація
Related Posts Відповіді Переглядів Дія
How can I use my only web url domain using odoo?
javascript development
Аватар
Аватар
1
вер. 25
1531
Odoo 18 POS - Discount Button Group Permissions Not Working
javascript development
Аватар
Аватар
2
черв. 25
1994
¿Cómo puedo crear un Dashboard con KPIs y gráficos con Chart.js?
javascript development
Аватар
0
квіт. 25
1957
Odoo icon change Вирішено
javascript development
Аватар
Аватар
2
січ. 25
2508
How to get the Model name and Action of the Current page? v7 Вирішено
javascript development
Аватар
Аватар
Аватар
2
лют. 24
13721
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
Open Source
  • Завантаження
  • Github
  • Runbot
  • Переклади
Послуги
  • Хостинг Odoo.sh
  • Підтримка
  • Оновлення
  • Кастомні доробки
  • Навчання
  • Знайдіть бухгалтера
  • Знайдіть партнера
  • Стати партнером
Про нас
  • Наша компанія
  • Торгові активи
  • Зв'яжіться з нами
  • Вакансії
  • Події
  • Подкаст
  • Блог
  • Клієнти
  • Юридичні документи • Конфіденційність
  • Безпека
الْعَرَبيّة 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 - це набір програм для роботи з відкритим кодом, які охоплюють всі ваші потреби компанії: CRM, електронна комерція, бухгалтерський облік, склад, точка продажу, управління проектами тощо.

Унікальна пропозиція Odoo - це одночасно дуже проста у використанні та повністю інтегрована.

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