In the confirmation email, by default the base price without tax is shown as price.
I want to change that in my template to the discounted price including VAT.
In the php it is now:
<?php echo '<span >'.$this->currency->priceDisplay($item->product_item_price, $this->currency) .'</span><br />'; ?>
What should I use instead of $item->product_item_price to show the correct price???
Change to:
<?php echo '<span >'.$this->currency->priceDisplay($item->product_basePriceWithTax) .'</span><br />'; ?>