Magento购物车规则购买X可获得所有商品10%的折扣

时间:2013-06-19 08:07:02

标签: magento e-commerce

我在使用Magento Cart规则时遇到了一些问题。

我想要做的是鼓励用户购买礼品卡,所以如果您购买礼品卡,假设您购买了2件或更多商品(包括礼品卡),您可以在整个交易中获得10%的折扣。

这就是我现在正在使用的内容:

条件

If ALL  of these conditions are TRUE :

Total Items Quantity  equals or greater than  2 
If an item is FOUND  in the cart with ANY  of these conditions true:
    SKU  is  7667  (Gift Card)

在行动中

Apply             Fixed amount discount for whole cart
Discount Amount       10

所有其余的都是默认的。

非常感谢任何帮助

1 个答案:

答案 0 :(得分:0)

你的条件似乎是正确的。但是在行动中,您已经定义了固定金额折扣而不是折扣百分比。

在行动中:

Apply Percent of product price discount
Discount Amount 10

此外,你必须记住,有人可以简单地将2张礼品卡放入购物车中以获得折扣。您应该为SKU不是7667的项目添加另一个规则检查。