Вопрос

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;
Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top