Hi,
The bug is already fixed in HikaMarket 1.4.2.
You can edit the file "administrator/components/com_hikamarket/classes/order.php" and replace
$ret = 0.0;
foreach($order_products as $order_product) {
$ret += (float)hikamarket::toFloat($order_product->order_product_vendor_price);
}
By
$ret = 0.0;
foreach($order_products as $order_product) {
$ret += (int)$order_product->order_product_quantity * (float)hikamarket::toFloat($order_product->order_product_vendor_price);
}
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.