P5-3248 - Price adjust for posters US/GLOBAL
This commit is contained in:
+6
-1
@@ -185,7 +185,12 @@ def poster_price(width, height, market, hanger=True, designer=None, reseller=Non
|
|||||||
|
|
||||||
price *= market.price_adjustments
|
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:
|
if designer:
|
||||||
price *= (float(designer.pricepremium) / 100) + 1
|
price *= (float(designer.pricepremium) / 100) + 1
|
||||||
|
|||||||
Reference in New Issue
Block a user