每当您在 Magento 中加载购物车页面时,都会运行以下代码
$cart->init();
$cart->save();
这样做的一个副作用是,如果产品的价格已更新,则购物车中任何商品的价格都会更新。这实际上更新了sales_flat_quote_item
. 我试图追踪代码中每个报价项目的价格更新位置,以及每个报价项目的保存位置。
我知道它可以设置的无数个位置。我希望有人知道它实际设置在哪里。Magento 1.7x 分支,尽管欢迎来自所有版本的信息。
自己挖了这个。所以有这个
#File: app/code/core/Mage/Sales/Model/Quote.php
foreach ($this->getAllAddresses() as $address) {
...
$address->collectTotals();
...
}
这导致了这个
#File: app/code/core/Mage/Sales/Model/Quote/Address.php
public function collectTotals()
{
Mage::dispatchEvent($this->_eventPrefix . '_collect_totals_before', array($this->_eventObject => $this));
foreach ($this->getTotalCollector()->getCollectors() as $model) {
$model->collect($this);
}
Mage::dispatchEvent($this->_eventPrefix . '_collect_totals_after', array($this->_eventObject => $this));
return $this;
}
该getTotalCollector
对象返回一个sales/quote_address_total_collector
对象,该对象从中加载一系列收集器模型global/sales/quote/totals
并调用collect
它们。小计收集器的collect
方法最终调用这个
#File: app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
protected function _initItem($address, $item)
{
//...
if ($quoteItem->getParentItem() && $quoteItem->isChildrenCalculated()) {
$finalPrice = $quoteItem->getParentItem()->getProduct()->getPriceModel()->getChildFinalPrice(
$quoteItem->getParentItem()->getProduct(),
$quoteItem->getParentItem()->getQty(),
$quoteItem->getProduct(),
$quoteItem->getQty()
);
$item->setPrice($finalPrice)
->setBaseOriginalPrice($finalPrice);
$item->calcRowTotal();
} else if (!$quoteItem->getParentItem()) {
$finalPrice = $product->getFinalPrice($quoteItem->getQty());
$item->setPrice($finalPrice)
->setBaseOriginalPrice($finalPrice);
$item->calcRowTotal();
$this->_addAmount($item->getRowTotal());
$this->_addBaseAmount($item->getBaseRowTotal());
$address->setTotalQty($address->getTotalQty() + $item->getQty());
}
//...
}
这就是报价项目获得其价格设置/休息的地方。
从高层次来看,启动整个过程的代码是第 464 行和第 465 行Mage_Checkout_Model_Cart
:
$this->getQuote()->collectTotals();
$this->getQuote()->save();
新产品价格是根据方法中的报价设置Mage_Sales_Model_Quote_Address_Total_Subtotal
的_initItem
。您将$item->setPrice
在从第 104 行开始的 if / else 语句中看到
如果您尝试对购物车中的产品进行自定义价格更改,而不是扩展和修改核心类,我使用观察者 sales_quote_save_before。如果您尝试自定义定价(特别是当我有可以自定义长度的产品时),它会非常有用。