[FIX] res.users: avatar: added right to modify avatar and avatar_big for users.

bzr revid: tde@openerp.com-20120406073940-5nccdpf7nu78kx59
This commit is contained in:
Thibault Delavallée 2012-04-06 09:39:40 +02:00
parent 4788b35a03
commit 4a1ad426a4
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@
</group>
<group col="2" colspan="1">
<separator string="Avatar" colspan="2"/>
<field name="avatar" widget='image' nolabel="1" colspan="2" on_change="onchange_avatar(avatar)"/>
<field name="avatar" widget='image' nolabel="1" colspan="2" on_change="onchange_avatar(avatar)" readonly="0"/>
</group>
</group>
<group name="default_filters" colspan="2" col="2">

View File

@ -375,7 +375,7 @@ class users(osv.osv):
}
# User can write to a few of her own fields (but not her groups for example)
SELF_WRITEABLE_FIELDS = ['menu_tips','view', 'password', 'signature', 'action_id', 'company_id', 'user_email', 'name']
SELF_WRITEABLE_FIELDS = ['menu_tips','view', 'password', 'signature', 'action_id', 'company_id', 'user_email', 'name', 'avatar', 'avatar_big']
def write(self, cr, uid, ids, values, context=None):
if not hasattr(ids, '__iter__'):