Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建具有以下要求的规则:
产品A---无特价---可以使用优惠码
产品B---特价---优惠码不能使用
产品 A + 产品 B -----产品 A 没有折扣,产品 B 没有折扣 ---- 优惠券仅适用于产品 A
请给点提示。
谢谢
app\code\core\Mage\Sales\Model\Quote\Address\Total
折扣.php 在
$items = $address->getAllItems();
你可以得到所有的项目和
foreach ($items as $item) {
在循环中,您可以检查您的产品状况
之后你可以在你的扩展中为 Discount.php 重写这个模型