public function getPrice($flag=false) { if ($flag && $this->getPriceType() == 'percent') { $basePrice = $this->getProduct()->getFinalPrice(); $price = $basePrice*($this->_getData('price')/100); return $price; } return $this->_getData('price'); }