0

カートに間違った小計が表示され、これはショッピング カートとチェックアウトでの税 (20%) の計算にも影響していると思います (ここの価格は正しいですが、小計と合計には 20% の付加価値税はありません
)問題?

新しいユーザー.. 画像を投稿できません

4

1 に答える 1

0
 <?php 

$subTotal = Mage::getModel('checkout/cart')->getQuote()->getSubtotal();

$totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals();?>
 Total Items in Cart: <?php $totalItems = Mage::getModel('checkout/cart')->getQuote()->getItemsCount();  
                if($totalItems == 0){echo "0";}else{echo $totalItems;}?>
  Subtotal: $ <strong><?php $subTotal = Mage::getModel('checkout/cart')->getQuote()->getSubtotal(); echo number_format($subTotal,2); ?>
 <?php  if(isset($totals['tax']) && $totals['tax']->getValue()) {
  echo 'Tax: '.strip_tags(Mage::helper('core')->currency(number_format($totals['tax']->getValue(),2))); //Tax value if present
} ?>
<?php if(isset($totals['discount']) && $totals['discount']->getValue()) {
    echo 'Discount: '.strip_tags(Mage::helper('core')->currency(number_format($totals['discount']->getValue(),2))); //Discount value if applied
} ?>
<?php if(isset($order->getShippingAmount)){
echo 'Shipping Charges:'.strip_tags(Mage::helper('core')->currency(number_format($order->getShippingAmount,2)));
}?>
 Grand Total: $<?php $grandTotal = Mage::getModel('checkout/cart')->getQuote()->getGrandTotal(); echo number_format($grandTotal,2); ?>

このコードを使用してください。すべてのカート情報が表示されます。

于 2014-04-24T10:10:52.490 に答える