Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How to hide a field/column inside a Tree based on conditions in Odoo 17

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
treeviewcolumsodoo 17
2 Răspunsuri
3865 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
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'))

Imagine profil
Cybrosys Techno Solutions Pvt.Ltd
Cel mai bun răspuns

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
Imagine profil
Abandonează
Imagine profil
Sahar Dagher
Cel mai bun răspuns

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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How can I add a small dashboard above a tree view in Odoo 17?
views treeview listview dashboard odoo 17
Imagine profil
Imagine profil
1
sept. 25
814
Send Email after payment creted for invoice
odoo 17
Imagine profil
Imagine profil
Imagine profil
2
sept. 25
2485
Why Doesn't the Hamburger Menu Show for My Custom Group User Despite Adding ir_ui_menu Access Right?
odoo 17
Imagine profil
Imagine profil
1
mai 25
2036
How to Align Left [float, integer] Fields in Tree View in Odoo
treeview
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
apr. 25
5896
Como heredo de un modal en Odoo 17
odoo 17
Imagine profil
0
ian. 25
1522
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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