การจัดเรียงแอตทริบิวต์ของผลิตภัณฑ์วีโอไอพี 1.9.1 ที่กำหนดค่าได้


24

ดังที่ฉันได้กล่าวไปแล้วดูเหมือนว่าจะมีปัญหากับคุณภาพเยี่ยม 1.9.1 และการเรียงลำดับคุณลักษณะของผลิตภัณฑ์ที่กำหนดค่าได้ ตัวเลือกของผลิตภัณฑ์ที่สามารถกำหนดค่าได้ตอนนี้ขึ้นอยู่กับรหัสผลิตภัณฑ์ของผลิตภัณฑ์แบบง่าย ลำดับของตัวเลือกคุณลักษณะจะถูกละเว้น

ฉันกลับไปที่วีโอไอพี 1.9.0.1 บางทีใครบางคนสามารถกำหนดวิธีการเรียงลำดับใน 1.9.1 มันจะดีสำหรับทุกคนที่ใช้ผลิตภัณฑ์ที่กำหนดค่าได้เพื่อแก้ไขปัญหานั้น

หากใครต้องการเห็นคุณสามารถทำได้ที่นี่ในร้านค้าตัวอย่างของวีโอไอพี ฉันไม่สามารถเรียงขนาดได้อย่างถูกต้อง

คำตอบ:


25

หมายเหตุ:เราได้รับความสนใจว่าระบบนี้ใช้ไม่ได้กับ Magento 1.9.2 เพื่อที่จะช่วยผู้อื่นเสียเวลาฉันต้องการชี้ให้เห็นที่ด้านบนของโพสต์นี้ ถ้าฉันพัฒนาโซลูชันของตัวเองหรือค้นหาโซลูชันของคนอื่นที่ใช้งานได้กับ 1.9.2 ฉันจะอัปเดตโพสต์นี้ในเวลานั้น

แจ้งให้ทราบล่วงหน้า:การแก้ปัญหาที่วางไว้ที่นี่ขยายไฟล์คลาสบล็อกในห้องสมุดแกนหลักของวีโอไอพี ฉันได้ตรวจสอบซอร์สโค้ดของ Magento ก่อนวิธีการนี้และกำหนดว่าไม่มีเหตุการณ์ที่ดีที่จะสังเกตเพื่อหลีกเลี่ยงวิธีการนี้ หากในเวอร์ชันอนาคตของ Magento ปัญหาการเรียงลำดับนี้ได้รับการแก้ไขคุณสามารถยกเลิกการเปลี่ยนแปลงด้านล่างได้โดยเพียงปิดการใช้งานส่วนขยายในไฟล์ XML ของแอพ / etc / modules

ขั้นตอนที่ 1:สร้างแอปไฟล์/ 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 ให้สร้างไดเรกทอรีสำหรับไฟล์เหล่านี้ตามความจำเป็น ตัวอย่างเช่นคุณอาจมีแอพไดเรคทอรี / รหัส / โลคัลหรือคุณอาจไม่ได้ขึ้นอยู่กับว่าคุณติดตั้งส่วนขยายใดบนไซต์ของคุณ

ขั้นตอนที่ 2:สร้างแอปไฟล์/ รหัส / ท้องถิ่น / 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:สร้างแอปไฟล์/ รหัส / ท้องถิ่น / FirstScribe / CatalogOptionSortFix / บล็อก / ผลิตภัณฑ์ / ดู / ประเภท / 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:หากเปิดใช้งานให้รีเฟรชประเภทแคช "การกำหนดค่า" ของวีโอไอพีภายใต้ระบบ -> การจัดการแคชของแผงการดูแลระบบ

ภาพรวมส่วนขยาย

  1. ขยายคลาส Mage_Catalog_Block_Product_View_Type_Configurable
  2. เพิ่มวิธีการเรียงลำดับตัวเลือกตามpositionมูลค่าโดยดึงข้อมูลนี้จากฐานข้อมูล
  3. เขียนเมธอด getJsonConfig เพื่อเรียกใช้ฟังก์ชันใหม่ของเราหลังจากรวบรวมตัวเลือกสำหรับแอตทริบิวต์

2
ทำงานได้อย่างน่าอัศจรรย์และฉันดีใจที่โซลูชันไม่ส่งผลกระทบต่อการอัพเกรดในอนาคต - ขอบคุณมากสำหรับโซลูชันที่ทำงานได้
dawhoo

สวัสดี @Meogi ถึงแม้ว่าการแก้ไขของคุณจะสมบูรณ์แบบสำหรับค่าคุณลักษณะเราแน่ใจว่าทุกอย่างอยู่ในลำดับที่ผลิตภัณฑ์จะเลือกกล่องเองหรือไม่ พบปัญหาในการสั่งซื้อวิธีการตั้งค่าภายในชุดคุณลักษณะ ตัวอย่างเช่น - เรามี "สี" ลากเหนือ "ขนาด" ภายในชุดแอตทริบิวต์อย่างไรก็ตาม 1.9.1 สลับทั้งสอง (ละเว้นการสั่งซื้อ) วิธีเดียวในการแก้ไขที่แก้ไขผลิตภัณฑ์นั้นและลากคำสั่งซื้อภายในกำหนดค่าได้ บางทีนี่อาจเป็นเพียงผลิตภัณฑ์อันธพาลที่เคยสั่งใหม่ด้วยตนเองโดยไม่ได้ตั้งใจมาก่อนหรือไม่
Joe

1
@Joe หากฉันไม่เข้าใจผิดให้ลากแอตทริบิวต์ที่สูงขึ้น / ต่ำลงในชุดคุณลักษณะจะไม่ส่งผลกระทบต่อลำดับที่แสดงในหน้ารายละเอียดผลิตภัณฑ์ส่วนหน้า คุณต้องเข้าไปที่แคตตาล็อก -> คุณสมบัติ -> จัดการคุณสมบัติค้นหาแอตทริบิวต์ของคุณและแก้ไขค่า "ตำแหน่ง" สิ่งนี้จะส่งผลต่อทั้งลำดับที่แอททริบิวต์ที่กำหนดค่าได้จะแสดงในหน้าผลิตภัณฑ์เช่นเดียวกับการนำทางแบบเลเยอร์ ลำดับของตัวเลือกที่กำหนดค่าได้นั้นสามารถแทนที่ได้ในแต่ละผลิตภัณฑ์เช่นกันโดยไปที่แท็บ "ผลิตภัณฑ์ที่เกี่ยวข้อง" ในผู้ดูแลระบบและลากคุณลักษณะขึ้น / ลงที่นั่น
Darren Felton

1
@Meogi นี่เป็นเพียงสำหรับ Layered Navigation Block position เมื่อคุณเปิดใช้งาน "Use in Layered Navigation"
Joe

@ โจฉันเห็นแล้วฉันไม่ทราบวิธีการเปลี่ยนการตั้งค่าเริ่มต้น (บางทีมันอาจจะเคยเป็นตำแหน่งในชุดคุณลักษณะฉันไม่แน่ใจ) ฉันสามารถระบุได้ว่าในการติดตั้ง Magento 1.9.1.0 ฉันยังคงสามารถตั้งค่าตามลำดับที่ฉันเลือกได้โดยคลิก / ลากขึ้น / ลงในแท็บ "ผลิตภัณฑ์ที่เกี่ยวข้อง" ของผลิตภัณฑ์ที่กำหนดค่าได้ ตำแหน่งที่จะแสดงรายการระหว่างฟอร์มที่สร้างอย่างรวดเร็วและตารางผลิตภัณฑ์ที่ด้านล่าง
Darren Felton

11

เพียงเพื่อเพิ่มสองเซ็นต์ของฉันอีกสองคำตอบทำได้ดีมากที่จะชี้ให้ฉันไปในทิศทางของการแก้ไข แต่ฉันคิดว่าฉันจะโจมตีมันที่แหล่งข้อมูลแทนที่จะเป็นจุดนำเสนอบล็อก

คุณสามารถบรรลุผลลัพธ์เดียวกันโดยการขยายวิธีการ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ถ้าใครต้องการมันสำหรับการอ้างอิง

แก้ไข:ฉันยังบันทึกไว้ว่าเป็นปัญหากับวีโอไอพี


1
มีส่วนร่วมที่น่ากลัวเพื่อนของฉัน 1 (ใช่ไม่ควรที่จะใช้ความคิดเห็นเหล่านี้จะกล่าวขอบคุณ แต่คุณฆ่ามันดังนั้นฉันต้อง haha)
ดาร์เรนเฟลตัน

ฉันลองใช้ magento 1.9.2 ดูสิดูเหมือนว่าจะทำงานได้ไม่ดี และฉันไม่เข้าใจว่าทำไมข้อผิดพลาดนี้ถึงยังไม่ได้รับการแก้ไขโดย Magento
Reinsch

คุณแน่ใจหรือไม่ว่าโมดูลของคุณได้รับการกำหนดค่าอย่างถูกต้อง? ฉันแน่ใจว่าพวกเขาตระหนักถึงมัน แต่อาจเป็นสิ่งที่ต้องใช้เวลาในการตรวจสอบก่อนที่จะปล่อยแพทช์เนื่องจากเป็นส่วนสำคัญของระบบ แก้ไข:คุณสามารถทดสอบการแก้ไขโดยตรง (และชั่วคราว) แต่การคัดลอกโปรแกรมแก้ไขโดยตรงในชั้นเรียนหลัก (ชั่วคราว)
Robbie Averill

1
@Reinsch ฉันเพิ่งได้รับอีเมลจากใครบางคนเกี่ยวกับความไม่ลงรอยกันกับ CE 1.9.2 - ได้ผลักดันการอัปเดตไปยังที่เก็บ Github ของฉันและทดสอบใน CE 1.9.2 ด้วยข้อมูลตัวอย่าง Magento และทำงานได้อย่างถูกต้องตอนนี้
Robbie Averill

1
ผลงานยอดเยี่ยม @ RobbieAverill - ขอบคุณมาก ทดสอบและยืนยันการทำงานบนเว็บไซต์ Magento 1.9.2.1
zigojacko

3

นี่ไม่ใช่การแก้ไขที่เหมาะสม แต่เป็นสิ่งที่ฉันทำชั่วคราวเพื่อหลีกเลี่ยงการกลับไปที่ 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 อย่างเหมาะสมแทนที่จะแก้ไขโดยตรง ถึงกระนั้นก็ขอชื่นชมสตีฟสำหรับคำตอบนี้เพราะมันช่วยฉันได้มากในการรู้ว่าจะเริ่มต้นพัฒนาโซลูชั่นที่ฉันคิดขึ้นมาได้อย่างไร
Darren Felton

ทำงานได้อย่างยอดเยี่ยมเหมือนมีเสน่ห์ในองค์กรแม้จะขอบคุณมากที่คุณช่วยฉันทั้งวัน ..
Bharath
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.