在odoo 8,你禁止以這種方式獲得了現場所有用戶(除配置權限):
<field name="date_deadline" position="attributes">
<attribute name="groups">base.group_system</attribute>
</field>
要創建權限的新組, 上odoo 8,你可以像新的類別創造紀錄:
<record model="ir.module.category" id="xxx">
<field name="name">Name of new category of permissions</field>
<field name="sequence">200</field>
</record>
您可以在res_groups創建組權限的新記錄:
<record model="res.groups" id="hide_only_admin_see">
<field name="category_id" ref="XXXX"/>
<field name="name">Usuario</field>
</record>
在CATEGORY_ID你必須寫你所創建的ir_module_category/overridiing。 在此之後,你必須創建你的ir.model.access.csv一行給出正確的權限你想,像模型:
"access_project.issue","project_issue access","model_project_issue","hide_only_admin_see",1,0,0,0
最後,進入線路和覆蓋諸如:
<field name="date_deadline" groups="your_custom_module.hide_only_admin_see" />