Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
4 Vastaukset
2237 Näkymät

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"






Avatar
Hylkää
Paras vastaus

Hello,

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


Hope it helps.

Avatar
Hylkää
Tekijä Paras vastaus

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

invisible="not qa_check_product_ids"


Avatar
Hylkää

Nice, up vote the answer or mark best one maybe

Paras vastaus

You can try

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

Avatar
Hylkää
Paras vastaus

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:


Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
0
elok. 25
297
4
toukok. 25
2791
2
toukok. 25
6212
1
maalisk. 25
1853
4
maalisk. 25
4779