Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

@api.onchange Issue: One Onchange Triggers Another Indirectly, Causing Domain Inconsistencies

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
onchangedomain_filterodoo18
2 Răspunsuri
1220 Vizualizări
Imagine profil
Dishant Mistry

Hi everyone,

I’m facing an issue with multiple @api.onchange methods where one onchange indirectly triggers another due to a field update inside it. This leads to unexpected behavior in domain filtering.

Let’s say I have two onchange methods:

@api.onchange('field_a') def onchange_a(self): self.domain_field = some_logic_based_on_a @api.onchange('field_b') def onchange_b(self): self.field_a = False # This triggers onchange_a again self.domain_field = some_logic_based_on_b

The problem is that when field_b changes, it updates field_a, which re-triggers onchange_a, and this overwrites the domain logic set by onchange_b.

As a result, the final domain on domain_field becomes inconsistent or incorrect, depending on which onchange executes last.


In complex forms where multiple fields influence a shared domain or selection field, this kind of chained onchange can cause:

  • Unintended overrides of previous logic.
  • Incorrect domain being applied.
  • Confusing user experience on the form.


What’s the best way to handle such cases in Odoo?

  • Is there a way to control or prevent re-triggering another onchange when setting a field inside one?
  • Any alternative way to achieve that things  
  • Any better practice to manage interdependent fields without causing these side-effects?

Thanks in advance for any advice!

0
Imagine profil
Abandonează
Imagine profil
D Enterprise
Cel mai bun răspuns

Hii,

Here is updated code 
from odoo import models, fields, api


class MyModel(models.Model):

    _name = 'my.model'

    _description = 'My Model'


    field_a = fields.Many2one('res.partner', string='Field A')

    field_b = fields.Many2one('res.partner.category', string='Field B')

    domain_field = fields.Many2one('product.product', string='Domain Field')


    @api.onchange('field_a', 'field_b')

    def _onchange_field_a_b(self):

        """Centralized onchange handler to avoid chained effects."""

        domain = []


        if self.field_b:

            # Priority: field_b logic

            self.field_a = False  # Reset A if B is selected

            domain = [('categ_id', '=', record.field_a.id)], limit=1)

            else:

                record.domain_field = False


    domain_field = fields.Many2one('product.product', string='Domain Field', compute='_compute_domain_field', store=True)


i hope it is usefull

0
Imagine profil
Abandonează
Imagine profil
Savya Sachin
Cel mai bun răspuns

Hi Dishant, 
Try using computed fields for such interdependencies instead of multiple onchange functions,

@api.depends('field_a', 'field_b')
def _compute_domain_field(self):
    for record in self:
        if record.field_b:
            record.domain_field = some_logic_based_on_b
        elif record.field_a:
            record.domain_field = some_logic_based_on_a
        else:
            record.domain_field = False

domain_field = fields.Char(compute='_compute_domain_field', store=True)

@api.onchange('field_b')
def onchange_b(self):
    if self.field_b:
        self.field_a = False

Thanks

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Dynamic domain with Onchange doesn't show value when creating
domain onchange domain_filter
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
mai 24
6588
Onchange apply domain when editing records
v8 onchange domain_filter
Imagine profil
Imagine profil
Imagine profil
3
aug. 23
7748
How to give Domain filter for one2many field base on the condition of another field? (Odoo 13) Rezolvat
many2one one2many onchange domain_filter
Imagine profil
Imagine profil
2
iul. 22
12724
POS order line custom field (serial_id) not synced to backend after payment (Odoo 18)
odoo18
Imagine profil
Imagine profil
1
nov. 25
525
Auto Session time out for users ODOO 18
odoo18
Imagine profil
Imagine profil
Imagine profil
2
sept. 25
3309
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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