Question

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;
Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top