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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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
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"/>
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()
how to use many2one to fields.selection ?
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
2
Sep 23
|
9499 | ||
Domain with inherited field
Diselesaikan
|
|
1
Okt 22
|
3683 | |
|
0
Okt 20
|
3095 | ||
|
1
Agu 17
|
3559 | ||
|
8
Feb 17
|
8168 |