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"/>
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati| Post correlati | Risposte | Visualizzazioni | Attività | |
|---|---|---|---|---|
|
2
set 23
|
10492 | |||
|
Domain with inherited field
Risolto
|
1
ott 22
|
4511 | ||
|
0
ott 20
|
3974 | |||
|
1
ago 17
|
4506 | |||
|
8
feb 17
|
9116 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.