Domanda

I want to get total item price from order item, including it's tax and any other additional price. Currently i got total price of an order item in like this:

$qty = $_item->getQtyOrdered();
$totalPrice = $_item->getPrice() * $qty;
È stato utile?

Soluzione

You can use the below function to fetch Total Row Price including tax.

$_item->getRowTotalInclTax()

Also you can check sales_order_item table columns for other possible values available to fetch on Order Item object.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top