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

I need the id of a group for a domain in a view. How can I resolve the database id from the xml id?

[('groups_id', '=', %(module.group_name)d)] 

does not work.

In python one could use the ir.model.datas get_object method to get the id e.g. But that does not help in the xml file.

Help is appreciated.

 

Thanks.

頭像
捨棄
最佳答案

What you probably want is using `groups` attribute of field tag for field visibility:

    <field name="a_field" groups="module.group_name">

 

Otherwise, to use XML ID in domain, you could try:

     domain="[('groups_id', '=', ref(module.group_name))]"

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
10月 21
9014
0
4月 16
3776
1
8月 15
5915
0
3月 15
4765
5
5月 24
25104