Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

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

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
treeviewcolumsodoo 17
2 Replies
3905 Rodiniai
Portretas
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
Portretas
Atmesti
Sonny
Autorius

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
Autorius

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'))

Portretas
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

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
Portretas
Atmesti
Portretas
Sahar Dagher
Best Answer

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

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

Registracija
Related Posts Replies Rodiniai Veikla
How can I add a small dashboard above a tree view in Odoo 17?
views treeview listview dashboard odoo 17
Portretas
Portretas
1
rugs. 25
821
Send Email after payment creted for invoice
odoo 17
Portretas
Portretas
Portretas
2
rugs. 25
2497
Why Doesn't the Hamburger Menu Show for My Custom Group User Despite Adding ir_ui_menu Access Right?
odoo 17
Portretas
Portretas
1
geg. 25
2042
How to Align Left [float, integer] Fields in Tree View in Odoo
treeview
Portretas
Portretas
Portretas
Portretas
3
bal. 25
5901
Como heredo de un modal en Odoo 17
odoo 17
Portretas
0
saus. 25
1532
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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