Hi,
Supposing that you're using the auto update products cron plugin for the import, before the line:
foreach($this->fields as $field){
in the file administrator/components/com_hikashop/helpers/import.php, you could add:
if(isset($product->product_quantity)) $product->product_quantity = (int)floor($product->product_quantity);
Ideally, instead of modifying the core file of HikaShop, you would create an override as per
www.hikashop.com/support/documentation/6...ntation.html#classes
That way, you wouldn't have to redo the change after each update of HikaShop.