Question

How to display total row at the end of sales order grid.see below image

enter image description here

Was it helpful?

Solution

source How to add a Total row in a magento grid

thanks to @mazeUz

first you have override sales/grid.php

then if you want to add total row then add below code

class SSD_Uzkart_Block_Adminhtml_Uzkart_Grid extends Mage_Adminhtml_Block_Widget_Grid
{
    protected $_countTotals = true;

    public function getTotals()
    {
        $totals = new Varien_Object();
        $fields = array(
            'uzkart_trans_amount' => 0, //actual column index, see _prepareColumns()
            'some_summarable_field' => 0,
            'another_countable_field' => 0,
        );
        foreach ($this->getCollection() as $item) {
            foreach($fields as $field=>$value){
                $fields[$field]+=$item->getData($field);
            }
        }
        //First column in the grid
        $fields['entity_id']='Totals';
        $totals->setData($fields);
        return $totals;
    }

    protected function _prepareColumns()
    {
        /**
         * another columns
         */

        $this->addColumn('uzkart_trans_amount', array(
            'header' => Mage::helper('uzkart')->__('Payment Amount'),
            'index' => 'uzkart_trans_amount',
            'type' => 'currency',
        ));

        /**
         * another columns
         */
    }

    /**
     * another methods
     */

}

[EDIT]

if it display check box rather then label Total then you have to first check it must match with first column grid id if it's your increment_id then it must be

$fields['increment_id']='Totals';

IMage

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top