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
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • 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
    Procházet všechna odvětví
  • 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
    • Služby pro partnery
    • 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

On change is not triggered

Odebírat

Get notified when there's activity on this post

This question has been flagged
one2manyonchangeOdoo13.0
1 Odpovědět
6234 Zobrazení
Avatar
Mudassar Syed

i'm searching the records from another model and after getting the record i'm writing that record in lines using one2many relation 

here is my code in which i'm writing the the data in one2many line 

for file in files:
self.allotment_line_id = [(0, 0, {'member_id': file.membership_id.id,

'file_id': file.id,

'tracking_no': file.tracking_id,

'sector_id': file.sector_id.id,

'category_id': file.category_id.id,

'unit_category_type_id': file.unit_category_type_id.id,

'size_id': file.size_id.id,

'street_id': file.street_id.id,

'preference_ids': [(6, 0, file.preference_ids.mapped('factor_id.id'))]
  })] 
after this i'm using on change api for triggering the my inventory_id field for applying the domain HERE IS THE CODE FOR DOMAIN

@api.onchange('inventory_id') 
def _onchange_inventory(self): 
    res = {'domain': { 'inventory_id': [('state', '=', 'available_for_sale'), 
    ('category_id', '=', self.category_id.id), 
    ('unit_category_type_id', '=',self.unit_category_type_id.id)] 
    }
    }

now in lines category_id and unit_category_type_id.id have values, and when i click the inventory_id field it will show me complete inventory and then i select one of them after that if i click again on inventory_id field then it trigger the inventory_id and after that it shows me 

my required result related to domain 
but i want that on first time clicking on inventory_id field it trigger my function 

0
Avatar
Zrušit
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Nejlepší odpověď

Hi,The onchange function only triggers after the field has changed. Here you want to return the domain for inventory_id. In your snippet I found some fields values are used in your function. So it means before selecting inventory_id you set those fields values. So you can include the fields in @api.onchange() like this:

@api.onchange('category_id', 'unit_category_type_id')
def _onchange_inventory(self):
res = {'domain': {
'inventory_id': [('state', '=', 'available_for_sale'), ('category_id', '=', self.category_id.id),
('unit_category_type_id', '=', self.unit_category_type_id.id)]}}
return res

Regards

5
Avatar
Zrušit
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
fill a field up based on domain condition Vyřešeno
onchange Odoo13.0
Avatar
Avatar
Avatar
5
pro 22
6347
One2many-field based on value in many2one-field Vyřešeno
one2many Odoo13.0
Avatar
Avatar
1
led 21
4158
How to update two levels o2m fileds relation
one2many onchange
Avatar
0
zář 20
3742
Several levels of One2many
one2many onchange
Avatar
0
dub 16
3860
One2many onchange in ODOO Vyřešeno
one2many onchange
Avatar
Avatar
3
bře 16
14922
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