Quote/Sales price selection disparity
When picking a price using a price scheme in Sales Orders, the price selected is applied to both the "Price" and "Price Ex" fields.
In Quotes, the price is only applied to the "Price" field, not the "Price Ex" field.
dotPeek reveals that the S/O logic has this code, which is missing from Quotes:
in between setting SellPriceExGST (or SellPriceIncGST) and setting PriceSelected.
1) Is this intentional, and
b) is there a quick 'fix' I can implement to make quotes behave the same as orders? (Maybe using the GotPrice event?)
In Quotes, the price is only applied to the "Price" field, not the "Price Ex" field.
dotPeek reveals that the S/O logic has this code, which is missing from Quotes:
- Code: Select all
salesOrderLine.DiscountGiven = 0M;
in between setting SellPriceExGST (or SellPriceIncGST) and setting PriceSelected.
1) Is this intentional, and
b) is there a quick 'fix' I can implement to make quotes behave the same as orders? (Maybe using the GotPrice event?)