From 8155ba2f8d34599b044833b476de0ae5b9522213 Mon Sep 17 00:00:00 2001 From: zman Date: Mon, 14 Apr 2025 21:37:11 -0400 Subject: [PATCH] a --- app/services/pricing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/services/pricing.py b/app/services/pricing.py index 1eac534..d6f0287 100644 --- a/app/services/pricing.py +++ b/app/services/pricing.py @@ -184,11 +184,11 @@ class PricingService: # Adjust markups if quantity is high if quantity > 3: adjusted_bands = {} - increment = Decimal('0.10') + increment = Decimal('0.20') for markup, price_range in zip(markup_bands.keys(), markup_bands.values()): new_markup = Decimal(str(markup)) + increment adjusted_bands[new_markup] = price_range - increment -= Decimal('0.01') + increment -= Decimal('0.02') markup_bands = adjusted_bands #if FREE_SHIPPING: