如何在magento中创建优惠券代码,将应用百分比折扣或固定值,以较低的为准



我想实现一个优惠券代码,如果折扣值小于500,用户将在购物车中获得8折优惠。

。购物车总价值为10000申请20%优惠码,可获得2000元折扣但是,我们最多只能给500折。

您所要做的就是创建两个价格规则。一个人会保证给500英镑的折扣,另一个人会给500英镑的折扣。

现在第一个代码必须像这样工作:

Apply Percent of product price discount: 20
//20% of £2500 = £500
If ALL  of these conditions are TRUE :
    Price in cart  equals or less than  2500

然后创建另一个规则,像这样:

Apply Fixed amount discount for whole cart: 500
//Give discount of £500 if value is equal or greater then £2501
If ALL  of these conditions are TRUE :
    Price in cart  equals or greater than  2501  

这个defo应该可以满足你的需要;)

最新更新