Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
// Discounts
if (item.quantity >= 1000) {
    price = price * (1 - 0.15);
}
else if (item.quantity >= 500) {
    price = price * (1 - 0.10);
}

...

This is how a configured and enabled bulk price will look like in the Basket.

...

Info

The displayed quantities (1, 2, 5, 10, …) are pre-defined and cannot be changed.

Info

The Bulk Price display is only available in the new Basket design. See also
https://3yourmind.atlassian.net/l/cp/gLFQ0CE2

Setting a Minimum Order Price

...