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

many2many default disappear

Odebírat

Get notified when there's activity on this post

This question has been flagged
defaultmany2manydisappear
3 Odpovědi
6258 Zobrazení
Avatar
Alessandro Ruffolo

 have a form which I pass some invoice ids through context by an act_window. Invoices are set as default in an many2many field (I tried both using a default function and overriding the default_get function), but when I add a record on another one2many field in the same form, the many2many field just get cleared (I suppose it refresh itself) It does not happen with other fields which also had defaults but just with the many2many.

Any ideas?


edit: seems that the many2many field disapearing is not related with being a default or not. It happens everytime a record in the other one2many field is inserted. But at the end of the day, when I save the whole record, the m2m records are not deleted on DB: when I open again the form, here there are again!

0
Avatar
Zrušit
Alessandro Ruffolo
Autor

Pawan, I tried your solution in many ways but problems are: 1-in which part of the code I should save, as you proposed (tried onchange but it could be never triggered) 2-in which part of the code I should unlink the record if the user then decide to cancel the action? (I transformed the cancel button into a normal button in order to write the unlink code in its method, but what about the "X" button in the top-right of the form? plus, if there are required unset fields, it doesn't let me press "Cancel" at all because of validation)

Pawan

as per what i got till now is that you want to populate a many2many field with some default values on opening of a form you are newly going to create(by clicking on create button)... isn't it?? if it is so, then for many2many field odoo creates a new table with the id of current record and the ids of many2many fields records. so for your problems: 1 - it will not be saved in that(new) table until n unless you save your current record, then everything will happen automatically. 2 - as its not saved till now u don't even need to unlink it also. for writing data to many2many field you have to use notations like : [(6,0, ids)], etc, you must be aware about.

Avatar
Alessandro Ruffolo
Autor Nejlepší odpověď

Given the edit I did, I suppose this is just some kind of bug.

0
Avatar
Zrušit
Avatar
Pawan
Nejlepší odpověď

Try saving the record, it(many2many field)will populate with the data you populated, as it needs an id of the parents record to save with in the new table(created as default odoo functionality for many2many field).

0
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
How do I set a default for a many2many field? Like Routes on a Product? Vyřešeno
default many2many routes
Avatar
Avatar
Avatar
2
led 21
6704
How to set default values for M2M relation on existing projects? Vyřešeno
default many2many odoo10
Avatar
Avatar
1
čvc 19
7335
ODOO V16 Associate Parts to a Finished Good
many2many
Avatar
Avatar
1
úno 24
2796
Inherit the model and make changes to the existing field Vyřešeno
default inherit expense many2many limit
Avatar
Avatar
Avatar
2
pro 24
3083
Set default value for Many2many Field Vyřešeno
fields default many2many many2many_tags defaultvalues
Avatar
Avatar
Avatar
2
dub 23
10167
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