Obter preço das opções do produto configurável

9

Preciso exportar todos os produtos com preços do Magento 1.7.

Para produtos simples, isso não é problema, mas para produtos configuráveis, tenho este problema: O preço exportado é o preço definido para o produto simples associado! Como você sabe, o Magento ignora esse preço e usa o preço do produto configurável, além de ajustes para as opções selecionadas.

Posso obter o preço do produto pai, mas como faço para calcular a diferença dependendo das opções selecionadas?

Meu código é algo como isto:

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;
  }
Josef diz Restabelecer Monica
fonte

Respostas:

13

Aqui está como você pode obter os preços dos produtos simples. O exemplo é para um único produto configurável, mas você pode integrá-lo ao seu loop.
Pode haver um problema com o desempenho, porque há muitos foreachloops, mas pelo menos você tem um ponto de partida. Você pode otimizar mais tarde.

//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
}

O código acima foi testado no CE-1.7.0.2 com os dados de amostra do Magento para 1.6.0.0.
Eu testei no produto Zolof The Rock And Roll Destroyer: camiseta LOL Cat e ela parece funcionar. Recebo como resultado os mesmos preços que vejo no front-end depois de configurar o produto por SizeeColor

Marius
fonte
3

Pode ser que você precise mudar $ppara $prodno código abaixo?

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

É assim que eu faço:

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

Além disso, você pode convertê-lo em Varien_Object:

$pricesConfigVarien = new Varien_Object($pricesConfig);

Então, basicamente, estou usando o mesmo método usado para calcular preços para sua página de produto configurável no núcleo magento.

Oleg Kudinov
fonte
0

Não tenho certeza se isso ajudaria, mas se você adicionar esse código à página configurable.phtml, ele deve citar os super atributos dos produtos configuráveis ​​com o preço de cada opção e seu rótulo.

   $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/>';
            }
        }
    }
Egregory
fonte