我使用的付款方式接受分期付款中的处理付款。使用分期付款时,需要使用未折扣价格,因此我在sales_quote_collect_totals_before
注册了观察员,以便在选中分期付款选项时强制重新计算商品价格(代码如下)。
任何人都可以解释原因吗?并且可能解决我如何跳过步骤6-11 :-)?
$installments = /* has the option been checked */
/** @var Mage_Sales_Model_Quote_Item $item */
foreach ($quote->getAllItems() as $item) {
$product = $item->getProduct();
$qty = $item->getQty();
$price = $installments ? $product->getPrice() : $product->getFinalPrice($qty);
if ($price == $item->getOriginalCustomPrice()) {
continue;
}
$item->setPrice($price);
$item->setCustomPrice($price);
$item->setOriginalCustomPrice($price);
$item->calcRowTotal();
}
答案 0 :(得分:0)
好的,我自己找到了答案。
显然Mage_Sales_Model_Quote_Payment::importData
在分配新的付款数据之前执行Mage_Sales_Model_Quote::collectTotals
,之后totals_collected_flag
阻止了重新计算。