nicolas wrote: That's the code which displays the total in the invoice file that you can edit via Display->Views :
<tr>
<td colspan="2">
</td>
<td class="key">
<label>
<?php echo JText::_( 'HIKASHOP_TOTAL' ); ?>
</label>
</td>
<td>
<?php echo $this->currencyHelper->format($this->order->order_full_price,$this->order->order_currency_id); ?>
</td>
</tr>
Just have the same code before it and change the $this->order->order_full_price by your taxable amount which is $this->order->order_full_price-$taxes and then change <?php echo JText::_( 'HIKASHOP_TOTAL' ); ?> by the name of that value.
Thanks for you reply. Would you consider to add this as feature for next releases? You have already done it for my answer and for Italian laws this is required, maybe not for other countries but it shouldn'r really be a problem, it's just a more detailed invoice...
I ask you to consider it 'cause I should start 2 other e-commerce and I would have a ready to go cart-software as hikashop without hack the viewn file for every new project.
Thanks in advice.