David Lott [MSFT]
Guest
|
Posted:
Tue Nov 08, 2005 9:51 pm Post subject:
RE: Multiple discount including free shipping not working |
|
|
Hi Bas,
This is expected behavior. The order subtotal before any line item
discounts is used to qualify any order subtotal discounts.
I have heard of a custom work around that involves creating a custom
profile property called OrderSubtotal. Your subtotal discounts then
require this value to be above X in their eligilbility requirements. To
implement this you run the pipelines once to get the OrderSubtotal less
LineItem discounts. Use this value to populate the OrderSubtotal property.
Then run the pipelines again and now that the OrderSubtotal key is
populated, the OrderDiscounts' eligiblity requirements will be met, and
they will apply. This obviously has some performance tradeoffs by running
the pipelines twice.
HTH,
David Lott
Microsoft
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2005 Microsoft Corporation. All rights
reserved.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm |
|