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

How to create a related field with a many2many field?

Odebírat

Get notified when there's activity on this post

This question has been flagged
many2manyrelated_fieldsv12
3 Odpovědi
27585 Zobrazení
Avatar
Maxime Chambreuil

Requirement

On helpdesk tags, we want to set a list of documents:

  • Maintenance: User Manual, Specs

  • Troubleshooting: Standard Procedure, Checklist

When a ticket is created and tags are set, we want to have:

  1. Ticket 1 has Maintenance tag --> Ticket 1 displays the User Manual and the Specs documents

  2. Ticket 2 has Maintenance and Troubleshooting tags --> Ticket 2 displays the User Manual, Specs, Standard Procedure and Checklist documents

Prototype

On version 12, we added a many2many field on helpdesk tags to documents.

On the helpdesk ticket, we added a related many2many field to have direct access to all the documents of all the tags selected on the ticket.

Unfortunately, the related field only contains the documents of the first selected tag: On Ticket 2, we only get the User Manual and the Specs documents.

Questions

Is it a bug or an unsupported feature? How can we achieve the requirement?

Thanks!

0
Avatar
Zrušit
Avatar
Patrick Wilson, Systems Integration Manager at Pavlov Media
Nejlepší odpověď

I'm also interested in the answer to this question as i was able to reproduce the issue, both via Studio and within a custom module. It seems that a Many2many field that is related to another many2many field doesn't pull all the results, just the results of the first record. I was able to work around this issue by not using a related many2many field and instead just using the following code with an onchange event:

helpdesk_tag.py

from odoo import models, fields, api
class HelpdeskTag(models.Model):
    _inherit = 'helpdesk.tag'
    documents = fields.Many2many('ir.attachment', string="KB Documents")
    documents_folder = fields.Many2one('documents.folder', string="KB Documents Folder") #This allows the use of domain filtering on the tag list view

helpdesk.py

from odoo import models, fields, api
class Helpdesk(models.Model):
    _inherit = 'helpdesk.ticket'
    kb_documents = fields.Many2many('ir.attachment', string="KB Documents")
    @api.onchange('tag_ids')
    def on_change_tag_ids(self):
        self.kb_documents = [(6, 0, [])]
        for record in self:
            for i in record.tag_ids:
                record.kb_documents = record.kb_documents + i.documents

This seems to work as intended and shows all the related tag documents when the tags are changed on the ticket however this might not be the best option and it would be nice if the related field would just work as you would imagine it should.

1
Avatar
Zrušit
Avatar
San
Nejlepší odpověď

Dear Maxime,

I didn't understand your requirement, it seems a little bit confusing but I am giving you the link to the Odoo tutorial  where they explained clearly the relations when adding many2many fields and the options of Odoo Studio. Everything in the video can be done with the studio in the Settings app. It's a bit longer and complexe, but it is possible. If you don't have access to Odoo Studio, try it and I will tell you where to add those fields. The video is here:

https://www.youtube.com/watch?v=nF152j_csbo

Cheers!

San Aguayo

1
Avatar
Zrušit
Maxime Chambreuil
Autor

I gave more details in the original question hoping it would solve the confusion...

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
Setting field values from project.project to project.task as default values Vyřešeno
many2many default_get related_fields
Avatar
Avatar
1
říj 20
5840
Many2many field with repetition of the same record Vyřešeno
fields many2many related_fields odoo12
Avatar
Avatar
2
srp 19
4076
Can I rename "OdooBot" so that people don't get email from a "Bot". I have concerns this isn't professional / might make people think SCAM
v12
Avatar
Avatar
1
čvn 25
26463
ODOO V16 Associate Parts to a Finished Good
many2many
Avatar
Avatar
1
úno 24
2774
odoo 13 related field to a custom field not working
related_fields
Avatar
Avatar
2
dub 23
6911
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