Compare commits

..

2 Commits

Author SHA1 Message Date
37bcab73f0
Improve logging in tasks.py
All checks were successful
Django CI/CD / test (push) Successful in 1m9s
Django CI/CD / build-and-push (push) Successful in 2m50s
2025-03-22 13:46:19 +01:00
1a8338c0f8
Fix a bug in convert_prices
Prevents actually finding any new prices
2025-03-22 13:45:44 +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 = ""
self.converted_currency = None
super().save(*args, **kwargs)