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: