From 012bb40a04b869ea918d3721584fb853cf539b8a Mon Sep 17 00:00:00 2001 From: zman Date: Fri, 14 Feb 2025 23:12:06 -0500 Subject: [PATCH] 3 --- app/services/pricing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/pricing.py b/app/services/pricing.py index ae5204c..f27f2be 100644 --- a/app/services/pricing.py +++ b/app/services/pricing.py @@ -134,7 +134,7 @@ class PricingService: elif tcg_low_shipping > 20: new_price = round(tcg_low_shipping * 1.0125, 2) 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 < (tcg_market_price / 2): new_price = round(tcg_market_price * 0.85, 2)