İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

how to pass default value with fields_view_get

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
pythonfields_view_getdefault_getfields_getodoo
2 Cevaplar
1981 Görünümler
Avatar
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
Avatar
Vazgeç
Avatar
Gracious Joseph
En İyi Yanıt

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
Avatar
Vazgeç
Avatar
Nikhil Dhiman
En İyi Yanıt

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
Avatar
Vazgeç
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Multiple Treeview
python fields_view_get odoo
Avatar
Avatar
2
May 16
5734
Save filtered tree view to load as it is at another time Çözüldü
python odoo
Avatar
Avatar
Avatar
2
Ağu 25
3637
Private functions and public functions in odoo python Çözüldü
python odoo
Avatar
Avatar
Avatar
Avatar
3
Şub 25
5095
odoo ghost module
python odoo
Avatar
0
May 24
46
Call python method from inherit_id attribute
python odoo
Avatar
Avatar
1
Nis 24
4398
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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