Example #1
0
 protected function _prepareMassaction()
 {
     parent::_prepareMassaction();
     if (Mage::helper('pdfinvoiceplus')->checkEnable()) {
         $this->getMassactionBlock()->addItem('pdfcreditmemogrid', array('label' => $this->__('Print Credit Memos via PDF Invoice+'), 'url' => $this->getUrl('pdfinvoiceplusadmin/adminhtml_creditmemo/printmasscreditmemogrid')));
     }
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('sales_order_creditmemos_grid');
     $this->_blockGroup = 'iwd_ordermanager';
     $this->_controller = 'adminhtml_sales_order_archive_creditmemos';
     $this->setDefaultSort('id');
     $this->setDefaultDir('DESC');
     $this->setUseAjax(true);
 }
Example #3
0
 protected function _prepareColumns()
 {
     if ($vendor = Mage::helper('smvendors')->getVendorLogin()) {
         $this->addColumn('increment_id', array('header' => Mage::helper('sales')->__('Credit Memo #'), 'index' => 'increment_id', 'filter_index' => 'main_table.increment_id', 'type' => 'text'));
         $this->addColumn('created_at', array('header' => Mage::helper('sales')->__('Created At'), 'index' => 'created_at', 'type' => 'datetime'));
         $this->addColumn('order_increment_id', array('header' => Mage::helper('sales')->__('Order #'), 'index' => 'vendor_increment_id', 'filter_index' => 'smo.increment_id', 'type' => 'text'));
         $this->addColumn('order_created_at', array('header' => Mage::helper('sales')->__('Order Date'), 'index' => 'order_created_at', 'type' => 'datetime'));
         $this->addColumn('billing_name', array('header' => Mage::helper('sales')->__('Bill to Name'), 'index' => 'billing_name'));
         $this->addColumn('state', array('header' => Mage::helper('sales')->__('Status'), 'index' => 'state', 'type' => 'options', 'options' => Mage::getModel('sales/order_creditmemo')->getStates()));
         $this->addColumn('grand_total', array('header' => Mage::helper('customer')->__('Refunded'), 'index' => 'grand_total', 'type' => 'currency', 'align' => 'right', 'currency' => 'order_currency_code'));
         $this->addColumn('action', array('header' => Mage::helper('sales')->__('Action'), 'width' => '50px', 'type' => 'action', 'getter' => 'getId', 'actions' => array(array('caption' => Mage::helper('sales')->__('View'), 'url' => array('base' => '*/vendors_order_creditmemo/view'), 'field' => 'creditmemo_id', 'params' => array('come_from' => 'sales_creditmemo'))), 'filter' => false, 'sortable' => false, 'is_system' => true));
         $this->addExportType('*/*/exportCsv', Mage::helper('sales')->__('CSV'));
         $this->addExportType('*/*/exportExcel', Mage::helper('sales')->__('Excel XML'));
         $this->sortColumnsByOrder();
         return $this;
     } else {
         return parent::_prepareColumns();
     }
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->setUseAjax(true);
     $this->setId('sales_creditmemo_grid_archive');
 }