WIP: 490_View_refactoring #491

Draft
mpeltriaux wants to merge 33 commits from 490_View_refactoring into master
Showing only changes of commit ed5d571704 - Show all commits

View File

@ -171,8 +171,8 @@ class NewCompensationForm(AbstractCompensationForm,
def is_valid(self):
valid = super().is_valid()
intervention = self.cleaned_data.get("intervention", None)
valid &= not intervention.is_recorded
if not valid:
if intervention.is_recorded:
valid &= False
self.add_error(
"intervention",
_("This intervention is currently recorded. You cannot add further compensations as long as it is recorded.")