Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

how to pass default value with fields_view_get

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
pythonfields_view_getdefault_getfields_getodoo
2 Respuestas
1984 Vistas
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
Descartar
Avatar
Gracious Joseph
Mejor respuesta

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
Descartar
Avatar
Nikhil Dhiman
Mejor respuesta

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
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
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 Resuelto
python odoo
Avatar
Avatar
Avatar
2
ago 25
3637
Private functions and public functions in odoo python Resuelto
python odoo
Avatar
Avatar
Avatar
Avatar
3
feb 25
5095
odoo ghost module
python odoo
Avatar
0
may 24
46
Call python method from inherit_id attribute
python odoo
Avatar
Avatar
1
abr 24
4398
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Sitio web hecho con

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