diff --git a/api/lib/prices.py b/api/lib/prices.py index 5f94f6d..9af2980 100644 --- a/api/lib/prices.py +++ b/api/lib/prices.py @@ -185,7 +185,12 @@ def poster_price(width, height, market, hanger=True, designer=None, reseller=Non price *= market.price_adjustments - price += package_price(width, height, market) + # Price adjustment for high shipping costs to US and GLOBAL + if market.territory in ['US', 'EU']: + if width > 110: + price += 1100 + else: + price += 400 if designer: price *= (float(designer.pricepremium) / 100) + 1