Magento 用のスクリプトをインストールしました。注文にコメントを追加できます。したがって、注文グリッドに 1 つのコメントが表示されます。
問題は、「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;
}
ご協力いただきありがとうございます。