nicolas wrote: Hi,
Now I see what you mean.
That however looks strange to me so have the products listing of an order to display differently between the order and the invoice.
And as Italy is also part of the European union, the same rules should apply to you:
europa.eu/youreurope/business/vat-customs/buy-sell/index_en.htm
"Add the VAT to the price of the goods or services on your invoice."
Do you have any sources of information explaining the rule ?
I am now trying to solve such a problem with the VAT on the invoice. The VAT rules in the Netherlands are that you need to show the price on the invoice without VAT, then you need to show the VAT and then the total price. Like this:
Price without VAT
VAT amount
Total price with VAT
with shipping, ideally like this:
Price without VAT
Shipping without VAT
VAT amount total for product and shipping
Total price with VAT and shipping
On the other side, the products need to be showed with the VAT price everywhere on the page.
I have these settings on (btw is VAT in Dutch)
and my invoice looks like this:
The problem is that I am not able to make the Subtotal to display the price without the VAT. It only happens if I change the settings to no BTW display in hikashop settings, but that is useless, as I need to display the products with the BTW.
I tried to change the invoce.php file as suggested here:
www.hikashop.com/forum/customers/867341-customization-bill.html
but it did not work.
i.e. this part in the invoice.php, I tried the whole file suggested at the post I mentioned, but nothing works.
<?php echo JText::_( 'SUBTOTAL' ); ?>
</label>
</td>
<td style="border-top:2px solid #B8B8B8;">
<?php
if($this->config->get('price_with_tax')){
echo $this->currencyHelper->format($this->order->order_subtotal,$this->order->order_currency_id);
}else{
echo $this->currencyHelper->format($this->order->order_subtotal_no_vat,$this->order->order_currency_id);
} ?>
</td>
</tr>
<?php
Which view file and how do I need to change in order to make the Subtotal display the price without the VAT on the invoice, while the prices are displayed with the BTW in the settings?