Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
1043 Vistas

Hello,

I’ve encountered a major limitation in the Odoo POS promotion system (v17 Online) that affects real-world retail use.

Use case:

  • I award 1 loyalty point per unit purchased.
  • For every 2 points, the customer receives a 100% discount on the cheapest item in the order.

The problem:

When a customer adds products like:

  • 1 x €1.45
  • 1 x €1.05
    ✅ The €1.05 product is correctly made free (1st reward).

Then the customer adds:

  • 1 x €1.50
  • 1 x €1.60
    ❌ Another reward is triggered, but it is again applied to the same €1.05 item instead of applying to the next cheapest product (like €1.50).

Root cause:

Each reward is applied independently, with no awareness of which product lines have already been used for previous rewards. This leads to multiple discounts being applied to the same item, which breaks the logic of incremental rewards per threshold.

Business impact:

This behavior makes it impossible to create real-world retail promotions such as:

“For every 2 products purchased, get 1 different product (the cheapest one not yet rewarded) for free.”

Odoo support confirmed that this is the expected behavior, and suggested changing the entire promotion strategy or sequence of product entry — which is not acceptable from a business standpoint.


Expected behavior:

Each reward should apply to a unique, previously unrewarded line, ensuring that promotions behave fairly and logically.


Feature request:

Please consider improving the POS reward engine to:

  • Track lines already used for rewards
  • Apply new rewards only to remaining eligible items
  • Avoid stacking rewards on the same product line

This would align Odoo POS with standard retail promotion practices and greatly improve its flexibility for real-world usage.

If anybody has got a workaround that can be used in the real world not impacting the operation of the business, I'd be interested to hear about it.

Thank you.

Avatar
Descartar
Mejor respuesta

Hii,

Workarounds used in practice (without core code changes):
  1. Custom POS Extension / Module (Recommended)
    • Override the POS promotion engine logic client-side.
    • Track which lines have already been discounted.
    • When applying the next discount, exclude those lines.
    • This requires JS customization of pos_promotion module and is the cleanest for real-world use.
  2. Split the order manually
    • Instead of adding all items at once, split into separate orders or sessions, so discounts apply on fresh product lines.
    • Not practical or scalable in retail.
  3. Use product categories or tags to limit reward application
    • Create specific reward product categories that exclude already discounted lines.
    • Complex, error-prone, and not very flexible.
  4. Limit promotion to only 1 reward per order
    • Change business rules to only allow 1 reward per order.
    • Simplifies the problem but restricts sales incentives.
If you want a minimal cIf you want a minimal conceptual approach you can try:onceptual approach you can try:
  • In POS frontend JS:
    • After applying the first reward, mark the discounted line(s) with a custom flag.
    • When applying subsequent rewards, filter out lines with that flag.
  • This requires development effort but no backend changes.

i hopt it is usefull

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
oct 24
2618
2
oct 16
3244
1
mar 15
4860
1
ago 25
966
1
jun 25
988