Hi,
That module is not a module we provide.
It's a module from Joomill:
www.joomill-extensions.com/downloads/use...-module-for-hikashop
So you need to report the error to Joomill so that they can fix the problem in the module.
The issue comes from the code:
<?php echo @$module->params['moduleclass_sfx']; ?>
in the file modules/mod_hikashop_userpoints/mod_hikashop_userpoints.php
It should be replaced by:
<?php echo (!empty($module->params) && is_array($module->params) ? @$module->params['moduleclass_sfx'] : ''); ?>