| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Paypal/Block/Adminhtml/Settlement/Report/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Paypal
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Adminhtml paypal settlement reports grid block
*
* @category Mage
* @package Mage_Paypal
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Paypal_Block_Adminhtml_Settlement_Report_Grid extends Mage_Adminhtml_Block_Widget_Grid
{
/**
* Retain filter parameters in session
*
* @var bool
*/
protected $_saveParametersInSession = true;
/**
* Constructor
* Set main configuration of grid
*/
public function __construct()
{
parent::__construct();
$this->setId('settlementGrid');
$this->setUseAjax(true);
}
/**
* Prepare collection for grid
* @return Mage_Paypal_Block_Adminhtml_Settlement_Grid
*/
protected function _prepareCollection()
{
$collection = Mage::getResourceModel('paypal/report_settlement_row_collection');
$this->setCollection($collection);
if (!$this->getParam($this->getVarNameSort())) {
$collection->setOrder('row_id', 'desc');
}
return parent::_prepareCollection();
}
/**
* Prepare grid columns
* @return Mage_Paypal_Block_Adminhtml_Settlement_Grid
*/
protected function _prepareColumns()
{
$settlement = Mage::getSingleton('paypal/report_settlement');
$this->addColumn('report_date', array(
'header' => $settlement->getFieldLabel('report_date'),
'index' => 'report_date',
'type' => 'date'
));
$this->addColumn('account_id', array(
'header' => $settlement->getFieldLabel('account_id'),
'index' => 'account_id'
));
$this->addColumn('transaction_id', array(
'header' => $settlement->getFieldLabel('transaction_id'),
'index' => 'transaction_id'
));
$this->addColumn('invoice_id', array(
'header' => $settlement->getFieldLabel('invoice_id'),
'index' => 'invoice_id'
));
$this->addColumn('paypal_reference_id', array(
'header' => $settlement->getFieldLabel('paypal_reference_id'),
'index' => 'paypal_reference_id'
));
$this->addColumn('transaction_event_code', array(
'header' => $settlement->getFieldLabel('transaction_event'),
'index' => 'transaction_event_code',
'type' => 'options',
'options' => Mage::getModel('paypal/report_settlement_row')->getTransactionEvents()
));
$this->addColumn('transaction_initiation_date', array(
'header' => $settlement->getFieldLabel('transaction_initiation_date'),
'index' => 'transaction_initiation_date',
'type' => 'datetime'
));
$this->addColumn('transaction_completion_date', array(
'header' => $settlement->getFieldLabel('transaction_completion_date'),
'index' => 'transaction_completion_date',
'type' => 'datetime'
));
$this->addColumn('gross_transaction_amount', array(
'header' => $settlement->getFieldLabel('gross_transaction_amount'),
'index' => 'gross_transaction_amount',
'type' => 'currency',
'currency' => 'gross_transaction_currency',
));
$this->addColumn('fee_amount', array(
'header' => $settlement->getFieldLabel('fee_amount'),
'index' => 'fee_amount',
'type' => 'currency',
'currency' => 'gross_transaction_currency',
));
return parent::_prepareColumns();
}
/**
* Return grid URL
* @return string
*/
public function getGridUrl()
{
return $this->getUrl('*/*/grid');
}
/**
* Return item view URL
* @return string
*/
public function getRowUrl($item)
{
return $this->getUrl('*/*/details', array('id' => $item->getId()));
}
}