예제 #1
0
 protected function getExistedProductSpecialValue(Product $product)
 {
     $value = (double) $product->getSpecialPrice();
     if ($value <= 0) {
         return $this->getExistedProductValue($product);
     }
     return $this->convertValueFromStoreToMarketplace($value);
 }