Add of verification on the counter

This commit is contained in:
lsacienne 2022-05-21 12:23:34 +02:00
parent 713cd92141
commit 712e7c8939
No known key found for this signature in database
GPG Key ID: 5B1939A93F7A6F48

View File

@ -22,7 +22,7 @@
#
#
from sith.settings import SITH_MAIN_CLUB
from sith.settings import SITH_COUNTER_OFFICES, SITH_MAIN_CLUB
from django.db import models
from django.utils.translation import ugettext_lazy as _
from django.utils import timezone
@ -344,6 +344,15 @@ class Counter(models.Model):
return [b.id for b in self.get_barmen_list()]
def can_refill(self):
"""
Show if the counter authorize the refilling with physic money
"""
if (
self.id in SITH_COUNTER_OFFICES
): # If the counter is the counters 'AE' or 'BdF', the refiling are authorized
return True
is_ae_member = False
ae = Club.objects.get(unix_name=SITH_MAIN_CLUB["unix_name"])
for barman in self.get_barmen_list():