我正在尝试从总金额中扣除税额,或者只是获得裸小计金额,这样我就可以将其放入联盟链接但我无法获得税额或最后一个小计客户点击下订单按钮后,感谢您的页面。我试过了
<?php echo $_product->getData('tax_amount'); ?>
和
$totalItemsInCart = Mage::helper('checkout/cart')->getItemsCount(); //total items in cart
$totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object
$subtotal = round($totals["subtotal"]->getValue()); //Subtotal value
$grandtotal = round($totals["grand_total"]->getValue()); //Grandtotal value
if(isset($totals['tax']) && $totals['tax']->getValue()) {
$tax = round($totals['tax']->getValue()); //Tax value if present
} else {
$tax = '';
}
echo $tax;
但没有运气我无法获得税额我可以获得税额的小计。所以,非常感谢任何帮助
谢谢
答案 0 :(得分:12)
Mage::helper('checkout')->getQuote()->getShippingAddress()->getData('tax_amount')
在这里,您将获得税额