Skip to content
Snippets Groups Projects
Commit 9cec0165 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-165: Fixing some issues when checking for illegal updates

parent c2fa319f
No related branches found
No related tags found
1 merge request!239GREG-165: Part 1 : Handle missing information from Feide
Pipeline #109558 passed
...@@ -362,6 +362,10 @@ class InvitedGuestView(GenericAPIView): ...@@ -362,6 +362,10 @@ class InvitedGuestView(GenericAPIView):
illegal_field_updates = [] illegal_field_updates = []
for changed_field in changed_fields: for changed_field in changed_fields:
if changed_field == "consents":
# Consents can be inserted and updated, no need for further checks on them
continue
try: try:
attribute = getattr(person, changed_field) attribute = getattr(person, changed_field)
except AttributeError: except AttributeError:
...@@ -376,7 +380,12 @@ class InvitedGuestView(GenericAPIView): ...@@ -376,7 +380,12 @@ class InvitedGuestView(GenericAPIView):
# No existing value for field, so allow change # No existing value for field, so allow change
continue continue
else: else:
if attribute != person_data[changed_field]: # Quick fix to be able compare date with string
if changed_field == "date_of_birth":
if attribute.strftime("%Y-%m-%d") != person_data[changed_field]:
# There is an existing date value
illegal_field_updates.append(changed_field)
elif attribute != person_data[changed_field]:
# There is an existing value # There is an existing value
illegal_field_updates.append(changed_field) illegal_field_updates.append(changed_field)
......
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