We are working on TeaCommerce version 2.3.2 for Umbraco 7, added shipping calculator for recalculating order total after changing shipping settings, but I'm getting an error when try to save order:
try
{
var order = TC.GetOrder(Model.StoreId, Model.Id);
order.Properties.AddOrUpdate("glsReponse", resultGLS);
order.Properties.AddOrUpdate("glsShippingCost", shipmentPrice.ToString());
order.Save();
}
catch (Exception exceptionSave)
{
LogHelper.Error<Exception>(exceptionSave.Message, exceptionSave);
}
In line order.Save() I'm getting an exception that can't fix
order.Save Error
Hello
We are working on TeaCommerce version 2.3.2 for Umbraco 7, added shipping calculator for recalculating order total after changing shipping settings, but I'm getting an error when try to save order:
In line order.Save() I'm getting an exception that can't fix
Thanks,
Alex
Upgrade to version 2.3.5 didn't help
Hi Alex,
Which exception is thrown on Order.Save()?
Hi Brian
Now we have very strange issue, that "CustomShippingCalculator" is recalculating locally and on the dev, but not working on the live, no exceptions.
Hi Brian
Thanks for the response.
is working on a reply...