/**
  * Check whether the price can be shown for the specified product
  *
  * @param \Magento\Catalog\Model\Product $product
  * @return bool
  * @SuppressWarnings(PHPMD.BooleanGetMethodName)
  */
 public function getCanShowProductPrice($product)
 {
     return $product->getCanShowPrice() !== false;
 }