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 pass default value with fields_view_get

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
pythonfields_view_getdefault_getfields_getodoo
2 Odpowiedzi
1989 Widoki
Awatar
Fares_Algerien

I am using fields_view_get method in odoo to add temporary fields in form view, but i look to pass default value in edit mode unfortunately default_get work only in create mode, can someone help me please thank you.

def fields_view_get(self,view_id=None, view_type='form', toolbar=False, submenu=False):
    res = super(inspection, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)
    categories = self.env['inspection.category'].search([])
    all_fields = {}
    pages = """ """
    fields = """ <group string="Categories" style="font-size:13px; color:black;"> """
    if view_type == 'form':
        xml_code = res['arch']
        for c in categories:
            all_fields['category_id_' + str(c.id)] = {
                            'type': 'boolean',
                            'string': c.name,
                             how can in pass default value ???????,
                        }
            fields = fields + """ <field name="%s" string="%s"/>"""%(('category_id_' + str(c.id)),c.name)
        xml_code = xml_code[:xml_code.find("<notebook/>")]+" "+fields+" "+xml_code[xml_code.find("<notebook/>")+len("<notebook/>"):]
        res['fields'] = dict(res['fields'].items() + all_fields.items())
        res['arch'] = xml_code
    return res

0
Awatar
Odrzuć
Awatar
Gracious Joseph
Najlepsza odpowiedź

To pass a default value to dynamically added fields in Odoo using fields_view_get, you need to manually handle the assignment of default values in the res['fields'] dictionary. While default_get works for fields defined in the model, dynamically added fields through fields_view_get require explicit handling.

Here’s how you can achieve it:

Modified fields_view_get Implementation

def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
    res = super(inspection, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)
    categories = self.env['inspection.category'].search([])
    all_fields = {}
    fields = """<group string="Categories" style="font-size:13px; color:black;">"""
    
    if view_type == 'form':
        xml_code = res['arch']
        
        # Add dynamically generated fields
        for c in categories:
            field_name = 'category_id_' + str(c.id)
            all_fields[field_name] = {
                'type': 'boolean',
                'string': c.name,
                # Pass default value here
                'default': lambda self: self._get_default_category_value(c.id),
            }
            fields += """<field name="%s" string="%s"/>""" % (field_name, c.name)
        
        # Inject the new fields into the XML structure
        xml_code = xml_code.replace("<notebook/>", fields + "</group><notebook/>")
        
        # Merge the dynamically added fields into the fields dictionary
        res['fields'].update(all_fields)
        res['arch'] = xml_code
    
    return res

Explanation of Key Changes

  1. Adding Default Values: In the dynamically created all_fields dictionary, a default value can be set using:
    'default': lambda self: self._get_default_category_value(c.id),
    
  2. Custom Method for Default Value: Define a helper method in your model to fetch the default values for the dynamically added fields:
    def _get_default_category_value(self, category_id):
        # Example: Set default to True for specific categories
        if category_id in [1, 2, 3]:  # Adjust category IDs as needed
            return True
        return False
    
  3. Update the Fields Dictionary: Merge the dynamically generated fields with the existing ones using res['fields'].update(all_fields).
  4. Modify XML Structure: Dynamically inject the fields into the form view XML structure.

Limitations and Considerations

  • Defaults in Edit Mode: The default attribute in the field definition is typically used in the create mode. To ensure it applies in edit mode, you must populate the field values in the model's write or other record access methods.
  • Persistence: The dynamically added fields and their values are not persisted in the database unless handled separately. If you want these fields to have permanent values, you'll need to store them in a related model or JSON field.

Alternative Approach

If the default value for the dynamic fields should be assigned in the edit mode as well, consider overriding the read or default_get method to inject values dynamically.

Example with default_get:

def default_get(self, fields):
    res = super(inspection, self).default_get(fields)
    
    categories = self.env['inspection.category'].search([])
    for c in categories:
        field_name = 'category_id_' + str(c.id)
        if field_name in fields:
            res[field_name] = True if c.id in [1, 2, 3] else False  # Example condition
    
    return res

With these changes, your dynamically added fields in fields_view_get will have the default values set properly. This approach works seamlessly in both create and edit modes. Let me know if you need further clarification!

0
Awatar
Odrzuć
Awatar
Nikhil Dhiman
Najlepsza odpowiedź

Please try passing this argument

'default':1 or 'default' : True


Like this

def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):

    res = super(inspection, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)

    categories = self.env['inspection.category'].search([])

    all_fields = {}

    pages = """ """

    fields = """ <group string="Categories" style="font-size:13px; color:black;"> """

    if view_type == 'form':

        xml_code = res['arch']

        for c in categories:

            all_fields['category_id_' + str( c.name )

        xml_code = xml_code[:xml_code.find("<notebook/>")]+" "+fields+" "+xml_code[xml_code.find("<notebook/>")+len("<notebook/>"):]

        res['fields'] = dict(res['fields'].items() + all_fields.items())

        res['arch'] = xml_code

    return res

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ść
Multiple Treeview
python fields_view_get odoo
Awatar
Awatar
2
maj 16
5735
Save filtered tree view to load as it is at another time Rozwiązane
python odoo
Awatar
Awatar
Awatar
2
sie 25
3642
Private functions and public functions in odoo python Rozwiązane
python odoo
Awatar
Awatar
Awatar
Awatar
3
lut 25
5103
odoo ghost module
python odoo
Awatar
0
maj 24
46
Call python method from inherit_id attribute
python odoo
Awatar
Awatar
1
kwi 24
4404
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