This commit is contained in:
zman 2025-02-14 23:12:06 -05:00
parent 85329c232c
commit 012bb40a04

View File

@ -134,7 +134,7 @@ class PricingService:
elif tcg_low_shipping > 20: elif tcg_low_shipping > 20:
new_price = round(tcg_low_shipping * 1.0125, 2) new_price = round(tcg_low_shipping * 1.0125, 2)
else: else:
new_price = round(tcg_low_shipping * 1.10, 2) new_price = round(tcg_low_shipping * 1.08, 2)
# if new price is less than half of market price, set to 90% market # if new price is less than half of market price, set to 90% market
if new_price < (tcg_market_price / 2): if new_price < (tcg_market_price / 2):
new_price = round(tcg_market_price * 0.85, 2) new_price = round(tcg_market_price * 0.85, 2)