通过阅读文档http://docs.magentocommerce.com/Mage_Sales/Mage_Sales_Model_Quote_Address.html
,我无法理解它doc指出的每个浮点数给出0(即使购物车不是空的)
答案 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();
}