[FIX] ir_action: read context with uid

bzr revid: chm@openerp.com-20130205160932-nqr1rk4t3l2yjhrz
This commit is contained in:
Christophe Matthieu 2013-02-05 17:09:32 +01:00
parent db35042ff8
commit 18985e673f
1 changed files with 2 additions and 1 deletions

View File

@ -272,7 +272,8 @@ class act_window(osv.osv):
dic = {
'active_model' : context.get('active_model', None),
'active_id' : context.get('active_id', None),
'active_ids' : context.get('active_ids', None)
'active_ids' : context.get('active_ids', None),
'uid' : uid,
}
for res in results:
if res.get('res_model', False):