/**
  * {@inheritdoc}
  */
 public function getCanShowProductPrice($product)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCanShowProductPrice');
     if (!$pluginInfo) {
         return parent::getCanShowProductPrice($product);
     } else {
         return $this->___callPlugins('getCanShowProductPrice', func_get_args(), $pluginInfo);
     }
 }