Hello,
The solution can be to directly add the price through the description of your product, you'll directly have to edit the code of the "show_default" file of the "product" view via "Hikahop->Display->Views" and add a condition to these lines regarding the user group that your customer is in :
<?php
//LAYOUT quantity
$this->row = & $this->element;
$this->ajax = 'if(hikashopCheckChangeForm(\'item\',\'hikashop_product_form\')){ return hikashopModifyQuantity(\'' . $this->row->product_id . '\',field,1' . $form . ',\'cart\'); } else { return false; }';
$this->setLayout('quantity');
echo $this->loadTemplate();
?>