我根据http://wrightcreativelabs.com/create-a-custom-magento-report-product-skus-in-new-orders/上的教程制作了自定义报告。该报告原样运作良好。现在,我尝试在报告中添加客户评论列。客户评论来自One Page Checkout扩展程序。我添加了列:
$this->addColumn('comment', array(
'header' => Mage::helper('reportneworders')->__('Special Instructions'),
'align' => 'left',
'sortable' => false,
'index' => 'comment'
));
问题出在集合中。礼品消息有效,但添加评论后,报告将被破坏。我知道我必须使用错误的ID或引用评论。
->joinLeft(
array('c' => 'order_comment'),
'c.order_comment = order_items.order_comment',
array(
'comment' => 'comment'
))
->joinLeft(
array('g' => 'gift_message'),
'g.gift_message_id = order_items.gift_message_id',
array(
'message' => 'message'
))
评论的One Page Checkout textarea如下所示:
<textarea name="order-comment" id="order-comment"><?php echo trim(Mage::getSingleton('customer/session')->getOrderCustomerComment()) ?></textarea>
我感谢任何建议。