Fix wrong tests/permissions

This commit is contained in:
2024-12-23 02:37:41 +01:00
parent ccf5118c9d
commit 7f6fd7dc47
2 changed files with 6 additions and 3 deletions

View File

@ -167,7 +167,10 @@ class CounterClick(CounterTabsMixin, CanViewMixin, SingleObjectMixin, FormView):
if not self.customer.can_buy or self.customer.user.is_banned_counter:
return redirect(obj) # Redirect to counter
if obj.type == "OFFICE" and not obj.club.has_rights_in_club(request.user):
if obj.type == "OFFICE" and (
obj.sellers.filter(pk=request.user.pk).exists()
or not obj.club.has_rights_in_club(request.user)
):
raise PermissionDenied
if obj.type == "BAR" and (