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

Hi,

How to check that a Many2one field is filled or not in the .py and xml file 

Thanks

Аватар
Отменить

in your function check

if self.your_many2one_field:

do this

else:

do this

Лучший ответ

Hello

in  py file

if self.<M2O field>:
    # code


in xml file like on domain you can check 

  <field name="field2" domain="[('M2O_field', '!=', False)]"/>
Аватар
Отменить
Автор

thanks