如何获得结帐车特定项目总价?

时间:2015-05-27 13:23:08

标签: magento checkout

我有一个自定义html我想将这个html实现到结帐购物车页面。我实现了它,但我不能得到购物车的总价格,例如。我在购物车中有5件商品。我只更新了购物车中的一个特定商品,然后我没有得到这些特定商品的总价格。

默认项目$ 50 * 1 = $ 50

更新数量后

项目价格:50美元* 2 = ??(我想得到这个特定项目的总数)。

由于

3 个答案:

答案 0 :(得分:3)

您可以将价格计算为:

<?php 
    $items = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();
    foreach($items as $item) {
       $qty = $item->getQty();
       $price = $item->getPrice();
       $totalPrice =  $qty * $price; 
    }
?>

答案 1 :(得分:0)

要获取购物车项目的具体细节,您可以使用:

$quote = Mage::getSingleton('checkout/session')->getQuote();
foreach ($quote->getAllItems() as $item){
   $qty = $item->getQty() ;
   $price = $item->getPrice();
   $totalPrice =  $qty * $price; 
}

答案 2 :(得分:0)

我使用默认的magento功能来获取magento chekout购物车页面中的特定商品价格

<?php if ($canApplyMsrp): ?>
    <span class="cart-msrp-subtotal">--</span>
<?php else: ?>
    <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
        <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal() + $_item->getWeeeTaxAppliedRowAmount() + $_item->getWeeeTaxRowDisposition()); ?>
    <?php else: ?>
        <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
    <?php endif; ?>
<?php endif; ?>