Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
4 Răspunsuri
2216 Vizualizări

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"






Imagine profil
Abandonează
Cel mai bun răspuns

Hello,

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


Hope it helps.

Imagine profil
Abandonează
Autor Cel mai bun răspuns

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

invisible="not qa_check_product_ids"


Imagine profil
Abandonează

Nice, up vote the answer or mark best one maybe

Cel mai bun răspuns

You can try

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

Imagine profil
Abandonează
Cel mai bun răspuns

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:


Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
aug. 25
238
4
mai 25
2781
2
mai 25
6205
1
mar. 25
1846
4
mar. 25
4776