OpenERP v7 - 如何将crm电话通话记录限制在用户公司?

时间:2013-02-28 01:29:17

标签: crm openerp

在OpenERP v7中,我尝试向某些osv对象添加一些域力。除crm.phonecall对象外,所有这些都正常工作。这是我为限制访问而添加的代码。

<record id="crm_phonecall_comp_rule" model="ir.rule">
<field name="name">CRM Phone Call MutliCompany</field>
<field model="ir.model" name="model_id" ref="crm.model_crm_phonecall"/>
<field eval="True" name="global"/>
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',    [user.company_id.id])]</field>
</record>

这些代码不起作用......我的代码有什么问题,或者这是V7中针对crm.phonecall对象的已知问题?

此致 鼠尾草

0 个答案:

没有答案