Magento:自定义特价观察器在购物车中失败

发布于 2024-12-24 02:42:41 字数 510 浏览 0 评论 0原文

我已经构建了一个特殊的价格观察器,类似于 中解释的示例Magento 维基 但现在我面临的问题是,“新”价格仅显示在目录中,而不显示在购物车或总计中。

我还尝试

Mage::dispatchEvent('catalog_product_get_final_price',array('product'=>product)); 

在 Mage_Checkout_Model_Cart 类中的 _getProduct() 中

使用它我是否必须重写我的观察者 sales_order_place_after 或类似的东西?

感谢您的帮助!

i've built a special price observer similar to the example explained in the magento wiki
but now i'm facing the problem, that the "new" price is only shown within the catalog, but not within the shopping cart or totals..

I've also tried to apply it using

Mage::dispatchEvent('catalog_product_get_final_price',array('product'=>product)); 

within the _getProduct() in the Mage_Checkout_Model_Cart class

Do i have to rewrite my observer for sales_order_place_after or something like this?

thanks for any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凶凌 2024-12-31 02:42:41

使用“sales_quote_collect_totals_before”/“sales_quote_collect_totals_after”事件,每次总计发生变化时都会触发该事件。

每次购物车更新以及其他事件时,都会通过 Quote.php 中的“collectTotals()”方法调用它

Use the "sales_quote_collect_totals_before" / "sales_quote_collect_totals_after" event, which fires every time when totals changes.

It is called withing the "collectTotals()" method in Quote.php, every time the cart gets updated, and at other events

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文