Hi,
Is it possible to add a country code as the deliverycountry code in an OrderTemplateExtender? I'm working on a project where logged in users can order products. They don't have the ability to alter their country of origin on the website, but they have to pay a certain fee according to the country of origin. I'm trying to tell Dynamicweb to use the countrycode like this:
this.Order.DeliveryCountry = countryCode; this.Order.DeliveryCountryCode = countryCode; this.Order.CustomerCountry = countryCode; this.Order.CustomerCountryCode = countryCode; this.Order.ShippingMethodCountryCode = countryCode;
Am I missing something here? The deliveryfee on the ShopingCart page is 3,50, which is the default; I would expect it to return 4,50. Does anybody got any experience in doing something like above?
Thanks!