Magento 客户网格 - 屏蔽电子邮件地址

Magento Customer Grid - Mask Email address(Magento 客户网格 - 屏蔽电子邮件地址)
本文介绍了Magento 客户网格 - 屏蔽电子邮件地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我要求呼叫中心代理根据电子邮件地址搜索客户.但我不想在客户网格中显示电子邮件地址,除非他们搜索电子邮件.

I have a requirement for call centre agents to search for a customer based on email address. But I don't want to show the email address in the customer grid unless they search for a email.

我该怎么做??

Magento 版本:1.4.1.1

Magento Version: 1.4.1.1

提前致谢.

推荐答案

编写一个扩展的自定义模块:

Write a custom module that extend:

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

阅读更多@如何从 eav_attribute 表中获取实体(例如客户)的数据以显示在客户网格中以供管理员使用(删除带有 sales_order_grid 的行)

Read more @ How to get data for an entity (for example customer) from eav_attribute table to be shown in Customer Grid for admin (remove line with sales_order_grid)

将 '_prepareColumns()' 方法复制到您的自定义模块并进行更改

Copy '_prepareColumns()' method to your custom module and change

    $this->addColumn('email', array(
        'header'    => Mage::helper('customer')->__('Email'),
        'width'     => '150',
        'index'     => 'email'
        'renderer' = new MageIgniter_MaskEmail_Block_Adminhtml_Renderer_Data()  // added this line
    ));

阅读更多@http://www.magentocommerce.com/boards/viewthread/192232/#t239222

创建类:

 class MageIgniter_MaskEmail_Block_Adminhtml_Renderer_Data extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Action
 {
    public function render(Varien_Object $row)
     {
         return $this->_getValue($row);
     }

     public function _getValue(Varien_Object $row)
     {
         $val = $row->getData($this->getColumn()->getIndex());  // row value

         $search_filter = base64_decode($this->getRequest()->getParam('filter'));
         // print_r($search_filter) : email=rs%40cs.com&customer_since%5Blocale%5D=en_US
         //read more @ http://inchoo.net/ecommerce/magento/what-is-base64-encoding-and-how-can-we-benefit-from-it/

         // check if $search_filter contain email and equal to the search email
         parse_str($search_filter, $query)
         if(isset($query['email'] && $val == $query['email']){  // or array_key_exist()
            return $val;
         }
         else{
             return 'xxxxxxxx';
         }

     } 
 }

这是基于 Magento v1.7

This is base off Magento v1.7

这篇关于Magento 客户网格 - 屏蔽电子邮件地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)