Hi,
There are several ways:
- you could turn on the "round prices during calculations" setting. That way, the rounding would be done during the calculations and not only during the display and you would get a rounded total for the order.
- you could also modify the code in the createFromCart function of the file administrator/components/com_hikashop/classes/order.php to round the total when the order is being created:
$order->order_full_price = $cart->full_total->prices[0]->price_value_with_tax;
- you could also create a plugin of the group hikashop, implementing the onBeforeOrderCreate trigger in order to do the rounding there.