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

Hello, I have Odoo 8. I want to show a field only if the value of another field is XYZ. My xml definition is:

<field name="fecha" attrs="{'invisible':[('nombre_cliente', '!=', 'XYZ')]}" />

In this case, the field is invisible if the 'nombre_cliente' is XYZ or if it is another value.

If I put: <field name="fecha" attrs="{'invisible':[('nombre_cliente', '=', 'XYZ')]}" /> it works fine because if the name is XYZ the field is invisible and in another cases the field is visible.

What is my mistake? Thanks!

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

try to use <> instead of !=

OR

<field name="fecha" attrs="{'invisible':[('nombre_cliente', 'not in', [ 'XYZ' ])]}" />

-the equivalent code with "not in" operator

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

Not works (I try '<>')

Tác giả

With special caracters

is XYZ a really string like 'XYZ' ?

I updated answer and added another option of equivalent code, if problem in != operator replacing it with equivalent code may help. please try second one with "not in" and pay attention that in this case you've to wrap XYZ in Square Brackets [ ]...

Tác giả

It works, thanks!

Bài viết liên quan Trả lời Lượt xem Hoạt động
7
thg 5 20
6428
0
thg 4 16
3084
2
thg 10 15
21335
2
thg 4 15
5980
0
thg 3 15
3420