Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
4 Trả lời
11890 Lượt xem

how to hide column in tree view on state changes??i have tried attrs but not working..???

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi

confirm your attrs like this :

<field name="field_name" attrs="{'invisible':[('state','=','done')]}"/>

it will work fine :)

Thanks

Ảnh đại diện
Huỷ bỏ
Tác giả

i have tried this in form as well as in tree view,it is not working in tree view but working fine in form view..!! Any idea???

ATTRs does'nt work in tree view

Câu trả lời hay nhất

Hi,

see answer Francesco Apruzzese you can't hide/show field in tree.

you can use invisible but 0 or 1 :

<field name="field_name"  invisible="0" />    -- show
<field name="field_name"  invisible="1" />    -- hide

but if you can customize your tree you can use colors .color red if state=='failure', blue if state=='draft'...

<tree string="tree_string" colors="red:state=='failure';blue:state=='draft'">
Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

When you have a tree view you can't hide/show field. This is normal because in a tree can be a lot of record with different datas inside. If you want hide a field in a tree in relation to status, you can have some field with state A and other with state B. What can OpenERP do in this case?

So, you request is invalid because attrs work fine in form but is not usable in tree to show/hide field.

Ảnh đại diện
Huỷ bỏ
Tác giả

Hello , thank you for giving quick response,,,you are saying that attrs doesn't work in tree view than how can i hide columns on state changes???? Is there any way instead of attrs..!?? Thank you.

No, I've expose you than is impossible. In tree you can't hide/show field in relation to other field value

Câu trả lời hay nhất

Hello,

I think you can put a conditional base filter to hide field in tree view..

Example :

<field name="origin" invisible="context.get('picking_type', False) in ['in']"/>

Thanks.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
4
thg 12 23
21067
3
thg 7 25
9455
3
thg 4 25
5266
0
thg 2 25
879
2
thg 10 24
3872