Pregunta

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;
¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top