Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
4 Відповіді
2249 Переглядів

Hi Odooers,

I want  "Btn eval" to be invisible when "QA Checking products" field (a many2many field) is empty. 

With codes below, the "Btn eval" is still showing. Please correct me if I am wrong in the xml codes

invisible="qa_check_product_ids == False"






Аватар
Відмінити
Найкраща відповідь

Hello,

You could try this instead:invisible="not qa_check_product_ids"


Hope it helps.

Аватар
Відмінити
Автор Найкраща відповідь

Thank all of you. I use the following and now the result is expected.

invisible="not qa_check_product_ids"


Аватар
Відмінити

Nice, up vote the answer or mark best one maybe

Найкраща відповідь

You can try

"not qa_check_product_ids". Normally relation field like many2one or x2m will use "not"

Аватар
Відмінити
Найкраща відповідь

Hi,

The expression qa_check_product_ids == False won't work as expected because many2many fields are represented by a list, and an empty list is not equal to False. Instead, you need to check if the list is empty.

You can try it like that:


Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
серп. 25
327
4
трав. 25
2804
2
трав. 25
6234
1
бер. 25
1873
4
бер. 25
4795