我有這個XML規範的問題(odoo 9):XML上下文默認One2many在odoo9
the var "groups_ref" is a Many2many relation with res.groups.
<record id="some_id" model="ir.actions.act_window">
....
<field name="context">{'groups_ref': self.env.ref('security.basic_user')}</field>
....
</record>
XML Basic User from module security
<record id="basic_user" model="res.groups">
<field name="name">Base User</field>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
</record>
,給我一個錯誤:
NameError: self is not defined
我的問題是如何使用此xml d將默認值傳遞給One2many關係定義,我不想將它傳遞給py中的字段聲明。謝謝。
有關使用'REF( 'security.base_user')'是什麼? – CZoellner