| 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/Details/ |
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)
*/
/**
* Settlement reports transaction details
*
* @category Mage
* @package Mage_Paypal
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Paypal_Block_Adminhtml_Settlement_Details_Form extends Mage_Adminhtml_Block_Widget_Form
{
/**
* Prepare read-only data and group it by fieldsets
* @return Mage_Paypal_Block_Adminhtml_Settlement_Details_Form
*/
protected function _prepareForm()
{
$model = Mage::registry('current_transaction');
/* @var $model Mage_Paypal_Model_Report_Settlement_Row */
$settlement = Mage::getSingleton('paypal/report_settlement');
/* @var $settlement Mage_Paypal_Model_Report_Settlement */
$fieldsets = array(
'reference_fieldset' => array(
'fields' => array(
'transaction_id' => array('label' => $settlement->getFieldLabel('transaction_id')),
'invoice_id' => array('label' => $settlement->getFieldLabel('invoice_id')),
'paypal_reference_id' => array('label' => $settlement->getFieldLabel('paypal_reference_id')),
'paypal_reference_id_type' => array(
'label' => $settlement->getFieldLabel('paypal_reference_id_type'),
'value' => $model->getReferenceType($model->getData('paypal_reference_id_type'))
),
'custom_field' => array('label' => $settlement->getFieldLabel('custom_field')),
),
'legend' => Mage::helper('paypal')->__('Reference Information')
),
'transaction_fieldset' => array(
'fields' => array(
'transaction_event_code' => array(
'label' => $settlement->getFieldLabel('transaction_event_code'),
'value' => sprintf('%s (%s)', $model->getData('transaction_event_code'), $model->getTransactionEvent($model->getData('transaction_event_code')))
),
'transaction_initiation_date' => array(
'label' => $settlement->getFieldLabel('transaction_initiation_date'),
'value' => $this->helper('core')->formatDate($model->getData('transaction_initiation_date'), Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM, true)
),
'transaction_completion_date' => array(
'label' => $settlement->getFieldLabel('transaction_completion_date'),
'value' => $this->helper('core')->formatDate($model->getData('transaction_completion_date'), Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM, true)
),
'transaction_debit_or_credit' => array(
'label' => $settlement->getFieldLabel('transaction_debit_or_credit'),
'value' => $model->getDebitCreditText($model->getData('transaction_debit_or_credit'))
),
'gross_transaction_amount' => array(
'label' => $settlement->getFieldLabel('gross_transaction_amount'),
'value' => Mage::app()->getLocale()
->currency($model->getData('gross_transaction_currency'))
->toCurrency($model->getData('gross_transaction_amount'))
),
),
'legend' => Mage::helper('paypal')->__('Transaction Information')
),
'fee_fieldset' => array(
'fields' => array(
'fee_debit_or_credit' => array(
'label' => $settlement->getFieldLabel('fee_debit_or_credit'),
'value' => $model->getDebitCreditText($model->getData('fee_debit_or_credit'))
),
'fee_amount' => array(
'label' => $settlement->getFieldLabel('fee_amount'),
'value' => Mage::app()->getLocale()
->currency($model->getData('fee_currency'))
->toCurrency($model->getData('fee_amount'))
),
),
'legend' => Mage::helper('paypal')->__('PayPal Fee Information')
),
);
$form = new Varien_Data_Form();
foreach ($fieldsets as $key => $data) {
$fieldset = $form->addFieldset($key, array('legend' => $data['legend']));
foreach ($data['fields'] as $id => $info) {
$fieldset->addField($id, 'label', array(
'name' => $id,
'label' => $info['label'],
'title' => $info['label'],
'value' => isset($info['value']) ? $info['value'] : $model->getData($id),
));
}
}
$this->setForm($form);
return parent::_prepareForm();
}
}