Comment 0 for bug 1094212

Revision history for this message
Joannes Landy (j-landy) wrote :

The search function of the partner view don't work when there is a acces rules change.

For example, in a multi compagnies context: if there is a access rules change on "res.partner company" like:
only see the partner of your company and his childs: ['|',('company_id','child_of',[user.company_id.id]),('company_id','=',False)]

Before the access rules was : "res.partner company" ['|','|',('company_id.child_ids','child_of',[user.company_id.id]),('company_id','child_of',[user.company_id.id]),('company_id','=',False)]

the access rules work fine, a user in a new company can see only the partner of his company, BUT

the search function of the tree form always return an "access denied", so it's not possible to filter the partner list.
The message is:

Access Denied
The requested operation cannot be completed due to security restrictions. Please contact your system administrator.
(Document type: Partner, Operation: read)

It's problably the "name_search" function in partner class who don't take care of access rule.