2
我有呼叫中心代理根據電子郵件地址搜索客戶的要求。但我不想在客戶網格中顯示電子郵件地址,除非他們搜索電子郵件。Magento客戶網格 - 掩碼電子郵件地址
我該怎麼做?
Magento版本:1.4.1.1
在此先感謝您。
我有呼叫中心代理根據電子郵件地址搜索客戶的要求。但我不想在客戶網格中顯示電子郵件地址,除非他們搜索電子郵件。Magento客戶網格 - 掩碼電子郵件地址
我該怎麼做?
Magento版本:1.4.1.1
在此先感謝您。
編寫擴展自定義模塊:
/app/code/core/Mage/Adminhtml/Block/Customer/Grid.php
更多@How to get data for an entity (for example customer) from eav_attribute table to be shown in Customer Grid for admin(刪除與sales_order_grid線)
複製 '_prepareColumns()' 方法,以您的自定義模塊,並改變
$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
除了一些語法錯誤,你的代碼的偉大工程。非常感謝你。 – TheGodWings
我的代碼未經測試...您能否發佈語法錯誤,以便我可以更新上面的代碼 –