Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to create a related field with a many2many field?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
many2manyrelated_fieldsv12
3 Odpowiedzi
27581 Widoki
Awatar
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
Awatar
Odrzuć
Awatar
Patrick Wilson, Systems Integration Manager at Pavlov Media
Najlepsza odpowiedź

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
Awatar
Odrzuć
Awatar
San
Najlepsza odpowiedź

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
Awatar
Odrzuć
Maxime Chambreuil
Autor

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

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Setting field values from project.project to project.task as default values Rozwiązane
many2many default_get related_fields
Awatar
Awatar
1
paź 20
5840
Many2many field with repetition of the same record Rozwiązane
fields many2many related_fields odoo12
Awatar
Awatar
2
sie 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
Awatar
Awatar
1
cze 25
26461
ODOO V16 Associate Parts to a Finished Good
many2many
Awatar
Awatar
1
lut 24
2774
odoo 13 related field to a custom field not working
related_fields
Awatar
Awatar
2
kwi 23
6911
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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