/**
  * {@inheritDoc}
  */
 public function getClearPrice()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getClearPrice', array());
     return parent::getClearPrice();
 }
Example #2
0
 /**
  * Get clear price
  *
  * @return float
  */
 public function getClearPrice()
 {
     return $this->getDefaultVariant() ? $this->getDefaultVariant()->getClearPrice() : parent::getClearPrice();
 }
Example #3
0
 /**
  * Return base price
  *
  * @return float
  */
 public function getBasePrice()
 {
     return parent::getClearPrice();
 }