用户登录
用户注册

分享至

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

  • 作者: 晗風袭来
  • 来源: 51数据库
  • 2022-11-01

问题描述

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

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/*****html/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 ***** (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_*****html_Renderer_Data()  // added this line
    ));

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

创建类:

 class MageIgniter_MaskEmail_Block_*****html_Renderer_Data extends Mage_*****html_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://www.51sjk.com/Upload/Articles/1/0/335/335567_20221101155238747.jpg

         // 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

软件
前端设计
程序设计
Java相关