该补丁需要一些修改才能工作。然而,代码最好放在不同类的模型重写中。
对我有用的解决方案是覆盖Mage_Eav_Model_Entity_Attribute_Source_Table::addValueSortToCollection
并将以下代码添加到函数的末尾:
$attribute = $this->getAttribute();
$order = $attribute->getAttributeCode();
$dir = strtoupper($dir);
$collection->getSelect()->reset(Zend_Db_Select::ORDER);
$collection->getSelect()
->joinLeft('eav_attribute_option AS eao', "eao.option_id=IF({$order}_t2.value_id > 0, {$order}_t2.value, {$order}_t1.value)", array("sort_order" => 'eao.option_id'))
->order(new Zend_Db_Expr('eao.sort_order '.$dir));
必须注意,这将替换每个目录集合和每个属性的 option_id 排序的值排序,其源模型类是eav/entity_attribute_source_table