I know this sounds counter-intuitive to e-commerce but it's a requirement my client needs.
Is there a way to enforce a maximum quantity a customer can order of a product?
We're using ML v9.0.1.3 32bit w/ source
I know this sounds counter-intuitive to e-commerce but it's a requirement my client needs.
Is there a way to enforce a maximum quantity a customer can order of a product?
We're using ML v9.0.1.3 32bit w/ source
nothing out of the box, but that's pretty much easy to do. If you're familar with how the appconfig: CartMinOrderAmount work, then you could do similar thing also.
Couple of hints:
- Add an appconfig: CartMinOrderQty
- Modify shoppingcart.aspx.cs
- go to InitializePageContent() method
- add Decimal MinOrderQty = AppLogic.AppConfigUSDecimal("CartMinOrderQty");
- mimic the MeetsMinimumOrderAmount() method
Or you could just use the existing Restricted Quantities functionality...
TTFN
BFG