Hi,
On the cart we can configure "A check for stock status" which will not allow the customer to add more than the stock level to the cart.
I now have a requirement that the customer should still be allowed to add any amount, but they should receive a message stating that everything above the current stock level will be registered as a back order. I guess I cannot change the behaviour of this since it is a validation?
Would I be able to get there changing the template and for example looping through all order lines comparing order qty > stock qty for all products?
@foreach (LoopItem orderline in GetLoop("OrderLines")) {
Thanks,
Justin