Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
16079 มุมมอง

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))]"

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
ต.ค. 21
9092
0
เม.ย. 16
3879
1
ส.ค. 15
5984
0
มี.ค. 15
4835
5
พ.ค. 24
25228