1

我需要在发票页面的 ActionList 中添加一个新操作
我不知道 magento 在哪里创建这个列表以及它如何调用所选操作,所以我想你们会知道我应该从哪里开始寻找......

谢谢!
乔纳森

4

1 回答 1

2

您要覆盖的类是Mage_Adminhtml_Block_Sales_Invoice_Grid. 将该文件复制到本地空间(这样你就拥有了app/code/local/Mage/Adminhtml/Block/Sales/Invoice/Grid.php),然后修改以下函数:

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

    $this->getMassactionBlock()->addItem('pdfinvoices_order', array(
         'label'=> Mage::helper('sales')->__('PDF Invoices'),
         'url'  => $this->getUrl('*/*/pdfinvoices'),
    ));

    // your action goes here
    $this->getMassactionBlock()->addItem('handle', array(
         'label'=> Mage::helper('sales')->__('Your Action Label'),
         'url'  => $this->getUrl('path/to/your/action'),
    ));  

    return $this;
}

希望有帮助!

谢谢,乔

于 2010-05-27T14:04:52.967 回答