In the orderview I would like to show the shipping without tax.
I did change in View/backend/order/form.php the setting for the SubTotal to show without tax but the same change doesn't seem to apply to the Shipping.
The grandtotal is calculated correctly and the VAT amount is correct but since the shipping shows with VAT included my comparison with my final invoice (from a desktop system) becomes difficult.
This is the line that needs changing:
<?php echo $this->currencyHelper->format($this->order->order_shipping_price,$this->order->order_currency_id); ?>
I tried with "order_shipping_price_no_tax" and "order_shipping_price_no_vat" but they didn't work
The "order_subtotal_no_vat" works for the subtotal price.
Jan