Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

odoo v18, Odoo Many2XAutocomplete Problem: Unable to Retrieve Current Line ID, Only Line Records When Updating Purchase Requisition Lines via RPC

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
codemany2onewidget
939 Vues
Avatar
vlad

I’m customizing purchase requisition lines in Odoo, using a Many2XAutocomplete widget for selecting product templates. After selecting a template, a product configurator dialog opens where I pick a variant. Once selected, I want the product field in the exact line the user is editing to autocomplete with the chosen product variant.

The problem:

Many2XAutocomplete only gives me a list of line record IDs or a general record context, but not the exact current line ID being edited. Without knowing this current line ID, I cannot properly update that line with the selected product variant.

I’ve tried accessing this.env.model and this.env.model.root, but neither reliably provides the precise line ID for the current autocomplete widget instance.

Does anyone know:

  • How to get the exact line ID from within Many2XAutocomplete when a selection is made?
  • Or, an alternative approach to reliably identify and update the line that triggered the product template selection and configurator?

This is crucial because without the line ID, I can’t correctly set the product variant on the intended line, breaking the expected user flow.

Thanks in advance for any guidance or examples!

Here you can see my code :

import { patch } from "@web/core/utils/patch";

import { ProductConfiguratorDialog } from "@sale/js/product_configurator_dialog/product_configurator_dialog";

import { Many2XAutocomplete } from "@web/views/fields/relational_utils";

import { rpc } from "@web/core/network/rpc";

import { useInputField } from "@web/views/fields/input_field_hook";



const originalOnSelect = Many2XAutocomplete.prototype.onSelect;


patch(Many2XAutocomplete.prototype, {

    async onSelect(option, params = {}) {

        if (this.props.resModel === "product.template" && option?.value) {

            const dialog = this.env.services.dialog;

            const env = this.env;


            try {

                const result = await rpc("/my_product_configurator/get_values", {

                    product_template_id: option.value,

                    currency_id: 1,

                    so_date: new Date().toISOString(),

                });


                await dialog.add(ProductConfiguratorDialog, {

                    productTemplateId: result.product_template_id,

                    quantity: 1.0,

                    ptavIds: [],

                    customPtavs: [],

                    soDate: result.so_date,

                    productUOMId: 1,

                    companyId: 1,

                    pricelistId: 1,

                    currencyId: result.currency_id,

                    options: result.options,


                    discard: () => console.log("Discard clicked"),


                    save: async (mainProduct) => {

                        const record = this.env.model.root;


                        if (!record.resId) {

                            await record.save();

                        }


                        const requisitionId = record.resId;

                        if (!requisitionId) {

                            console.error("Missing requisition ID even after save.");

                            return;

                        }


                        const ptavIds = (mainProduct.attribute_lines || []).flatMap(

                            line => line.selected_attribute_value_ids || []

                        );


                        const templateIds = [mainProduct.product_tmpl_id];

                        const lineIds = env.model.root._values.line_ids.currentIds


                        try {

                            const response = await rpc("/my_product_configurator/set_variants_for_lines", {

                                ptav_ids: ptavIds,

                                template_ids: templateIds,

                                requisition_id: requisitionId,

                                line_ids: lineIds

                            });


                            if (response?.status === "ok") {

                                console.log("Created requisition lines:", response.created_line_ids);

                            } else {

                                console.error("Error from controller:", response?.error || "Unknown error");

                            }

                        } catch (rpcError) {

                            console.error("RPC Error:", rpcError);

                        }


                       await this.env.model.root.load();


                        if (this.env.model.root.model.root) {

                            await this.env.model.root.model.root.load();  

                        }



                    },  


                    close: () => console.log("Dialog closed"),

                });


            } catch (dialogError) {

                console.error("Dialog setup failed:", dialogError);

            }

        }


        return await originalOnSelect.call(this, option, params);

    },

});






0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Odoo 10: How to filter on a Many2one field?
many2one widget
Avatar
Avatar
4
sept. 20
9728
Help with customizing Many2one dropdown background color in Odoo
javascript many2one widget
Avatar
0
avr. 25
1459
How to remove or disable search option in many2one widget in openerp 6.1?
many2one widget search options
Avatar
Avatar
Avatar
2
mai 21
11274
How to add line of One2many field related child record with another parent record.
code many2one one2many customization
Avatar
0
avr. 21
6
Odoo mobile framework V2 - many2one field selection widget
many2one widget selection mobile
Avatar
0
févr. 19
4354
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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