Exemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('reportmovementGrid');
     $this->setDefaultDir('DESC');
     $this->setUseAjax(true);
     $this->setCountTotals(true);
 }
Exemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('reportorderGrid');
     $this->setDefaultDir('DESC');
     $this->setUseAjax(true);
     //show total row
     $this->setCountTotals(true);
 }
Exemplo n.º 3
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('reportcontent_purchaseorder');
     $this->setDefaultSort('total_value');
     $this->setDefaultDir('DESC');
     $this->setUseAjax(true);
     $this->setCountTotals(true);
 }
 public function __construct()
 {
     parent::__construct();
     $this->setId('moststockremainGrid');
     $this->setDefaultSort('total_remain');
     $this->setDefaultDir('DESC');
     $this->setUseAjax(true);
     //show total row
     $this->setCountTotals(true);
 }
Exemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('reportcustomerGrid');
     $this->setUseAjax(true);
     //set request data
     $requestData = $this->getRequestData();
     $this->_requestData = $requestData;
     //show total row
     $this->setCountTotals(true);
 }
Exemplo n.º 6
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('productdetailsGrid');
     $this->setDefaultSort('transactionproductqty');
     $this->setDefaultDir('DESC');
     $this->setSaveParametersInSession(true);
     if (!$this->getFilterData()) {
         $this->setFilterData(new Varien_Object());
     }
     $this->setUseAjax(true);
 }