栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

通过价格更改以编程方式将产品添加到购物车

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

通过价格更改以编程方式将产品添加到购物车

在深入研究了Magento的核心代码之后,我发现您需要使用

$item->getProduct()->setIsSuperMode(true)
它才能进行制作
$item->setCustomPrice()
$item->setOriginalPrice()
工作。

以下是一些示例代码,您可以在用于监听

checkout_cart_product_add_after
or
checkout_cart_update_items_after
事件的Observer中使用。该代码在逻辑上是相同的,除了
checkout_cart_product_add_after
只对一项
checkout_cart_update_items_after
调用,对购物车中的所有项调用。仅作为示例,此代码被分离/复制为2种方法。

事件:checkout_cart_product_add_after

public function applyDiscount(Varien_Event_Observer $observer){        $item = $observer->getQuoteItem();    if ($item->getParentItem()) {        $item = $item->getParentItem();    }    // Discounted 25% off    $percentDiscount = 0.25;    // This makes sure the discount isn't applied over and over when refreshing    $specialPrice = $item->getOriginalPrice() - ($item->getOriginalPrice() * $percentDiscount);    // Make sure we don't have a negative    if ($specialPrice > 0) {        $item->setCustomPrice($specialPrice);        $item->setOriginalCustomPrice($specialPrice);        $item->getProduct()->setIsSuperMode(true);    }}

事件:checkout_cart_update_items_after

public function applyDiscounts(Varien_Event_Observer $observer){    foreach ($observer->getCart()->getQuote()->getAllVisibleItems() as $item ) {         if ($item->getParentItem()) {  $item = $item->getParentItem();         }         // Discounted 25% off         $percentDiscount = 0.25;         // This makes sure the discount isn't applied over and over when refreshing         $specialPrice = $item->getOriginalPrice() - ($item->getOriginalPrice() * $percentDiscount);         // Make sure we don't have a negative         if ($specialPrice > 0) {  $item->setCustomPrice($specialPrice);  $item->setOriginalCustomPrice($specialPrice);  $item->getProduct()->setIsSuperMode(true);         }    }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/400844.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号