Magento 管理员,按职位和姓名简称

Magento admin, short by position and name

我想在管理中按位置排序,当某些产品相同时,按名称排序。

目录 > 管理类别 > "Select categorie" > 类别产品 > 按位置排序

但我找不到完成这项工作的方法。有什么想法吗?

差不多所有分类的东西都在:

app/code/core/Mage/Adminhtml/Block/Widget/Grid.php

我正在寻找的功能(已经修改以适合我的 pourpouse):

protected function _setCollectionOrder($column)
{
    $collection = $this->getCollection();
    if ($collection) {
        $columnIndex = $column->getFilterIndex() ?
            $column->getFilterIndex() : $column->getIndex();
        $collection->setOrder($columnIndex, strtoupper($column->getDir()))

            ->setOrder('entity_id', 'asc'); // new line
    }
    return $this;
}