gpt4 book ai didi

magento - 如何在 magento 1.4 中将客户电子邮件添加到订单网格

转载 作者:行者123 更新时间:2023-12-02 10:34:13 26 4
gpt4 key购买 nike

我在网上找到了几种方法,但似乎都不起作用。有谁知道如何在 Magento 1.4 中将客户电子邮件添加到订单网格中

最佳答案

复制
app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php

应用程序/代码/本地/Mage/Adminhtml/Block/Sales/Order/Grid.php

然后在下面一行

$collection = Mage::getResourceModel($this->_getCollectionClass());

添加

$collection->getSelect()->joinLeft(array('sfo'=>'sales_flat_order'),'sfo.entity_id=main_table.entity_id',array('sfo.customer_email'));

然后在_prepareColumns()方法中添加

    $this->addColumn('customer_email', array(
'header' => Mage::helper('sales')->__('Customer Email'),
'index' => 'customer_email',
'filter_index' => 'sfo.customer_email',
));

注意。您需要向指向 main_table.field_name 的 addColumn 的所有调用添加“filter_index”

关于magento - 如何在 magento 1.4 中将客户电子邮件添加到订单网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6416864/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com