List.php 4.45 KB
<?php

/**
 * @package magento
 * @subpackage AncPricepercustomer
 *
 * @author netz.coop code[at]netz.coop
 *
 * @license http://www.gnu.org/licenses/gpl-3.0.de.html GNU GENERAL PUBLIC LICENSE VERSION 3
 * @copyright (C) 2015 netz.coop eG
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
class Anc_Pricespercustomer_Block_Adminhtml_Customer_Edit_Tab_Pricespercustomer_List extends Mage_Adminhtml_Block_Widget_Grid {

    public function __construct() {

        $this->_blockGroup = 'anc_pricespercustomer';
        $this->_controller = 'adminhtml_pricespercustomer';
        $this->_headerText = Mage::helper('pricespercustomer')->__('Manage Prices TTT');
        parent::__construct();
    }

    protected function _prepareCollection() {
        $collection = Mage::getModel('anc_pricespercustomer/entity')
                ->getCollection()
                ->addFieldToFilter('main_table.customer_id', $this->getRequest()->getParam('id'));
        $this->setCollection($collection);
        return parent::_prepareCollection();
    }

    public function getAddButtonHtml() {

        return $this->getChildHtml('addButton');
    }

    protected function _prepareColumns() {
        $this->addColumn('entity_id', array(
            'header' => Mage::helper('pricespercustomer')->__('Id'),
            'width' => 50,
            'index' => 'entity_id',
            'sortable' => false,
        ));
        $this->addColumn('product_id', array(
            'header' => Mage::helper('pricespercustomer')->__('product id'),
            'index' => 'product_id',
            'sortable' => false,
        ));
        $this->addColumn('price_adjustment', array(
            'header' => Mage::helper('pricespercustomer')->__('Price'),
            'index' => 'price_adjustment',
            'sortable' => false,
        ));
        $this->addColumn('price_adjustment_type', array(
            'header' => Mage::helper('pricespercustomer')->__('pricetyp'),
            'index' => 'price_adjustment_type',
            'sortable' => false,
        ));
        $this->addColumn('created_at', array(
            'header' => Mage::helper('pricespercustomer')->__('created'),
            'index' => 'created_at',
            'sortable' => false,
        ));

        $this->addColumn('action', array(
            'header' => Mage::helper('pricespercustomer')->__('Action'),
            'width' => '50px',
            'type' => 'action',
            'getter' => 'getId',
            'actions' => array(
                array(
                    'caption' => Mage::helper('pricespercustomer')->__('Edit'),
                    'url' => array(
                        'base' => '*/pricespercustomer/edit',
                        'params' => array('store' => $this->getRequest()->getParam('store'))
                    ),
                    'field' => 'id'
                )
            ),
            'filter' => false,
            'sortable' => false,
            'index' => 'stores',
        ));
        return parent::_prepareColumns();
    }

    public function getRowUrl($row) {
        $link = $this->getUrl('*/pricespercustomer/edit', array(
            'id' => $row->getEntityId(),
            'customer_id' => $row->getCustomerId(),
                )
        );
        return $link;
    }

    public function getMainButtonsHtml() {
        $html = parent::getMainButtonsHtml(); //get the parent class buttons
        $addButton = $this->getLayout()->createBlock('adminhtml/widget_button') //create the add button
                        ->setData(array(
                            'label' => Mage::helper('adminhtml')->__('create new price'),
                            'onclick' => "setLocation('" . $this->getUrl('adminhtml/pricespercustomer/new', array('customerid' => Mage::registry('current_customer')->getId())) . "')",
                            'class' => 'task'
                        ))->toHtml();
        return $addButton . $html;
    }

}