Magento:自定义特价观察器在购物车中失败
我已经构建了一个特殊的价格观察器,类似于 中解释的示例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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“
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 inQuote.php
, every time the cart gets updated, and at other events