Compare commits

..

2 Commits

Author SHA1 Message Date
7a52b59b3d
Improve logging in tasks.py
All checks were successful
Django CI/CD / test (push) Successful in 1m8s
Django CI/CD / build-and-push (push) Successful in 2m9s
2025-03-22 16:57:27 +01:00
0ce59a8cc6
Fix a bug in convert_prices
Prevents actually finding any new prices
2025-03-22 16:57:27 +01:00

View File

@ -212,7 +212,7 @@ class Purchase(models.Model):
or existing_purchase.price_currency != self.price_currency
):
self.converted_price = None
self.converted_currency = None
self.converted_currency = ""
super().save(*args, **kwargs)