Magento 1.9.1の構成可能な製品属性のソート


24

すでに述べたように、magento 1.9.1と設定可能な製品の属性のソートには問題があるようです。構成可能な製品のオプションは、常に単純な製品の製品IDに常に依存するようになりました。属性オプションの順序は無視されます。

magento 1.9.0.1。に戻りました。たぶん誰かが1.9.1のソートがどのように行われるかを決定できるでしょう。構成可能な製品を使用してそれを修正するすべての人にとって素晴らしいことです。

誰かがそれを見たい場合、あなたはそれを行うことができ、ここで Magentoのデモ店で。サイズを正しく並べ替えることができませんでした。

回答:


25

注:このソリューションは、Magento 1.9.2では動作しないことに気付きました。他の人の無駄な時間を節約するために、この投稿の上部でこれを指摘したいと思います。独自のソリューションを開発するか、1.9.2で動作する他の誰かのソリューションを見つけた場合は、その時点でこの投稿を更新します。

注意:ここで説明するソリューションは、Magentoのコアライブラリのブロッククラスファイルを拡張します。このアプローチの前にMagentoのソースコードを確認し、このアプローチを回避するために観察すべき良いイベントはないと判断しました。Magentoの将来のバージョンでこのソートの問題が解決された場合、app / etc / modules XMLファイルの拡張機能を無効にするだけで、以下の変更を取り消すことができます。

ステップ1:ファイルapp / etc / modules / FirstScribe_CatalogOptionSortFix.xmlを作成します

内容:

<?xml version="1.0"?>
<config>
    <modules>
        <FirstScribe_CatalogOptionSortFix>
            <active>true</active>
            <codePool>local</codePool>
            <depends>
                <Mage_Catalog />
            </depends>
        </FirstScribe_CatalogOptionSortFix>
    </modules>
</config>

注:ステップ2および3では、必要に応じてこれらのファイルのディレクトリを作成します。たとえば、すでにapp / code / localディレクトリがある場合とない場合があります。サイトにすでにインストールされている拡張機能によって異なります。

ステップ2:app / code / local / FirstScribe / CatalogOptionSortFix / etc / config.xmlファイルを作成します

内容:

<?xml version="1.0"?>
<!--
/**
 * Magento 1.9.1.0 has a bug in that the configurable options are sorted by
 * ID rather than position for the Configurable Product's front end view script.
 * This extension addresses this problem.
 *
 * @category    FirstScribe
 * @package     FirstScribe_CatalogOptionSortFix
 * @version     2014.12.15
 */
-->
<config>
    <modules>
        <FirstScribe_CatalogOptionSortFix>
            <version>1.0.0</version>
        </FirstScribe_CatalogOptionSortFix>
    </modules>
    <global>
        <blocks>
            <catalog>
                <rewrite>
                    <product_view_type_configurable>FirstScribe_CatalogOptionSortFix_Block_Product_View_Type_Configurable</product_view_type_configurable>
                </rewrite>
            </catalog>
        </blocks>
    </global>
</config>

ステップ3:ファイルapp / code / local / FirstScribe / CatalogOptionSortFix / Block / Product / View / Type / Configurable.phpを作成します

内容:

<?php
/**
 * Magento 1.9.1.0 has a bug in that the configurable options are sorted by
 * ID rather than position for the Configurable Product's front end view script.
 * This extension addresses this problem.
 *
 * @category    FirstScribe
 * @package     FirstScribe_CatalogOptionSortFix
 * @version     2014.12.15
 */
class FirstScribe_CatalogOptionSortFix_Block_Product_View_Type_Configurable extends Mage_Catalog_Block_Product_View_Type_Configurable
{
    /**
     * @var Magento_Db_Adapter_Pdo_Mysql
     */
    protected $_read;

    /**
     * @var string
     */
    protected $_tbl_eav_attribute_option;

    /**
     * Composes configuration for js
     *
     * @version 2014.12.15 - Addition of this line:
     *    $info['options'] = $this->_sortOptions($info['options']);
     *
     * @return string
     */
    public function getJsonConfig()
    {
        $attributes = array();
        $options    = array();
        $store      = $this->getCurrentStore();
        $taxHelper  = Mage::helper('tax');
        $currentProduct = $this->getProduct();

        $preconfiguredFlag = $currentProduct->hasPreconfiguredValues();
        if ($preconfiguredFlag) {
            $preconfiguredValues = $currentProduct->getPreconfiguredValues();
            $defaultValues       = array();
        }

        foreach ($this->getAllowProducts() as $product) {
            $productId  = $product->getId();

            foreach ($this->getAllowAttributes() as $attribute) {
                $productAttribute   = $attribute->getProductAttribute();
                $productAttributeId = $productAttribute->getId();
                $attributeValue     = $product->getData($productAttribute->getAttributeCode());
                if (!isset($options[$productAttributeId])) {
                    $options[$productAttributeId] = array();
                }

                if (!isset($options[$productAttributeId][$attributeValue])) {
                    $options[$productAttributeId][$attributeValue] = array();
                }
                $options[$productAttributeId][$attributeValue][] = $productId;
            }
        }

        $this->_resPrices = array(
            $this->_preparePrice($currentProduct->getFinalPrice())
        );

        foreach ($this->getAllowAttributes() as $attribute) {
            $productAttribute = $attribute->getProductAttribute();
            $attributeId = $productAttribute->getId();
            $info = array(
                    'id'        => $productAttribute->getId(),
                    'code'      => $productAttribute->getAttributeCode(),
                    'label'     => $attribute->getLabel(),
                    'options'   => array()
            );

            $optionPrices = array();
            $prices = $attribute->getPrices();
            if (is_array($prices)) {
                foreach ($prices as $value) {
                    if(!$this->_validateAttributeValue($attributeId, $value, $options)) {
                        continue;
                    }
                    $currentProduct->setConfigurablePrice(
                            $this->_preparePrice($value['pricing_value'], $value['is_percent'])
                    );
                    $currentProduct->setParentId(true);
                    Mage::dispatchEvent(
                            'catalog_product_type_configurable_price',
                            array('product' => $currentProduct)
                    );
                    $configurablePrice = $currentProduct->getConfigurablePrice();

                    if (isset($options[$attributeId][$value['value_index']])) {
                        $productsIndex = $options[$attributeId][$value['value_index']];
                    } else {
                        $productsIndex = array();
                    }

                    $info['options'][] = array(
                            'id'        => $value['value_index'],
                            'label'     => $value['label'],
                            'price'     => $configurablePrice,
                            'oldPrice'  => $this->_prepareOldPrice($value['pricing_value'], $value['is_percent']),
                            'products'  => $productsIndex,
                    );
                    $optionPrices[] = $configurablePrice;
                }
            }

            // CALL SORT ORDER FIX
            $info['options'] = $this->_sortOptions($info['options']);

            /**
             * Prepare formated values for options choose
             */
            foreach ($optionPrices as $optionPrice) {
                foreach ($optionPrices as $additional) {
                    $this->_preparePrice(abs($additional-$optionPrice));
                }
            }
            if($this->_validateAttributeInfo($info)) {
                $attributes[$attributeId] = $info;
            }

            // Add attribute default value (if set)
            if ($preconfiguredFlag) {
                $configValue = $preconfiguredValues->getData('super_attribute/' . $attributeId);
                if ($configValue) {
                    $defaultValues[$attributeId] = $configValue;
                }
            }
        }

        $taxCalculation = Mage::getSingleton('tax/calculation');
        if (!$taxCalculation->getCustomer() && Mage::registry('current_customer')) {
            $taxCalculation->setCustomer(Mage::registry('current_customer'));
        }

        $_request = $taxCalculation->getDefaultRateRequest();
        $_request->setProductClassId($currentProduct->getTaxClassId());
        $defaultTax = $taxCalculation->getRate($_request);

        $_request = $taxCalculation->getRateRequest();
        $_request->setProductClassId($currentProduct->getTaxClassId());
        $currentTax = $taxCalculation->getRate($_request);

        $taxConfig = array(
                'includeTax'        => $taxHelper->priceIncludesTax(),
                'showIncludeTax'    => $taxHelper->displayPriceIncludingTax(),
                'showBothPrices'    => $taxHelper->displayBothPrices(),
                'defaultTax'        => $defaultTax,
                'currentTax'        => $currentTax,
                'inclTaxTitle'      => Mage::helper('catalog')->__('Incl. Tax')
        );

        $config = array(
                'attributes'        => $attributes,
                'template'          => str_replace('%s', '#{price}', $store->getCurrentCurrency()->getOutputFormat()),
                'basePrice'         => $this->_registerJsPrice($this->_convertPrice($currentProduct->getFinalPrice())),
                'oldPrice'          => $this->_registerJsPrice($this->_convertPrice($currentProduct->getPrice())),
                'productId'         => $currentProduct->getId(),
                'chooseText'        => Mage::helper('catalog')->__('Choose an Option...'),
                'taxConfig'         => $taxConfig
        );

        if ($preconfiguredFlag && !empty($defaultValues)) {
            $config['defaultValues'] = $defaultValues;
        }

        $config = array_merge($config, $this->_getAdditionalConfig());    

        return Mage::helper('core')->jsonEncode($config);
    }

    /**
     * Sort the options based off their position.
     *
     * @param array $options
     * @return array
     */
    protected function _sortOptions($options)
    {
        if (count($options)) {
            if (!$this->_read || !$this->_tbl_eav_attribute_option) {
                $resource = Mage::getSingleton('core/resource');

                $this->_read = $resource->getConnection('core_read');
                $this->_tbl_eav_attribute_option = $resource->getTableName('eav_attribute_option');
            }

            // Gather the option_id for all our current options
            $option_ids = array();
            foreach ($options as $option) {
                $option_ids[] = $option['id'];

                $var_name  = 'option_id_'.$option['id'];
                $$var_name = $option;
            }

            $sql    = "SELECT `option_id` FROM `{$this->_tbl_eav_attribute_option}` WHERE `option_id` IN('".implode('\',\'', $option_ids)."') ORDER BY `sort_order`";
            $result = $this->_read->fetchCol($sql);

            $options = array();
            foreach ($result as $option_id) {
                $var_name  = 'option_id_'.$option_id;
                $options[] = $$var_name;
            }
        }

        return $options;
    }
}

ステップ4:有効になっている場合、管理パネルの[システム]-> [キャッシュ管理]でMagentoの[構成]キャッシュタイプを更新します。

拡張機能の概要

  1. Mage_Catalog_Block_Product_View_Type_Configurableクラスを拡張します。
  2. positionデータベースからこの情報を取得して、値でオプションを並べ替えるメソッドを追加します。
  3. 属性のオプションを収集した後、getJsonConfigメソッドを書き換えて新しい関数を呼び出します。

2
素晴らしく動作し、ソリューションが将来のアップグレードに影響を与えないことをうれしく思います-実行可能なソリューションに感謝します。
-dawhoo

ちょっと@Meogiはあなたの修正が属性値に完璧だと思われますが、製品選択ボックス自体のためにすべてが整っていると確信していますか?これらを属性セット内で設定された方法で順序付けることに問題があることに気付きました。たとえば、属性セット内の「サイズ」の上に「色」をドラッグしましたが、1.9.1は2つを切り替えました(順序は無視されました)。それを修正する唯一の方法は、製品自体を編集し、構成可能内で順序をドラッグすることでした。たぶんこれは以前に手動で誤って再注文された単なる不正な製品だったのでしょうか?
ジョー

1
@Joe間違っていない場合、属性セットで属性を上下にドラッグしても、フロントエンドの製品詳細ページに表示される順序には影響しません。代わりに、カタログ->属性->属性の管理に進み、属性を見つけて「位置」値を編集する必要があります。これは、設定可能な属性が製品ページに表示される順序と、階層化されたナビゲーションの両方に影響します。構成可能なオプションの順序は、管理者の[関連製品]タブに移動し、属性を上下にドラッグすることにより、製品ごとにも上書きできます。
ダレンフェルトン

1
@Meogiは、「レイヤードナビゲーションで使用」を有効にした場合のレイヤードナビゲーションブロックの位置専用です。
ジョー

@Joeなるほど、それではデフォルト設定を変更する方法がわかりません(おそらく、属性セット内の配置であったのかどうかはわかりません)。Magento 1.9.1.0のインストールでは、構成可能な製品の[関連付けられた製品]タブでクリック/ドラッグして、選択した順序に設定することができました。クイック作成フォームと下部の製品グリッドの間にリストされている場所。
ダレンフェルトン

11

私の2セントを足しただけで、他の2つの答えは修正の方向性を示してくれましたが、ブロックプレゼンテーションポイントではなくソースで攻撃したいと思いました。

Mage_Catalog_Model_Resource_Product_Type_Configurable_Attribute_Collectionモデルの_loadPrices()メソッドを拡張することで同じ結果を得ることができます。名前にかかわらず、(おそらくパフォーマンスのために)変更が行われた場所で、属性は関連性ではなくIDで順序付けされます。

ネストされたforeachステートメントを回避するために変更が行われたように見えますが、同様に正しい順序も失われます。このソリューションでは、更新されたロジックをわずかに変更して属性オプションを追跡し、元の順序に基づいて別のループを実行して実際に追加を行います。

上記のmeogiの答えに似た調整済みのチュートリアルを次に示します


ステップ1:新しいモジュールを登録する

注:既にお持ちの場合は、既存のものを再利用してください。

# File: app/etc/modules/YourCompany_AttributeFix.xml
<?xml version="1.0"?>
<config>
    <modules>
        <YourCompany_AttributeFix>
            <active>true</active>
            <codePool>local</codePool>
            <depends>
                <Mage_Catalog />
            </depends>
        </YourCompany_AttributeFix>
    </modules>
</config>

ステップ2:モジュールの構成を作成する

# File: app/code/local/YourCompany/AttributeFix/etc/config.xml
<?xml version="1.0"?>
<config>
    <modules>
        <YourCompany_AttributeFix>
            <version>0.1.0</version>
        </YourCompany_AttributeFix>
    </modules>    
    <global>
        <models>
            <catalog_resource>
                <rewrite>
                    <product_type_configurable_attribute_collection>YourCompany_AttributeFix_Model_Resource_Product_Type_Configurable_Attribute_Collection</product_type_configurable_attribute_collection>
                </rewrite>
            </catalog_resource>
        </models>
    </global>
</config>

ステップ3:リソースモデル拡張機能を追加する

# File: app/code/local/YourCompany/AttributeFix/Model/Resource/Product/Type/Configurable/Attribute/Collection.php
/**
 * Catalog Configurable Product Attribute Collection - overridden to re-enable the attribute option
 * sorting by relevance rather than by ID as changed in the Magento core class
 */
class YourCompany_AttributeFix_Model_Resource_Product_Type_Configurable_Attribute_Collection
    extends Mage_Catalog_Model_Resource_Product_Type_Configurable_Attribute_Collection
{
    /**
     * Load attribute prices information
     *
     * @return Mage_Catalog_Model_Resource_Product_Type_Configurable_Attribute_Collection
     */
    protected function _loadPrices()
    {
        if ($this->count()) {
            $pricings = array(
                0 => array()
            );

            if ($this->getHelper()->isPriceGlobal()) {
                $websiteId = 0;
            } else {
                $websiteId = (int)Mage::app()->getStore($this->getStoreId())->getWebsiteId();
                $pricing[$websiteId] = array();
            }

            $select = $this->getConnection()->select()
                ->from(array('price' => $this->_priceTable))
                ->where('price.product_super_attribute_id IN (?)', array_keys($this->_items));

            if ($websiteId > 0) {
                $select->where('price.website_id IN(?)', array(0, $websiteId));
            } else {
                $select->where('price.website_id = ?', 0);
            }

            $query = $this->getConnection()->query($select);

            while ($row = $query->fetch()) {
                $pricings[(int)$row['website_id']][] = $row;
            }

            $values = array();

            foreach ($this->_items as $item) {
                $productAttribute = $item->getProductAttribute();
                if (!($productAttribute instanceof Mage_Eav_Model_Entity_Attribute_Abstract)) {
                    continue;
                }
                $options = $productAttribute->getFrontend()->getSelectOptions();

                $optionsByValue = array();
                foreach ($options as $option) {
                    $optionsByValue[$option['value']] = $option['label'];
                }

                /**
                 * Modification to re-enable the sorting by relevance for attribute options
                 * @author Robbie Averill <robbie.averill@kathmandu.co.nz>
                 */
                $toAdd = array();
                foreach ($this->getProduct()->getTypeInstance(true)
                             ->getUsedProducts(array($productAttribute->getAttributeCode()), $this->getProduct())
                         as $associatedProduct) {

                    $optionValue = $associatedProduct->getData($productAttribute->getAttributeCode());

                    if (array_key_exists($optionValue, $optionsByValue)) {
                        $toAdd[] = $optionValue;
                    }
                }

                // Add the attribute options, but in the relevant order rather than by ID
                foreach (array_intersect_key($optionsByValue, array_flip($toAdd)) as $optionValueKey => $optionValue) {
                    // If option available in associated product
                    if (!isset($values[$item->getId() . ':' . $optionValue])) {
                        // If option not added, we will add it.
                        $values[$item->getId() . ':' . $optionValueKey] = array(
                            'product_super_attribute_id' => $item->getId(),
                            'value_index'                => $optionValueKey,
                            'label'                      => $optionsByValue[$optionValueKey],
                            'default_label'              => $optionsByValue[$optionValueKey],
                            'store_label'                => $optionsByValue[$optionValueKey],
                            'is_percent'                 => 0,
                            'pricing_value'              => null,
                            'use_default_value'          => true
                        );
                    }
                }
                /**
                 * End attribute option order modification
                 * @author Robbie Averill <robbie.averill@kathmandu.co.nz>
                 */
            }

            foreach ($pricings[0] as $pricing) {
                // Addding pricing to options
                $valueKey = $pricing['product_super_attribute_id'] . ':' . $pricing['value_index'];
                if (isset($values[$valueKey])) {
                    $values[$valueKey]['pricing_value']     = $pricing['pricing_value'];
                    $values[$valueKey]['is_percent']        = $pricing['is_percent'];
                    $values[$valueKey]['value_id']          = $pricing['value_id'];
                    $values[$valueKey]['use_default_value'] = true;
                }
            }

            if ($websiteId && isset($pricings[$websiteId])) {
                foreach ($pricings[$websiteId] as $pricing) {
                    $valueKey = $pricing['product_super_attribute_id'] . ':' . $pricing['value_index'];
                    if (isset($values[$valueKey])) {
                        $values[$valueKey]['pricing_value']     = $pricing['pricing_value'];
                        $values[$valueKey]['is_percent']        = $pricing['is_percent'];
                        $values[$valueKey]['value_id']          = $pricing['value_id'];
                        $values[$valueKey]['use_default_value'] = false;
                    }
                }
            }

            foreach ($values as $data) {
                $this->getItemById($data['product_super_attribute_id'])->addPrice($data);
            }
        }
        return $this;
    }
}

ステップ4:キャッシュをクリアする


参考のため、aのコアクラスへの実際の変更git diffは以下になります(コアファイルを直接編集しないでください!):

diff --git a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php
index 135d9d3..4d2a59b 100644
--- a/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php
+++ b/app/code/core/Mage/Catalog/Model/Resource/Product/Type/Configurable/Attribute/Collection.php
@@ -254,6 +254,11 @@ class Mage_Catalog_Model_Resource_Product_Type_Configurable_Attribute_Collection
                     $optionsByValue[$option['value']] = $option['label'];
                 }

+                /**
+                 * Modification to re-enable the sorting by relevance for attribute options
+                 * @author Robbie Averill <robbie.averill@kathmandu.co.nz>
+                 */
+                $toAdd = array();
                 foreach ($this->getProduct()->getTypeInstance(true)
                              ->getUsedProducts(array($productAttribute->getAttributeCode()), $this->getProduct())
                          as $associatedProduct) {
@@ -261,22 +266,31 @@ class Mage_Catalog_Model_Resource_Product_Type_Configurable_Attribute_Collection
                     $optionValue = $associatedProduct->getData($productAttribute->getAttributeCode());

                     if (array_key_exists($optionValue, $optionsByValue)) {
-                        // If option available in associated product
-                        if (!isset($values[$item->getId() . ':' . $optionValue])) {
-                            // If option not added, we will add it.
-                            $values[$item->getId() . ':' . $optionValue] = array(
-                                'product_super_attribute_id' => $item->getId(),
-                                'value_index'                => $optionValue,
-                                'label'                      => $optionsByValue[$optionValue],
-                                'default_label'              => $optionsByValue[$optionValue],
-                                'store_label'                => $optionsByValue[$optionValue],
-                                'is_percent'                 => 0,
-                                'pricing_value'              => null,
-                                'use_default_value'          => true
-                            );
-                        }
+                        $toAdd[] = $optionValue;
                     }
                 }
+
+                // Add the attribute options, but in the relevant order rather than by ID
+                foreach (array_intersect_key($optionsByValue, array_flip($toAdd)) as $optionValueKey => $optionValue) {
+                    // If option available in associated product
+                    if (!isset($values[$item->getId() . ':' . $optionValue])) {
+                        // If option not added, we will add it.
+                        $values[$item->getId() . ':' . $optionValueKey] = array(
+                            'product_super_attribute_id' => $item->getId(),
+                            'value_index'                => $optionValueKey,
+                            'label'                      => $optionsByValue[$optionValueKey],
+                            'default_label'              => $optionsByValue[$optionValueKey],
+                            'store_label'                => $optionsByValue[$optionValueKey],
+                            'is_percent'                 => 0,
+                            'pricing_value'              => null,
+                            'use_default_value'          => true
+                        );
+                    }
+                }
+                /**
+                 * End attribute option order modification
+                 * @author Robbie Averill <robbie.averill@kathmandu.co.nz>
+                 */
             }

             foreach ($pricings[0] as $pricing) {

参照用に必要な場合は、GitHubにもあります。

編集:Magentoのバグとしてこれも記録しました


1
私の友人の素晴らしい貢献。+1(はい、これらのコメントを使用して感謝を言うわけではありませんが、あなたはそれを殺したので、私は笑わなければなりません)
ダレンフェルトン

magento 1.9.2で試してみました-doenstは残念ながら動作するようです。そして、このバグがMagentoによってまだ修正されていない理由を理解できません。
ラインシュ

モジュールが正しく構成されていることを確認しましたか?彼らはそれを知っていると確信していますが、システムの非常に重要な部分であるため、パッチをリリースする前に検証するのに時間がかかるでしょう。編集:修正を直接(および一時的に)テストすることもできますが、パッチを直接コアクラスに(一時的に)コピーします
ロビーアヴェリル

1
@Reinsch私はCE 1.9.2との互換性について、誰かからのメールを持っていた-への更新をプッシュしている私のGitHubリポジトリとMagentoのサンプルデータとCE 1.9.2上でそれをテストし、それが正しく働いている
ロビーエーヴリル

1
素晴らしい仕事@RobbieAverill-どうもありがとう。Magento 1.9.2.1 Webサイトでの動作をテストおよび確認しました。
ジゴジャコ

3

これは実際には適切な修正ではありませんが、次のMagentoリリースで問題が適切に修正されるまで1.9.0.1に戻らないようにするために一時的に行ったものです。オプション値をアルファベット順にソートしますが、もちろんあなたはあなたが望むものでソートできますが、バックエンドのソート順セットにアクセスする方法はわかりませんし、アルファベット順では私の目的には十分です。

ファイルを変更する

/app/code/core/Mage/Catalog/Block/Product/View/Type/configurable.php

行215を変更

if($this->_validateAttributeInfo($info)) {
   $attributes[$attributeId] = $info;
}

usort($info['options'], function ($a,$b)
    {
        return strcmp($a['label'],$b['label']);
    }
);
if($this->_validateAttributeInfo($info)) {
   $attributes[$attributeId] = $info;
}

2
Magentoのコアライブラリを直接変更するのではなく、適切に拡張する回答については、私の回答を参照してください。それでも、私が思いついたソリューションの開発をどこから始めればよいかを知るのに大いに役立ったので、この答えをスティーブに賞賛します。
ダレンフェルトン

エクセレントは.. Enterpriseで魔法のようにあなたが私の一日保存しても感謝トンを働いた
バーラト
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.