Doing some test.
It seems showing now the price of payment methods with tax (but not sure the amount calculated is correct, for example I setted a paypal method with 3,4% + 0,35€ and the amount of payment method with tax seems not to be correct but I must check for this).
Anyway I need to show this voice in orders and invoices without tax so I've tryed to edit the view file for order/show.php for example this way:
<td class="hikashop_order_payment_value" >
<?php
if($this->config->get('price_with_tax')){
/**echo $this->currencyHelper->format($this->order->order_payment_price,$this->order->order_currency_id);
}else{*/
echo $this->currencyHelper->format($this->order->order_payment_price-@$this->order->order_payment_tax,$this->order->order_currency_id);
} ?>
</td>
I've commented those lines of code (/**echo...) to force product price with tax in general configuration of hikashop but to always display without tax in orders and invoices (read my topic about this
feature suggestion for different show taxed prices
).
Anyway it seems that I can't use order_payment_tax or I forget something. Any solution?
Also, how payment price is calculated? I'm not sure that the price is correct, could you confirm me?