구성 가능한 제품 옵션 가격 얻기


9

Magento 1.7의 가격으로 모든 제품을 내 보내야합니다.

간단한 제품의 경우 문제가 없지만 구성 가능한 제품의 경우이 문제가 있습니다. 내 보낸 가격은 관련 단순 제품의 가격입니다! 아시다시피 Magento는이 가격을 무시하고 구성 가능한 제품의 가격과 선택한 옵션에 대한 조정을 사용합니다.

상위 상품의 가격을 얻을 수 있지만 선택한 옵션에 따라 차이를 어떻게 계산합니까?

내 코드는 다음과 같습니다

foreach($products as $p)
   {
    $price = $p->getPrice();
            // I save it somewhere

    // check if the item is sold in second shop
    if (in_array($otherShopId, $p->getStoreIds()))
     {
      $otherConfProd = Mage::getModel('catalog/product')->setStoreId($otherShopId)->load($p->getId());
      $otherPrice = $b2cConfProd->getPrice();
      // I save it somewhere
      unset($otherPrice);
     }

    if ($p->getTypeId() == "configurable"):
      $_associatedProducts = $p->getTypeInstance()->getUsedProducts();
      if (count($_associatedProducts))
       {
        foreach($_associatedProducts as $prod)
         {
                            $p->getPrice(); //WRONG PRICE!!
                            // I save it somewhere
                        $size $prod->getAttributeText('size');
                        // I save it somewhere

          if (in_array($otherShopId, $prod->getStoreIds()))
           {
            $otherProd = Mage::getModel('catalog/product')->setStoreId($otherShopId)->load($prod->getId());

            $otherPrice = $otherProd->getPrice(); //WRONG PRICE!!
                            // I save it somewhere
            unset($otherPrice);
            $otherProd->clearInstance();
            unset($otherProd);
           }
         }
                     if(isset($otherConfProd)) {
                         $otherConfProd->clearInstance();
                            unset($otherConfProd);
                        }
       }

      unset($_associatedProducts);
    endif;
  }

답변:


13

간단한 제품의 가격을 얻는 방법은 다음과 같습니다. 예제는 구성 가능한 단일 제품에 대한 것이지만 루프에 통합 할 수 있습니다.
많은 foreach루프 가 있기 때문에 성능에 문제가있을 수 있지만 최소한 시작할 곳이 있습니다. 나중에 최적화 할 수 있습니다.

//the configurable product id
$productId = 126; 
//load the product - this may not be needed if you get the product from a collection with the prices loaded.
$product = Mage::getModel('catalog/product')->load($productId); 
//get all configurable attributes
$attributes = $product->getTypeInstance(true)->getConfigurableAttributes($product);
//array to keep the price differences for each attribute value
$pricesByAttributeValues = array();
//base price of the configurable product 
$basePrice = $product->getFinalPrice();
//loop through the attributes and get the price adjustments specified in the configurable product admin page
foreach ($attributes as $attribute){
    $prices = $attribute->getPrices();
    foreach ($prices as $price){
        if ($price['is_percent']){ //if the price is specified in percents
            $pricesByAttributeValues[$price['value_index']] = (float)$price['pricing_value'] * $basePrice / 100;
        }
        else { //if the price is absolute value
            $pricesByAttributeValues[$price['value_index']] = (float)$price['pricing_value'];
        }
    }
}

//get all simple products
$simple = $product->getTypeInstance()->getUsedProducts();
//loop through the products
foreach ($simple as $sProduct){
    $totalPrice = $basePrice;
    //loop through the configurable attributes
    foreach ($attributes as $attribute){
        //get the value for a specific attribute for a simple product
        $value = $sProduct->getData($attribute->getProductAttribute()->getAttributeCode());
        //add the price adjustment to the total price of the simple product
        if (isset($pricesByAttributeValues[$value])){
            $totalPrice += $pricesByAttributeValues[$value];
        }
    }
    //in $totalPrice you should have now the price of the simple product
    //do what you want/need with it
}

상기 코드는 1.6.0.0의 마 젠토 샘플 데이터로 CE-1.7.0.2에서 테스트되었습니다.
나는 Zolof The Rock And Roll Destroyer : LOL Cat T-shirt 제품을 테스트 했으며 이음새가 작동합니다. 나는 프론트 엔드에서 보는 바와 같이 나는하여 제품을 구성한 후 결과와 동일한 가격을 취득 Size하고Color


3

그것은 당신이 변경해야 할 수 있을까 $p$prod아래의 코드에서?

 foreach($_associatedProducts as $prod)
         {
                            $p->getPrice(); //WRONG PRICE!!

2

이것이 내가하는 방법입니다.

$layout = Mage::getSingleton('core/layout');
$block = $layout->createBlock('catalog/product_view_type_configurable');
$pricesConfig = Mage::helper('core')->jsonDecode($block->getJsonConfig());

또한 Varien_Object로 변환 할 수 있습니다.

$pricesConfigVarien = new Varien_Object($pricesConfig);

따라서 기본적으로 magento 코어에서 구성 가능한 제품 페이지의 가격을 계산하는 데 사용되는 것과 동일한 방법을 사용하고 있습니다.


0

이것이 도움이 될지 확실하지 않지만이 코드를 configurable.phtml 페이지에 추가하면 각 옵션의 가격과 레이블로 구성 가능한 제품 수퍼 속성을 추출해야합니다.

   $json =  json_decode($this->getJsonConfig() ,true);


    foreach ($json as $js){
        foreach($js as $j){

      echo "<br>";     print_r($j['label']); echo '<br/>';

            foreach($j['options'] as $k){
                echo '<br/>';     print_r($k['label']); echo '<br/>';
                print_r($k['price']); echo '<br/>';
            }
        }
    }
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.