This commit is contained in:
zman 2025-02-14 23:16:48 -05:00
parent 012bb40a04
commit 3f8a99b61a

View File

@ -130,7 +130,7 @@ class PricingService:
elif tcg_market_price < 0.25:
new_price = 0.25
elif tcg_low < 5 or tcg_low_shipping < 5:
new_price = round((tcg_low + 1.27) * .8, 2)
new_price = round(tcg_low+((tcg_market_price-tcg_low)/2), 2)
elif tcg_low_shipping > 20:
new_price = round(tcg_low_shipping * 1.0125, 2)
else: