Bonjour,
Il n'y a pas d'option pour cela. Il faut modifier le code de la facture pour cela.
Mais rien de très compliqué.
Dans le fichier plugins/hikashop/attachinvoice/attachinvoice/invoice.php vous avez ce code qui affiche le sous total:
<tr>
<td colspan="3" class="newarea">
<?php echo JText::_( 'SUBTOTAL' ); ?>
</td>
<td class="price">
<?php
if($config->get('price_with_tax')){
echo $currencyHelper->format($order->order_subtotal,$order->order_currency_id);
}else{
echo $currencyHelper->format($order->order_subtotal_no_vat,$order->order_currency_id);
} ?>
</td>
</tr>
Il faut le remplacer par:
<tr>
<td colspan="3" class="newarea">
<?php echo JText::_( 'SUBTOTAL' ); ?> HT
</td>
<td class="price">
<?php echo $currencyHelper->format($order->order_subtotal_no_vat,$order->order_currency_id); ?>
</td>
</tr>
<tr>
<td colspan="3" class="newarea">
<?php echo JText::_( 'SUBTOTAL' ); ?> TTC
</td>
<td class="price">
<?php echo $currencyHelper->format($order->order_subtotal,$order->order_currency_id); ?>
</td>
</tr>