如何在比较页面Magento上显示相同的产品属性排序

问题描述 投票:0回答:2

我不确定为什么比较页面上的产品属性的排序与产品页面上的工作属性不同。就像产品页面上的属性排序一样

在产品页面上

1 name 
2 new attribute 
3 new attribute1 
4 color

但在比较页面,当我比较2个产品具有相同的属性时,属性排序顺序变为

在比较页面上

1 name
2 color
3 new attribute
4 new attribute1 

我google了很多找到答案,但无法找到。请帮我解决这个问题。

以下是我找到的功能

public function getComparableAttributes()
    {
        if (is_null($this->_comparableAttributes)) {
            $this->_comparableAttributes = array();
            $setIds = $this->_getAttributeSetIds();
            if ($setIds) {
                $attributeIds = $this->_getAttributeIdsBySetIds($setIds);

                $select = $this->getConnection()->select()
                    ->from(array('main_table' => $this->getTable('eav/attribute')))
                    ->join(
                        array('additional_table' => $this->getTable('catalog/eav_attribute')),
                        'additional_table.attribute_id=main_table.attribute_id'
                    )
                    ->joinLeft(
                        array('al' => $this->getTable('eav/attribute_label')),
                        'al.attribute_id = main_table.attribute_id AND al.store_id = ' . (int) $this->getStoreId(),
                        array('store_label' => $this->getConnection()->getCheckSql('al.value IS NULL', 'main_table.frontend_label', 'al.value'))
                    )
                    ->where('additional_table.is_comparable=?', 1)
                    ->where('main_table.attribute_id IN(?)', $attributeIds);
                $attributesData = $this->getConnection()->fetchAll($select);
                if ($attributesData) {
                    $entityType = Mage_Catalog_Model_Product::ENTITY;
                    Mage::getSingleton('eav/config')
                        ->importAttributesData($entityType, $attributesData);
                    foreach ($attributesData as $data) {
                        $attribute = Mage::getSingleton('eav/config')
                            ->getAttribute($entityType, $data['attribute_code']);
                        $this->_comparableAttributes[$attribute->getAttributeCode()] = $attribute;
                    }
                    unset($attributesData);
                }
            }
        }
        return $this->_comparableAttributes;
    }

/**
 * Load Comparable attributes
 *
 * @return Mage_Catalog_Model_Resource_Product_Compare_Item_Collection
 */
public function loadComparableAttributes()
{
    $comparableAttributes = $this->getComparableAttributes();
    $attributes = array();
    foreach ($comparableAttributes as $attribute) {
        $attributes[] = $attribute->getAttributeCode();
    }
    $this->addAttributeToSelect($attributes);

    return $this;
}

我不明白如何按排序顺序过滤它。请建议

magento sorting attributes compare webpage
2个回答
0
投票

在产品页面上,属性按属性集排序。

在比较页面属性根本没有排序。您可以在类Mage_Catalog_Model_Resource_Product_Compare_Item_Collection中重写函数getComparableAttributes并实现您自己的排序逻辑。

但请注意,此功能在不同的Magento版本中有所不同。您可以尝试使用免费扩展ET Advanced Compare或从此扩展中获取部分代码(代码可在bitbucket.org上找到。链接i在扩展页面上)


0
投票

检查下面函数中的修改:使用的文件是vendor / magento / module-catalog / Model / ResourceModel / Product / Compare / Item / Collection.php但这不是最好的方法。你需要按照Magento标准覆盖它。我正在努力,很快就会更新。

public function getComparableAttributes()
{
    if ($this->_comparableAttributes === null) {
        $this->_comparableAttributes = [];
        $setIds = $this->_getAttributeSetIds();
        if ($setIds) {
            $attributeIds = $this->_getAttributeIdsBySetIds($setIds);

            $select = $this->getConnection()->select()->from(
                ['main_table' => $this->getTable('eav_attribute')]
            )->join(
                ['additional_table' => $this->getTable('catalog_eav_attribute')],
                'additional_table.attribute_id=main_table.attribute_id'
            )->joinLeft(
                ['al' => $this->getTable('eav_attribute_label')],
                'al.attribute_id = main_table.attribute_id AND al.store_id = ' . (int)$this->getStoreId(),
                [
                    'store_label' => $this->getConnection()->getCheckSql(
                        'al.value IS NULL',
                        'main_table.frontend_label',
                        'al.value'
                    )
                ]
            )
                    ->joinLeft( //add sort order to sort the attributes as per backend sort.  -- Abid
                ['as' => $this->getTable('eav_entity_attribute')],
                'as.attribute_id = main_table.attribute_id'
            )
                    ->where(
                'additional_table.is_comparable=?',
                1
            )->where(
                'main_table.attribute_id IN(?)',
                $attributeIds
            )
                    ->order('as.sort_order') //sort by sort_order -- Abid
                    ;
            $attributesData = $this->getConnection()->fetchAll($select);
            if ($attributesData) {
                $entityType = \Magento\Catalog\Model\Product::ENTITY;
                $this->_eavConfig->importAttributesData($entityType, $attributesData);
                foreach ($attributesData as $data) {
                    $attribute = $this->_eavConfig->getAttribute($entityType, $data['attribute_code']);
                    $this->_comparableAttributes[$attribute->getAttributeCode()] = $attribute;
                }
                unset($attributesData);
            }
        }
    }
    return $this->_comparableAttributes;
}
© www.soinside.com 2019 - 2024. All rights reserved.