2013-03-07 56 views
1

我想自定义操作添加到Magento的客户网页。添加新的客户行动,Magento的客户网

我有两个模块:一个叫经理这是一个客户服务呼叫记录有原因客户来电列表,即“一般信息”,“订单查询”,“诈呼”。所有的原因都存储在数据库中。 “经理”模块类似于将客户分配给群组的方式。

被称为Customergrid第二模块延伸Mage_Adminhtml_Block_Customer_Grid

这里就是我加入名为下拉菜单中的选项“添加到通话记录”。我希望以类似的方式工作,以便将客户添加到“群组”中。如果我从网格中选择列表中的用户,选择“添加到通话记录”,然后我需要从另一个下拉列表中选择(酷似增加客户群)一个“理由”,并点击保存。

问题:

我需要找到一种方法来显示在下拉列表中上榜理由。

这里是customergrid模块我的Grid.php代码:

<?php 
class Module_Customergrid_Block_Adminhtml_Customer_Grid extends Mage_Adminhtml_Block_Customer_Grid 
{ 

public function __construct() 
    { 
     parent::__construct(); 
     $this->setId('customerGrid'); 
     $this->setUseAjax(true); 
     $this->setDefaultSort('entity_id'); 
     $this->setSaveParametersInSession(true); 
    } 

    protected function _prepareCollection() 
    { 
     $collection = Mage::getResourceModel('customer/customer_collection') 
      ->addNameToSelect() 
      ->addAttributeToSelect('email') 
      ->addAttributeToSelect('created_at') 
      ->addAttributeToSelect('group_id') 
      ->joinAttribute('billing_postcode', 'customer_address/postcode', 'default_billing', null, 'left') 
      ->joinAttribute('billing_city', 'customer_address/city', 'default_billing', null, 'left') 
      ->joinAttribute('billing_telephone', 'customer_address/telephone', 'default_billing', null, 'left') 
      ->joinAttribute('billing_region', 'customer_address/region', 'default_billing', null, 'left') 
      ->joinAttribute('billing_country_id', 'customer_address/country_id', 'default_billing', null, 'left'); 

     $this->setCollection($collection); 

     return parent::_prepareCollection(); 
    } 

    protected function _prepareColumns() 
    { 
     $this->addColumn('entity_id', array(
      'header' => Mage::helper('customer')->__('ID'), 
      'width'  => '50px', 
      'index'  => 'entity_id', 
      'type' => 'number', 
     )); 
     /*$this->addColumn('firstname', array(
      'header' => Mage::helper('customer')->__('First Name'), 
      'index'  => 'firstname' 
     )); 
     $this->addColumn('lastname', array(
      'header' => Mage::helper('customer')->__('Last Name'), 
      'index'  => 'lastname' 
     ));*/ 
     $this->addColumn('name', array(
      'header' => Mage::helper('customer')->__('Name'), 
      'index'  => 'name' 
     )); 
     $this->addColumn('email', array(
      'header' => Mage::helper('customer')->__('Email'), 
      'width'  => '150', 
      'index'  => 'email' 
     )); 

     $groups = Mage::getResourceModel('customer/group_collection') 
      ->addFieldToFilter('customer_group_id', array('gt'=> 0)) 
      ->load() 
      ->toOptionHash(); 

     $this->addColumn('group', array(
      'header' => Mage::helper('customer')->__('Group'), 
      'width'  => '100', 
      'index'  => 'group_id', 
      'type'  => 'options', 
      'options' => $groups, 
     )); 

     $this->addColumn('Telephone', array(
      'header' => Mage::helper('customer')->__('Telephone'), 
      'width'  => '100', 
      'index'  => 'billing_telephone' 
     )); 

     $this->addColumn('billing_postcode', array(
      'header' => Mage::helper('customer')->__('ZIP'), 
      'width'  => '90', 
      'index'  => 'billing_postcode', 
     )); 

     $this->addColumn('billing_country_id', array(
      'header' => Mage::helper('customer')->__('Country'), 
      'width'  => '100', 
      'type'  => 'country', 
      'index'  => 'billing_country_id', 
     )); 

     $this->addColumn('billing_region', array(
      'header' => Mage::helper('customer')->__('State/Province'), 
      'width'  => '100', 
      'index'  => 'billing_region', 
     )); 

     $this->addColumn('customer_since', array(
      'header' => Mage::helper('customer')->__('Customer Since'), 
      'type'  => 'datetime', 
      'align'  => 'center', 
      'index'  => 'created_at', 
      'gmtoffset' => true 
     )); 

     if (!Mage::app()->isSingleStoreMode()) { 
      $this->addColumn('website_id', array(
       'header' => Mage::helper('customer')->__('Website'), 
       'align'  => 'center', 
       'width'  => '80px', 
       'type'  => 'options', 
       'options' => Mage::getSingleton('adminhtml/system_store')->getWebsiteOptionHash(true), 
       'index'  => 'website_id', 
      )); 
     } 

     $this->addColumn('action', 
      array(
       'header' => Mage::helper('customer')->__('Action'), 
       'width'  => '100', 
       'type'  => 'action', 
       'getter' => 'getId', 
       'actions' => array(
        array(
         'caption' => Mage::helper('customer')->__('Edit'), 
         'url'  => array('base'=> '*/*/edit'), 
         'field'  => 'id' 
        ) 
       ), 
       'filter' => false, 
       'sortable' => false, 
       'index'  => 'stores', 
       'is_system' => true, 
     )); 

     $this->addExportType('*/*/exportCsv', Mage::helper('customer')->__('CSV')); 
     $this->addExportType('*/*/exportXml', Mage::helper('customer')->__('Excel XML')); 
     return parent::_prepareColumns(); 
    } 

    protected function _prepareMassaction() 
    { 
     $this->setMassactionIdField('entity_id'); 
     $this->getMassactionBlock()->setFormFieldName('customer'); 

     $this->getMassactionBlock()->addItem('delete', array(
      'label' => Mage::helper('customer')->__('Delete'), 
      'url'  => $this->getUrl('*/*/massDelete'), 
      'confirm' => Mage::helper('customer')->__('Are you sure?') 
     )); 

     $this->getMassactionBlock()->addItem('newsletter_subscribe', array(
      'label' => Mage::helper('customer')->__('Subscribe to Newsletter'), 
      'url'  => $this->getUrl('*/*/massSubscribe') 
     )); 

     $this->getMassactionBlock()->addItem('newsletter_unsubscribe', array(
      'label' => Mage::helper('customer')->__('Unsubscribe from Newsletter'), 
      'url'  => $this->getUrl('*/*/massUnsubscribe') 
     )); 

     $this->getMassactionBlock()->addItem('manager_grid', array(
      'label'  => Mage::helper('manager')->__('Add to call log'), 
      'url'   => $this->getUrl('*/*/massAssignGroup'), 
      'additional' => array(
       'visibility' => array(
        'name'  => 'reason', 
        'type'  => 'select', 
        'class' => 'required-entry', 
        'label' => Mage::helper('manager')->__('Reason'), 
        'values' => $data 
       ) 
      ) 
     ));   

     $groups = $this->helper('customer')->getGroups()->toOptionArray(); 
     array_unshift($groups, array('label'=> '', 'value'=> '')); 
     $this->getMassactionBlock()->addItem('assign_group', array(
      'label'  => Mage::helper('customer')->__('Assign a Customer Group'), 
      'url'   => $this->getUrl('*/*/massAssignGroup'), 
      'additional' => array(
       'visibility' => array(
        'name'  => 'group', 
        'type'  => 'select', 
        'class' => 'required-entry', 
        'label' => Mage::helper('customer')->__('Group'), 
        'values' => $groups 
       ) 
      ) 
     )); 

     return $this; 
    } 

    public function getGridUrl() 
    { 
     return $this->getUrl('*/*/grid', array('_current'=> true)); 
    } 

    public function getRowUrl($row) 
    { 
     return $this->getUrl('*/*/edit', array('id'=>$row->getId())); 
    } 


} 

谁能告诉我,如果我要对这个正确的方法,因为我无法显示在了“原因”列表第二下拉字段。我是新定制Magento管理员,请原谅我缺乏知识。

如果我尝试选择添加到阵列中,我得到一个空白屏幕:

$collection = $this->helper('manager')->getCollection()->toOptionArray(); 
array_unshift($manager, array('label'=> '','value'=>'')); 
$this->getMassactionBlock()->addItem('manager', array(
    'label'  => Mage::helper('manager')->__('Add to call log'), 
    'url'   => $this->getUrl('*/*/massAssignManager'), 
    'additional' => array(
     'visibility' => array(
      'name'  => 'manager', 
      'type'  => 'select', 
      'class' => 'required-entry', 
      'label' => Mage::helper('manager')->__('Reason'), 
      'values' => $manager 
     ) 
    ) 
)); 

我想不通为什么!

回答

1

你正在做的事情不错,只是有一件事对其它附加下拉菜单:“值” => $的数据。数据未定义。

看组,看看它是如何工作的序列化选项来启用该第二个下拉

$groups = $this->helper('customer')->getGroups()->toOptionArray(); 
    array_unshift($groups, array('label'=> '', 'value'=> '')); 

你需要类似的东西在一个数组以得到选项在这里。

+0

这正是我遇到的麻烦...感谢让我知道我很接近... – user1704524 2013-03-07 19:32:48

+0

记录$ groups变量,你会看到结构,你就可以做同样的事情,基本上它就像'$ collection = Model-> getCollection() - > filters/select/etc; $ collection = $ collection-> toOptionArray(); array_unshift($ collection,array('label'=>'','value'=>''));'因为我不知道你的模型结构,我不能更精确。 – dagfr 2013-03-07 19:43:34

+0

谢谢你们的帮助,如果你能稍微协助进一步,我会非常感激。这是我用作我的模块的基础http://www.excellencemagentoblog.com/magento-grid-serializer-admin-tabs-grid?facebook=1 – user1704524 2013-03-07 19:57:56