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 hide a field/column inside a Tree based on conditions in Odoo 17

Suscribirse

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

Se marcó esta pregunta
treeviewcolumsodoo 17
2 Respuestas
3856 Vistas
Avatar
Sonny

I need to hide a column depending on a condition. This is a snippet of the Shipment Package Line model:

class ShipmentPackageLine(models.Model):
    _name = 'shipment.package.line'
    _rec_name = 'package'
    ...
    gross_column_air_hidden = fields.Boolean(compute='_compute_column_visibility')
   
    @api.depends('shipment_id.transport')
    def _compute_column_visibility(self):
        for line in self:
            if (line.shipment_id.transport == 'air'):
                line.gross_column_air_hidden = True
                _logger.info('Gross column set to invisible')
            else:
                line.gross_column_air_hidden = False
                _logger.info('Gross column set to visible')

Here is the Freight Shipment model:

class FreightShipment(models.Model):
    _name = 'freight.shipment'
    _inherit = ['mail.thread', 'mail.activity.mixin']
    ...
    transport = fields.Selection(([('air', 'Air'), ('ocean', 'Ocean'), ('land', 'Land')]),
                                 string='Transport Via')
    freight_packages = fields.One2many('shipment.package.line', 'shipment_id')


This is the XML view template snippet, please note that the model used in the Freight Shipment

<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data>
        <record model="ir.ui.view" id="freight_shipment_form_view">
            <field name="name">freight.shipment.form.view</field>
            <field name="model">freight.shipment</field>
            <field name="arch" type="xml">
                <form edit="stage_id != 5">
                ...
                <notebook>
                ...
                   <page string="Package Details">
                       <field name="freight_packages" nolabel="1" widget="one2many_list">
                          <tree string="Package">
                             <field name="gross_column_air_hidden" invisible="1" column_invisible="1"/>
                             <field name="name" />
                             <field name="seal_number"/>
                             <field name="package_type"/>
                             <field name="package" required="1"/>
                             <field name="container_type" optional="hide"/>
                             <field name="qty" sum="Total Qty."/>
                             <field name="volume" column_invisible="gross_column_air_hidden"/>
                             <field name="gross_weight" column_invisible="gross_column_air_hidden"/>
                             <field name="net_weight" sum="Total Net"/>
                             <field name="total_cbm" column_invisible="gross_column_air_hidden"/>
                             <field name="line_added" column_invisible="1"/>
                             <button name="action_insert_line_service" type="object" string="Add to Service"
                                 icon="fa-plus-square-o" invisible="line_added"/>
                          </tree>
                        ...


I got the error:

UncaughtPromiseError > OwlError
Uncaught Promise > An error occurred in the owl lifecycle (see this Error's "cause" property)
OwlError: An error occurred in the owl lifecycle (see this Error's "cause" property)
    Error: An error occurred in the owl lifecycle (see this Error's "cause" property)
        at handleError (.../web/assets/518164d/web.assets_web.min.js:916:101)
        at App.handleError (.../web/assets/518164d/web.assets_web.min.js:1559:29)
        at Fiber._render (.../web/assets/518164d/web.assets_web.min.js:941 :19)
        at Fiber.render (.../web/assets/518164d/web.assets_web.min.js:939:6)
        at ComponentNode. initiateRender (.../web.assets_web.min.js:1009:47)

Caused by: EvalError: Can not evaluate python expression: (bool(gross_column_air_hidden))
    Error: Name 'gross_column_air_hidden' is not defined
    EvalError: Can not evaluate python expression : (bool(gross_column_air_hidden))
    Error: Name 'gross_column_air_hidden' is not defined
        at evaluateExpr (.../web/assets/518164d/web.assets_web.min.js:3068:54)
        at evaluateBooleanExpr (.../web/assets/518164d/web.assets_web.min.js:3071:8)
        at Object .evalViewModifier (.../web/assets/518164d/web.assets_web.min.js:8599:154)
        at ListRenderer.evalColumnInvisible (.../web/assets/518164d/web.assets_web.min.js:9508:56)
        at .../web/assets/518164d/web.assets_web.min.js:9409:9
        at Array .filter (<anonymous>)
        at ListRenderer.getActiveColumns (.../web/assets/518164d/web.assets_web.min.js:9407:47)
        at ListRenderer.setup (.../web/assets/518164d/web.assets_web.min.js:9401:456)
        at ListRenderer.setup (.../web/assets/518164d/web.assets_web.min.js:17112:861)
        at ListRenderer.setup (.../web/assets/518164d/web.assets_web.min.js:17793:535)


If i used invisible instead of column_invisible, there would be no error, but the column will be shown


How can I fix this?


0
Avatar
Descartar
Sonny
Autor

I noticed that when I used 'invisible' instead of 'column_invisible', the values under the columns are hidden/not showing but the column is still showing. If I used 'column_invisible', it will prompt an error that the 'gross_column_air_hidden' is undefined even though I have defined it.

Sonny
Autor

Hi Sahar, I cannot comment on your reply since I do not have points. How should I solve this? If I use a field inside the tree from the shipment.package, it would not be recognize. For example, the transport field, it will show Caused by: EvalError: Can not evaluate python expression: (bool(transport == 'air'))
Error: Name 'transport' is not defined
EvalError: Can not evaluate python expression: (bool(transport == 'air'))

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

Hi,

If you're in a nested tree view inside a form, and the visibility of a column depends on a flag set in the parent form (like a boolean field), you must use the' parent.' prefix. Otherwise, Odoo will not find the variable, and the column might not behave as expected.


Use the code column_invisible="parent.gross_column_air_hidden" instead of column_invisible="gross_column_air_hidden" to ensure that the field's visibility is controlled by the parent context variable.


Hope it helps.

0
Avatar
Descartar
Avatar
Sahar Dagher
Mejor respuesta

The field used in the column_invisible must be belong to the shipment.package model not shipment.package.line,
to hide the column if the parent model meets a certain condition.

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
How can I add a small dashboard above a tree view in Odoo 17?
views treeview listview dashboard odoo 17
Avatar
Avatar
1
sept 25
810
Send Email after payment creted for invoice
odoo 17
Avatar
Avatar
Avatar
2
sept 25
2482
Why Doesn't the Hamburger Menu Show for My Custom Group User Despite Adding ir_ui_menu Access Right?
odoo 17
Avatar
Avatar
1
may 25
2032
How to Align Left [float, integer] Fields in Tree View in Odoo
treeview
Avatar
Avatar
Avatar
Avatar
3
abr 25
5892
Como heredo de un modal en Odoo 17
odoo 17
Avatar
0
ene 25
1521
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.

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