0

Magentoで注文した商品の税抜価格と商品単体の税額を表示したい。

私はすでにアイテムをロードしています:

$qty                 =$item->getData('qty_ordered');
$sku                 =$item->getSku();
$name                =$item->getName();
$tax                 =$item->getTaxAmount()/$qty;
$price_incl_tax      =$item->getPriceInclTax();
$price_excl_tax      =$price_incl_tax-$tax;

これは機能していますが、これは良い解決策ではないと思います。自分でPHPで価格を計算せずに簡単な方法はありますか?

前もって感謝します!

編集:これが必要です:

$_product = $item->getProduct();
$finalPriceExcludingTax = 
Mage::helper('tax') ->getPrice($_product, $_product->getFinalPrice(), false );

顧客が支払った価格で、注文された商品に使用できます。

4

1 に答える 1

0

税ヘルパーを使用してみてください:

$_product = $item->getProduct()
$finalPriceExcludingTax = $this->helper('tax')
    ->getPrice($_product, $_product->getFinalPrice(), false );
于 2016-07-10T19:07:44.873 に答える