delete() korrigiert

This commit is contained in:
Frederik Jaeckel 2022-10-15 13:28:46 +02:00
parent a521064ddf
commit fc3ddba3ab
4 changed files with 4 additions and 4 deletions

View file

@ -975,7 +975,7 @@ class Line(SecondCurrencyMixin, Workflow, ModelSQL, ModelView):
""" deny delete if book is not 'open' or wf is not 'edit'
"""
cls.check_permission_delete(lines)
return super(Line, cls).delete(lines)
super(Line, cls).delete(lines)
# end Line