Hi,
Thanks for the report ; we will see to update the package as soon as possible.
For the moment, please edit the file "administrator/components/com_hikamarket/classes/order.php" and replace the code (start on line 1930)
foreach($vendor_order->order_shipping_params->prices as $shipping_price) {
if(empty($shipping_price->taxes))
continue;
foreach($shipping_price->taxes as $tax_namkey => $tax_value) {
$vendor_order->order_tax_info[$tax_namkey]->tax_amount_for_shipping += $tax_value;
}
}
By
if(!empty($vendor_order->order_shipping_params) && !empty($vendor_order->order_shipping_params->prices)) {
foreach($vendor_order->order_shipping_params->prices as $shipping_price) {
if(empty($shipping_price->taxes))
continue;
foreach($shipping_price->taxes as $tax_namkey => $tax_value) {
$vendor_order->order_tax_info[$tax_namkey]->tax_amount_for_shipping += $tax_value;
}
}
}
It will fix your issue.
Sorry for the inconvenient.
Regards,