bug fix check group attribute only for

'ir.actions.report.xml' 
'ir.actions.report.xml'

bzr revid: mga@tinyerp.com-9bf20dc74cb43011097151643a8580a15f8aaee5
This commit is contained in:
Mantavya Gajjar 2008-03-28 13:16:36 +00:00
parent b59f7e3f93
commit 6e7a625d27
1 changed files with 9 additions and 9 deletions

View File

@ -230,15 +230,15 @@ class ir_values(osv.osv):
res = filter(bool, map(lambda x: _result_get(x, keys), list(result)))
res2 = res[:]
for r in res:
if type(r) == type([]) and r[2].has_key('groups_id'):
groups = r[2]['groups_id']
if len(groups) > 0:
group_ids = ','.join([ str(x) for x in r[2]['groups_id']])
cr.execute("select count(*) from res_groups_users_rel where gid in (%s) and uid='%s'" % (group_ids, uid))
gr_ids = cr.fetchall()
print gr_ids
if not gr_ids[0][0] > 0:
res2.remove(r)
if r[2]['type'] == 'ir.actions.report.xml' or r[2]['type'] == 'ir.actions.report.xml':
if r[2].has_key('groups_id'):
groups = r[2]['groups_id']
if len(groups) > 0:
group_ids = ','.join([ str(x) for x in r[2]['groups_id']])
cr.execute("select count(*) from res_groups_users_rel where gid in (%s) and uid='%s'" % (group_ids, uid))
gr_ids = cr.fetchall()
if not gr_ids[0][0] > 0:
res2.remove(r)
# else:
# #raise osv.except_osv('Error !','You have not permission to perform operation !!!')
# res2.remove(r)