Skip to content
Snippets Groups Projects
Commit 247632ab authored by Fabian Krüger's avatar Fabian Krüger
Browse files

update backend: now support annullateCharge function

parent e18b43ac
No related branches found
No related tags found
No related merge requests found
......@@ -172,15 +172,14 @@ class PurchaseLogic:
# warning: summertime/wintertime currently is not respected in the following calculations. This should be
# implemented to avoid non-annullable transactions in the lost hour between summer- and wintertime
annullable_time = config['T_ANNULLABLE_PURCHASE_M']
now = datetime.now()
time_limit = datetime.now() - timedelta(minutes=annullable_time)
timezone = pytz.timezone('Europe/Berlin')
time_limit = timezone.localize(time_limit)
print(purchase_id)
purchase = list(Purchase.objects.filter(id=purchase_id))[0]
purchase_time = purchase.time_stamp
print("purchase_id:", purchase.id, "time_limit:", time_limit, "purchase_time", purchase_time, "valid:",
time_limit > purchase_time)
if time_limit >= purchase_time:
raise PurchaseNotAnnullable()
......@@ -188,7 +187,6 @@ class PurchaseLogic:
user = list(User.objects.filter(id=purchase.user.id))[0]
purchase.annullate()
user.updateMoney(purchase.price)
print("user_id:", user.id, "purchase_id:", purchase.id, "user.money:", user.money)
class ChargeLogic:
......@@ -253,3 +251,24 @@ class ChargeLogic:
@staticmethod
def __updateUserMoney(user, amount):
user.updateMoney(amount)
@staticmethod
def annullateCharge(charge_id):
# warning: summertime/wintertime currently is not respected in the following calculations. This should be
# implemented to avoid non-annullable transactions in the lost hour between summer- and wintertime
annullable_time = config['T_ANNULLABLE_CHARGE_M']
now = datetime.now()
time_limit = datetime.now() - timedelta(minutes=annullable_time)
timezone = pytz.timezone('Europe/Berlin')
time_limit = timezone.localize(time_limit)
charge = list(Charge.objects.filter(id=charge_id))[0]
if time_limit > charge.time_stamp:
raise ChargeNotAnnullable()
with transaction.atomic():
user = list(User.objects.filter(id=charge.user.id))[0]
charge.annullate()
user.updateMoney((-1) * charge.amount)
......@@ -40,6 +40,10 @@ class Charge(models.Model):
amount = models.DecimalField(max_digits=6, decimal_places=2)
annullated = models.BooleanField(null=False)
def annullate(self):
self.annullated = True
self.save()
class Purchase(models.Model):
token = models.BigIntegerField(null=False, unique=True)
user = models.ForeignKey('user', on_delete=models.CASCADE, null=False)
......
......@@ -11,3 +11,8 @@ class NotAnnullable(Exception):
class PurchaseNotAnnullable(Exception):
def __init__(self):
super().__init__("Einkauf ist nicht annullierbar!")
class ChargeNotAnnullable(Exception):
def __init__(self):
super().__init__("Aufladung ist nicht annullierbar")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment