Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
4 Ответы
2218 Представления

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
265
4
мая 25
2782
2
мая 25
6207
1
мар. 25
1846
4
мар. 25
4777