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

Pre-fill one2many field from action

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
one2manyactionso2mdefaultvaluesodoo16features
2 Odpowiedzi
2389 Widoki
Awatar
Lars Kastrup

I have a model Team which has its members stored in a o2m field:

class Team(models.Model):
​_name = 'example.team'
​
​member_ids = fields.One2many(
​ ​comodel_name = 'example.member',
​ ​inverse_name = 'team_id'
)


Team members are represented by their respective model:

class Member(models.Model):
​_name = 'example.member'

​team_id = fields.Many2one('example.team', required = True, ondelete = 'cascade')
​contact_id = fields.Many2one('res.partner', required = True, ondelete = 'cascade')
​membership_fee = fields.Float()
​[...]

        

Now, I want to create a new Team from within an action by opening a Team form view with some of its values pre-filled, including some members:

class Other(models.Model):
​_name = 'example.other'

​def action_create_team(self):
​ ​# Select some contacts which shall be added as members to the new Team below
​ ​contacts = self.env['res.partner'].search([])
​ ​# We cannot create Members from the contacts here because we don't have a team_id yet.
​ ​action = {
​ ​ ​'type':         'ir.actions.act_window',
​ ​ ​'res_model':    'example.team',
​ ​ ​'view_mode':    'form',
​ ​ ​'context':      {
​ ​ ​ ​'default_member_ids': }
​ ​ ​}
​ ​return action


The problem is that I cannot create new Members in the action which I could pass in via the context because there is no team_id yet which is needed to create Member records.

On the other hand, members can be added in the Team form view even before the Team is saved/created so I guess there must be a way...

Any help is greatly appreciated...

0
Awatar
Odrzuć
Awatar
Lars Kastrup
Autor Najlepsza odpowiedź

In fact, I have found another solution in the meantime:

It is possible to provide default values to the Team record to be created via the context like so:

action = {
'type':         'ir.actions.act_window',
'res_model': 'example.team',
'view_mode':    'form',
'context':      {'default_member_ids': contacts.ids}
}

That way, one does not have to create a Team record in advance -- which has the advantage that the new Team record can still be discarded in the form view.

0
Awatar
Odrzuć
Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

Hi,

Try this:def action_create_team(self):

        contacts = self.env['res.partner'].search([])

        team = self.env['example.team'].create({

        })

               for contact in contacts:

            self.env['example.member'].create({

                'team_id': team.id,

                'contact_id': contact.id,

                # Add any other default values for the Member here

            })


        # Open the form view for the new Team

        action = {

            'type': 'ir.actions.act_window',

            'res_model': 'example.team',

            'view_mode': 'form',

            'res_id': team.id,

            'context': self.env.context,

        }

        return action


Hope it helps

0
Awatar
Odrzuć
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ść
one2many fields, advise/guidance needed... Rozwiązane
one2many odoo16features
Awatar
Awatar
1
wrz 23
2635
Filter One2many field in res.partner Rozwiązane
filter one2many odoo16features
Awatar
Awatar
1
sty 24
2622
odoo 16: Confirm button on Quotations
actions sequence odoo16features
Awatar
Awatar
1
paź 23
3487
[Osoo16] Automated Action to create new Activity when update an Activity
actions activity odoo16features
Awatar
0
sie 23
2649
Many2one not filled until One2many is saved Odoo 16
many2one one2many odoo16features
Awatar
Awatar
1
gru 22
3381
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