Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: discount on Subtotal?

  1. #1
    Cano is offline Member
    Join Date
    Sep 2005
    Location
    Wellington, FL
    Posts
    64

    Default discount on Subtotal?

    Any suggestions on discounts based on subtotal?
    I know I can do 3 coupons based on $ range for out 3 discount levels but out clientele demographics is mostly older women and for some reason they forget to put the coupon code in and then call which creates more work

    If I need to code it where is the logic for calculations?
    I can handle it.

    Thanks in advance

    Jaime (cano) Noriega
    expointl.com
    atreasurenest.com

  2. #2
    Jao is offline Senior Member
    Join Date
    Oct 2008
    Posts
    1,132

    Default

    Well, the easiest way would be to create a Customer Level and include those customers to it and then set that level's discount accordingly. This wouldn't require any customization because it's already built in...

  3. #3
    Cano is offline Member
    Join Date
    Sep 2005
    Location
    Wellington, FL
    Posts
    64

    Default

    Actually we do use customer levels on our wholesale site (expointl.com)
    But on our retail site (atreasurenest.com) we can't use price levels. Customers just come from all over the place and most are one time buyers.

    So where in the code is the price calculations?
    a simple case statement will do what I need

    Like

    Select case Subtotal
    case > 300
    subtotal = subtotal * someperc
    case > 200
    subtotal = subtotal * someperc
    case ...
    end case


    Thanks
    Cano