2

我为magento安装了一个脚本。它允许添加对订单的评论。所以它在订单网格上显示一条评论。

问题是它没有按“created_at”列对评论进行排序。我不知道如何设置订单。

这是代码的一部分:

 protected function _initSelect()
{
    parent::_initSelect();

    // Join order comment
    $this->getSelect()->joinLeft(
        array('ordercomment_table' => $this->getTable('sales/order_status_history')),
        'main_table.entity_id = ordercomment_table.parent_id AND ordercomment_table.comment IS NOT NULL',
        array(
            'ordercomment' => 'ordercomment_table.comment',
        )
    )->group('main_table.entity_id');

    return $this;
}

谢谢你的帮助。

4

2 回答 2

5
protected function _initSelect()
{
    parent::_initSelect();

    // Join order comment
    $this->getSelect()->joinLeft(
        array('ordercomment_table' => $this->getTable('sales/order_status_history')),
        'main_table.entity_id = ordercomment_table.parent_id AND ordercomment_table.comment IS NOT NULL',
        array(
            'ordercomment' => 'ordercomment_table.comment',
        )
    )->group('main_table.entity_id');

    //Add ORDER BY
    $this->getSelect()->order(array('ordercomment_table.created_at DESC'));

    return $this;
}
于 2012-12-19T20:07:13.607 回答
1

替换上述现有函数中的这一行。添加一个 ORDER BY。

$this->getSelect()->order('ordercomment_table.created_at', 'DESC');
于 2012-12-21T07:24:05.127 回答