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): def is_valid(self):
valid = super().is_valid() valid = super().is_valid()
intervention = self.cleaned_data.get("intervention", None) intervention = self.cleaned_data.get("intervention", None)
valid &= not intervention.is_recorded if intervention.is_recorded:
if not valid: valid &= False
self.add_error( self.add_error(
"intervention", "intervention",
_("This intervention is currently recorded. You cannot add further compensations as long as it is recorded.") _("This intervention is currently recorded. You cannot add further compensations as long as it is recorded.")