Hi,
This is not possible with the default ACL rules, but thanks to some modifications this is possible.
The view to edit is "product / form" in the backend template, the different blocks are called thanks to code like:
if(hikashop_acl('product/edit/price')) {
?>
<div class="hikashop_product_price"><?php
echo $this->loadTemplate('price');
?></div>
<?php
}
So you can add a check on the usergroup in order to display or not the parts.
ps: as you can see we are doing a check on "hikashop_acl", this means that we have on our todo list to manage the ACLs for these different parts.