From 2c47ab3a0d5d43583ca340521fd7d48d3cbf0fe6 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Sat, 20 Jan 2024 20:42:36 +0100 Subject: [PATCH] Log whether prices were adjusted --- inflatinator/revbank.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inflatinator/revbank.py b/inflatinator/revbank.py index e2b6c42..46bb3e3 100644 --- a/inflatinator/revbank.py +++ b/inflatinator/revbank.py @@ -100,10 +100,13 @@ def update_product_pricings(src): # Apply profit margin and divide by the number of units per sold packaging. unit_price = prod_info.price * profit_margin / prod_info.units # Round up to 5ct. + previous_price = product.price product.price = (unit_price * 20).quantize(Decimal('1'), rounding=ROUND_UP) / 20 lines_out.append(product.format_line()) logging.debug(f'Found "{prod_info.name}", buy €{prod_info.price/prod_info.units:.2f}, sell €{product.price:.2f}') + if product.price != previous_price: + logging.info(f'Adjusted "{prod_info.name}", €{previous_price:.2f} -> €{product.price:.2f}') return '\n'.join(lines_out)