We got a webshop running, where specific customer got their own prices, but if they start shopping before logging in - the orderline price is just the default.
It isn't updated the product price delivered from our price provider.
Is it possible to update these prices using DW standard - checkboxes? - if not, where and how should we change these prices?
I am thinking of something like this, but where to run this?:
foreach (OrderLine orderLine in order.OrderLines) { orderLine.SetUnitPrice(orderLine.Product.Price, true); }