test #347

Merged
mpeltriaux merged 22 commits from test into master 2023-09-15 13:12:41 +02:00
Showing only changes of commit 2fa8783fd9 - Show all commits

View File

@ -43,6 +43,7 @@ class CheckModalForm(BaseModalForm):
"""
deductions = self.instance.deductions.all()
valid = True
for deduction in deductions:
checker = deduction.account.quality_check()
for msg in checker.messages:
@ -50,8 +51,8 @@ class CheckModalForm(BaseModalForm):
"checked_comps",
f"{deduction.account.identifier}: {msg}"
)
return checker.valid
return True
valid &= checker.valid
return valid
def _are_comps_valid(self):
""" Performs validity checks on all types of compensations