Skip to content
Snippets Groups Projects
Commit 4d74d9ef authored by Olivier Dony's avatar Olivier Dony
Browse files

[FIX] auth_signup: discard signup values that may overwriting existing info

parent ba4454cc
No related branches found
No related tags found
No related merge requests found
......@@ -201,6 +201,14 @@ class res_users(osv.Model):
partner.write({'signup_token': False, 'signup_type': False, 'signup_expiration': False})
partner_user = partner.user_ids and partner.user_ids[0] or False
# avoid overwriting existing (presumably correct) values with geolocation data
if partner.country_id or partner.zip or partner.city:
values.pop('city', None)
values.pop('country_id', None)
if partner.lang:
values.pop('lang', None)
if partner_user:
# user exists, modify it according to values
values.pop('login', None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment