Magento – Magento 1.9.3 invoice product price including tax

invoicepricetax

I want to display product price including tax on invoice totals. Every product has name, quantity, price and row total. I got all except the price.

Right now I have

<td align="center" valign="top" style="font-size:11px; padding:3px 9px; line-height: 20px;"><?php echo $_item->getPrice()*1 . ' €'?></td>

But this does'nt include tax..

Also my settings on admin panel:
enter image description here

Best Answer

It was really easy... But in fact I have lost almost one week searching the issue of this problem.

It seems that even if you will precise the tax %, in the tax rules, and you will chose tax class "Normal", the same for the product, it will not add tax to your product. It will without tax.

You have to choose tax class Shipping, for tax rule and product. And after that all works like a charm.

Related Topic