/**
  * Whether group price value fixed or percent of original price
  *
  * @param \Magento\Catalog\Model\Product\Type\Price $priceObject
  * @return bool
  */
 protected function _isPriceFixed($priceObject)
 {
     return $priceObject->isGroupPriceFixed();
 }