Good Morning,
I have the following issue, Promotions Program do not apply to only current Order, my setting is the following:
Customer "A" has 4 Sales one of them is for $3500.
Customer "B" is new and have never had a Sale.
Promotion Program "1" is for Customers that place an Order of equal or above $1000 but under $2500 will get a 5% discount on the Untaxed Amount.
Promotion Program "2" is for Customers that place an Order of equal to or above $2500 will get a 10% discount on the Untaxed Amount.
Promotion "1" is set to:
["&","&",["sale_order_ids.amount_untaxed",">=",1000],["sale_order_ids.amount_untaxed","<",2500],["sale_order_ids.state","=","draft"]]
Promotion "2" is set to:
["&",["sale_order_ids.amount_untaxed",">=",2500],["sale_order_ids.state","=","draft"]]
My issue starts with the Fact that the Promotions Program will look for Conditions Based on Customers and Products but not Quotations, then if Customer "A" has already an Order in the past for $3500 and place a new Order today for just $500 it'll fall under the Promotion "1", I tried to add the Condition of a Sale Order on Draft (Quotation) to try to narrow it to just the current Order, but it's still looking of course to the Customer conditions.
On Customer "B" it'll work perfectly because there's no history to look at.
Is there a way I'm missing to apply these discounts to only the current Sale Order Condition regardless of the Customer previous Orders?
I am using Odoo V.11 Enterprise.