Coupon, need help from cs-cart members!

I want to make a coupon,



5 Coupon, bonus: give user point 10000

and once per customer,



1st coupon is: AAAAA

2nd is: bbbbb

3rd is ccccc

4th is ddddd

5th is eeeee



if AAAAA is used by firstcustomer, then 2nd customer cannot use it again

if eeeee is used by 2nd customer then 3rd customer cannot use it again



do i need to create 5 promotions in promotions.list?

or create 1 promotion and define the 5 coupon in there?





example:



if any is true



Conditions: create coupon: AAAAA

Conditions: create coupon BBBBB

Conditions: once per customer



create, finish



if i make it like this: if AAAAA being used by first customer, of course BBBBB cannot be use again, do you have any suggestion?

thanks

If I am understanding you correctly, you want to limit each of the five coupons to a single use. Thy this:



Group: If ‘All’ of these conditions are ‘True’

— Group: If ‘Any’ of these conditions are ‘True’

------- Condition: Coupon code EQUAL ‘AAAAA’

------- Condition: Coupon code EQUAL ‘BBBBB’

------- Condition: Coupon code EQUAL ‘CCCCC’

------- Condition: Coupon code EQUAL ‘DDDDD’

------- Condition: Coupon code EQUAL ‘EEEEE’

— Condition: Number of usages EQUAL OR LESS ‘1’



I think this should work.



Bob

Bob you have always handy in help, thanks will try this now

[quote name=‘jobosales’]If I am understanding you correctly, you want to limit each of the five coupons to a single use. Thy this:



Group: If ‘All’ of these conditions are ‘True’

— Group: If ‘Any’ of these conditions are ‘True’

------- Condition: Coupon code EQUAL ‘AAAAA’

------- Condition: Coupon code EQUAL ‘BBBBB’

------- Condition: Coupon code EQUAL ‘CCCCC’

------- Condition: Coupon code EQUAL ‘DDDDD’

------- Condition: Coupon code EQUAL ‘EEEEE’

— Condition: Number of usages EQUAL OR LESS ‘1’



I think this should work.



Bob[/QUOTE]



Bob, if member1 use AAAAA, then checkout and order finish,

now i gave member2 coupon BBBBB, when he use it, it says no coupon or expired,

can i make 5 coupon like you said, but it can expired one by one

so if AAAAA used, then if we use BBBBB then promotions applied.

do you think this can work?

vidan-



I should have noticed this in my previous post - you are going to need to create a separate promotion for each coupon code. This makes sense since it is the promotion limited to a single use even though multiple coupon codes are accepted.



One possibility that might work is to do the single promotion but raise number of uses to 5; your only concern here might be that someone shares their coupon code with others before.



Bob

[quote name=‘jobosales’]

One possibility that might work is to do the single promotion but raise number of uses to 5; your only concern here might be that someone shares their coupon code with others before.



Bob[/QUOTE]



so AAAAA code can be used 5times in a row?

to limit it to be one used much set each single promotion?

[quote name=‘vidan’]so AAAAA code can be used 5times in a row?

to limit it to be one used much set each single promotion?[/QUOTE]

Yes. You can either have 5 separate promotions which each limit the coupon code to a single use or you can set up a single promotion with 5 different codes but a single coupon code could be used up to 5 times. In the latter case, no more than 5 uses would be allowed across all 5 coupon code so for, you could have the following:

Coupon AAAAA - 2 uses

Coupon BBBBB - 1 use

Coupon CCCCC - 1 use

Coupon DDDDD - 1 use

Coupon EEEEE - 0 use



In the above scenario, coupon EEEEE could never be used because it would exceed the limit of 5 uses for the promotion



Bob