Log whether prices were adjusted
This commit is contained in:
parent
1abc17d8e9
commit
2c47ab3a0d
1 changed files with 3 additions and 0 deletions
|
@ -100,10 +100,13 @@ def update_product_pricings(src):
|
||||||
# Apply profit margin and divide by the number of units per sold packaging.
|
# Apply profit margin and divide by the number of units per sold packaging.
|
||||||
unit_price = prod_info.price * profit_margin / prod_info.units
|
unit_price = prod_info.price * profit_margin / prod_info.units
|
||||||
# Round up to 5ct.
|
# Round up to 5ct.
|
||||||
|
previous_price = product.price
|
||||||
product.price = (unit_price * 20).quantize(Decimal('1'), rounding=ROUND_UP) / 20
|
product.price = (unit_price * 20).quantize(Decimal('1'), rounding=ROUND_UP) / 20
|
||||||
|
|
||||||
lines_out.append(product.format_line())
|
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}')
|
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)
|
return '\n'.join(lines_out)
|
||||||
|
|
Loading…
Add table
Reference in a new issue