I'm using the following code to update the quantity.
if (orderLine.Quantity > 99)
{
orderLine.Quantity = 99; orderLine.Save();
} After this the order.Price.PriceWithVAT is still calculated for 100 products. However other order properties like PriceBeforeFees, OrderLines.Price are reflected correctly.
Should i update the quantity in a different way so it does recalc or is it a bug? Kind regards, Remi