Magento:如何从Mage_Sales_Model_Quote_Address对象获取订单小计

时间:2014-10-03 14:31:03

标签: magento sales subtotal

通过阅读文档http://docs.magentocommerce.com/Mage_Sales/Mage_Sales_Model_Quote_Address.html

,我无法理解它

doc指出的每个浮点数给出0(即使购物车不是空的)

1 个答案:

答案 0 :(得分:0)

刚刚找到解决此问题的方法(仍然不知道为什么magento会像这样),这要归功于这个问题的答案:Magento - How to get the subtotal for a single product in cart?

只需添加每个引号的小计(类 Mage_Sales_Model_Quote 的对象)行:

$items = $quote->getAllItems();
$subtotal = 0;
foreach ($items as $item){
    $subtotal += $item->getRowTotalInclTax();
}