跳至內容
選單
此問題已被標幟
4 回覆
12359 瀏覽次數

Hi all,

how to use many2one field in xml attrs like this <field name="grade" attrs="{'invisible':[('many2onefield,'=',value]}"/>

Thanks is advance.

頭像
捨棄
最佳答案

Hi Supreeth,

Ideally the attrs will be evaluated like [('integer','=','string')] so this will not work.

better create a related field  for the many2one and use the newly created field in the attrs

ex:

many2onefield_name = fields.Char(related="many2onefield.name", string="Name")

<field name="grade" attrs="{'invisible':[('many2onefield_name,'=',value]}"/>


頭像
捨棄
最佳答案

I have perfect example atts for M2O field. can you see please below Answer


<field name="field_name" atts={'operation':domain}>

operation:

Like:

invisible

readonly

Domain:

[(field_name,'operator',Value)]


example:

<field name="name" attrs={'readonly':[('name','=','murugan')]}/>

頭像
捨棄
最佳答案

Hello,


A new related field is the only way also for the latest version 14.0.

No need to set the Store=True, it won't store in the database and you could utilize it in the attrs invisible.


<field name="grade" attrs="{'invisible':[('new_related_field,'=',value]}"/>


Otherwise in demo data this is possible,    
    

<field name="department_id" model="hr.department" eval="obj().env.ref('hr.employee_admin').department_id.id"/>
頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
1月 25
29463
0
12月 18
5657
6
12月 22
15561
0
2月 20
3070
2
1月 20
7523