Table of Contents

Example of Quantity Based Discounts

This example demonstrates how to set up quantity based discounts using separate discount rules for each quantity threshold. It shows how to configure priority and enable “Stop additional discounts” to make sure only the correct discount is applied based on the quantity purchased.

Example

One Product:

  • Product 1: 100 DKK

Three discounts, each with a percentage-based product reward and a quantity condition:

  1. Buy 2 of Product 1 → get 20% off
  2. Buy 5 of Product 1 → get 25% off
  3. Buy 7 of Product 1 → get 30% off

Priority:

  • 20% discount → priority 2
  • 25% discount → priority 1
  • 30% discount → priority 0

Stop additional discounts:

  1. Stop additional discounts checked for the 25% discount
  2. Stop additional discounts checked for the 30% discount

Execution Order & Calculations

  1. Scenario 1: Customer buys 2 of Product 1
    • Only the 20% discount condition is met
    • Final price per product: 100.00 → 80.00 DKK
    • Total: 2 × 80.00 = 160.00 DKK
  2. Scenario 2: Customer buys 5 of Product 1
    • The 25% discount condition is met
    • Since it has higher priority than the 20% discount and "Stop additional discounts" is enabled, only the 25% discount is applied
    • Final price per product: 100.00 → 75.00 DKK
    • Total: 5 × 75.00 = 375.00 DKK
  3. Scenario 3: Customer buys 7 of Product 1
    • The 30% discount condition is met
    • Since it has the highest priority and "Stop additional discounts" is enabled, only the 30% discount is applied
    • Final price per product: 100.00 → 70.00 DKK
    • Total: 7 × 70.00 = 490.00 DKK
To top