[FIX] Fix of the last fix. Should avoid fixing on Friday.

bzr revid: tde@openerp.com-20120323140251-wki6runit0juqlwg
This commit is contained in:
Thibault Delavallée 2012-03-23 15:02:51 +01:00
parent 31e186687e
commit 14609fa2ed
1 changed files with 4 additions and 2 deletions

View File

@ -224,8 +224,10 @@ class users(osv.osv):
def _set_avatar(self, cr, uid, id, name, value, args, context=None):
if not value:
return {'value': {'avatar_big': value, 'avatar': value} }
return self.write(cr, uid, [id], {'avatar_big': self._avatar_resize(cr, uid, value, 540, 450, context=context)}, context=context)
vals = {'avatar_big': value}
else:
vals = {'avatar_big': self._avatar_resize(cr, uid, value, 540, 450, context=context)}
return self.write(cr, uid, [id], vals, context=context)
def _avatar_resize(self, cr, uid, avatar, height=180, width=150, context=None):
image_stream = io.BytesIO(avatar.decode('base64'))