Skip to Content
Menú
This question has been flagged
2 Respostes
32652 Vistes

I have many 2one field like this <field name="contract_id" widget="selection" domain="[('partner_id','=',partner_id),('state','=','draft')]" required="1"/>

i am getting invalid architecture problem how to solve the issue

Avatar
Descartar
Best Answer

Unfortunately widget="selection" don't support dinamic domain.

If you need widget selection then remove from domain non static value like partner_id:

<field name="contract_id" widget="selection" domain="[('state','=','draft')]" required="1"/>

If you need domain with dinamic value you have to remove widget="selection":

<field name="contract_id" domain="[('partner_id','=',partner_id),('state','=','draft')]" required="1"/>
Avatar
Descartar
Best Answer

u dont have to use widget="selection" just romove it and in py file u have to declare yr colum as 'contract_id': fields.selection()

Avatar
Descartar
Autor

how to use many2one to fields.selection ?

Related Posts Respostes Vistes Activitat
2
de set. 23
9716
1
d’oct. 22
3848
0
d’oct. 20
3260
1
d’ag. 17
3722
8
de febr. 17
8395