Skip to content

Commit

Permalink
fixup! fixup! [FIX] website_event_attendee_signup: исправили шаблон, …
Browse files Browse the repository at this point in the history
…который забыли переписать при миграции
  • Loading branch information
em230418 committed Dec 16, 2024
1 parent ba701e6 commit 7f91a92
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions website_event_attendee_signup/models/event_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def _update_attendee_partner_id(self, vals):
return vals

login = attendee_partner.email
if not login:
return vals

user = Users.search([("login", "=ilike", login)])
if user:
# already has user with given address
Expand Down

0 comments on commit 7f91a92

Please sign in to comment.