콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
11 답글
32348 화면

Hello, I have Odoo 8.

I have added some fields to sale.order.line model and I added them to the sale.order form view, in which I can create new sale orders.

I want to hide the tree fields if the customer name is 'XYZ'. How can I specify this in the xml view? Because the 'name' of the customer is a attribute of res.partner model, and the 'partner_id' attribute is a field of sale.order. Then, the fields I want to hide are from sale.order.line model.

Thanks!

아바타
취소

fields in a line or complete line ?

작성자

Fields in a line

작성자

I want to hide complete column of the tree

베스트 답변

This code is used to hide fields in one2many(tree) in odoo11

<field name="my_field" attrs="{'column_invisible': [('parent.field_name','=',False)]}" />


this type of code only works gives 'parent' in condition
아바타
취소

You found the holy grain! This solutions works as a charm, thank you!!

베스트 답변

In Tree view doesn't hide complete column when we use attrs="{'invisible':[('partner_name', '!=', 'XYZ')]}", I found it only hides the data/content in that column. So I tried to using invisible="context.get('partner_name') != 'XYZ'" instead of above one. It hides the complete column in Tree view. I hope it will help you.

아바타
취소
베스트 답변

try to add this code in a new module to install :

python code with new api v8 :

from openerp import models, fileds, api

 

class SaleOrderLine(models.Model):

    _inherit = 'sale.order.line'

    partner_name = fields.Char(_get_partner_order_name, string="Partner order name")

    @api.one

    @api.depends('order_id', 'order_id.partner_id')

    def _get_partner_order_name(self):

        self.ensure_one()

        self.partner_name = self.order_id.partner_id.name or ''

 

xml : hide column price_unit

?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="view_order_hide_columns_form" model="ir.ui.view">
            <field name="name">sale.order.hide.columns.form</field>
            <field name="model">sale.order</field>
            <field name="inherit_id" ref="sale.view_order_form"/>
            <field name="arch" type="xml">
                <xpath expr="//field[@name='order_line']/tree/field[@name='product_id'] position="after">
                    <field name="partner_name" invisible="1"/>
                <xpath expr="//field[@name='order_line']/tree/field[@name='price_unit'] position="attributes">
                    <attribute name="attrs">{'invisible': [('partner_name', '=', 'XYZ')]}</attribute>
                </xpath>

        </record>
    </data>
</openerp>

 

Bye

아바타
취소
작성자

It works fine, except by the hiding of the field. My attribute is: attrs="{'invisible':[('partner_name', '!=', 'XYZ')]}" but if the partner_name is XYZ, the field is still invisibile. Why?

작성자

If I put operator '=' works correctly. If the partner_name is XYZ, then hide the field. But if I put '!=' not works, if the partner_name isn't XYZ the field is still invisible.

작성자

I solved the problem. Is there any way to hide the entire column of the tree? With the invisibiel attr the field is not editable, but the column is still there.

in sale.order, add a function field stored to get partner name partner_name. in view duplicate field order_line with form and tree; and in this second tree, remove colums you don't want. Add in two fiels order_line respectively attrs="{'invisible': [('partner_name', '=', 'value1')]}" attrs="{'invisible': [('partner_name', 'not in', ['value1')]]}" depending the tree you want to display. Bye

In Tree view does it hide complete column when we use attrs="{'invisible':[('partner_name', '!=', 'XYZ')]}", I found it only hides the data/content in that column. So I tried to using invisible="context.get('partner_name') != 'XYZ'" instead of above one. It hides the complete column in Tree view. I hope it will help you.

관련 게시물 답글 화면 활동
7
5월 20
6599
0
4월 16
3162
2
4월 15
6140
1
3월 15
4144
3
6월 21
9608