[MERGE] ACL active

bzr revid: fp@tinyerp.com-20120929114335-b6urlellyzi2ldsq
This commit is contained in:
Fabien Pinckaers 2012-09-29 13:43:35 +02:00
commit 43e582504e
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ class ir_model_access(osv.Model):
LEFT JOIN ir_module_category c ON (c.id=g.category_id)
WHERE
m.model=%s AND
a.active IS true AND
(g.share IS NULL or g.share IS false) AND
a.perm_''' + access_mode, (model_name,))
return [('%s/%s' % x) if x[0] else x[1] for x in cr.fetchall()]