Hi,
You were right and we find and error in the discount calculation for this case.
If you want to fix the bug you have to modify the line 1562 of the file administrator/components/com_hikashop/classes/currency.php
Just behind the if($discount_before_tax)replace this line:
$discount->discount_percent_amount_calculated = $price->price_value_with_tax*$discount->discount_percent_amount_calculated_without_tax/$price->price_value;
by this line:
$discount->discount_percent_amount_calculated = $price->price_value_with_tax*$discount->discount_percent_amount_calculated_without_tax/$price->price_value_with_tax;
And it should works