Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
31817 Widoki

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

Awatar
Odrzuć
Najlepsza odpowiedź

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"/>
Awatar
Odrzuć
Najlepsza odpowiedź

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()

Awatar
Odrzuć
Autor

how to use many2one to fields.selection ?

Powiązane posty Odpowiedzi Widoki Czynność
2
wrz 23
8844
1
paź 22
3133
0
paź 20
2709
1
sie 17
2989
8
lut 17
7646