Hi,
Great !
I see what is the problem then.
Change the code:
$data->elements[$id]->price_min_quantity = '1';
if($nbPrices)
$data->elements[$id]->price_min_quantity = $data->elements[$id]->price_min_quantity.str_repeat('|1',$nbPrices);
to:
$data->elements[$id]->price_min_quantity = '0';
if($nbPrices)
$data->elements[$id]->price_min_quantity = $data->elements[$id]->price_min_quantity.str_repeat('|0',$nbPrices);
in the file plugins/hikashop/massaction_product/massaction_product.php and that will fix the problem with the mass action import.