Hi
I'm trying to create an order line by the API. I have done this:
var product = Dynamicweb.Ecommerce.Services.Products.GetProductById("95764469898", string.Empty, Context.LanguageID, false);
var ol = Dynamicweb.Ecommerce.Services.OrderLines.Create(order, product, 2.0, null, null);
ol.OrderLineType = OrderLineType.Fixed;
Dynamicweb.Ecommerce.Services.OrderLines.SetUnitPrice(ol, 240.00, true);
Dynamicweb.Ecommerce.Services.Orders.ForcePriceRecalculation(order);
Dynamicweb.Ecommerce.Services.Orders.Save(order);
But there is no orderline total on the order:
How do I get the orderline total?