Adjust UK exchange rate and shipping
From MediaSell
|
The following script will allow you to adjust the exchange rate and shipping stipend for Amazon.co.uk. By default the script will use your base price multiplied by 2.0 for the exchange rate, then it will add $6.00 to the new price to help cover shipping. These amounts can be changed as desired.
EXCHANGE_UK = 2.0;
SHIPPING_UK = 6.00;
price = item.basePrice;
if (marketplace == 'AmazonUK') {
price = (price + SHIPPING_UK) / EXCHANGE_UK;
}
return price;
|

