1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_Tax
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: class Mage_Tax_Model_Sales_Pdf_Shipping extends Mage_Sales_Model_Order_Pdf_Total_Default
28: {
29: /**
30: * Get array of arrays with totals information for display in PDF
31: * array(
32: * $index => array(
33: * 'amount' => $amount,
34: * 'label' => $label,
35: * 'font_size'=> $font_size
36: * )
37: * )
38: * @return array
39: */
40: public function getTotalsForDisplay()
41: {
42: $store = $this->getOrder()->getStore();
43: $config= Mage::getSingleton('tax/config');
44: $amount = $this->getOrder()->formatPriceTxt($this->getAmount());
45: $amountInclTax = $this->getSource()->getShippingInclTax();
46: if (!$amountInclTax) {
47: $amountInclTax = $this->getAmount()+$this->getSource()->getShippingTaxAmount();
48: }
49: $amountInclTax = $this->getOrder()->formatPriceTxt($amountInclTax);
50: $fontSize = $this->getFontSize() ? $this->getFontSize() : 7;
51:
52: if ($config->displaySalesShippingBoth($store)) {
53: $totals = array(
54: array(
55: 'amount' => $this->getAmountPrefix().$amount,
56: 'label' => Mage::helper('tax')->__('Shipping (Excl. Tax)') . ':',
57: 'font_size' => $fontSize
58: ),
59: array(
60: 'amount' => $this->getAmountPrefix().$amountInclTax,
61: 'label' => Mage::helper('tax')->__('Shipping (Incl. Tax)') . ':',
62: 'font_size' => $fontSize
63: ),
64: );
65: } elseif ($config->displaySalesShippingInclTax($store)) {
66: $totals = array(array(
67: 'amount' => $this->getAmountPrefix().$amountInclTax,
68: 'label' => Mage::helper('sales')->__($this->getTitle()) . ':',
69: 'font_size' => $fontSize
70: ));
71: } else {
72: $totals = array(array(
73: 'amount' => $this->getAmountPrefix().$amount,
74: 'label' => Mage::helper('sales')->__($this->getTitle()) . ':',
75: 'font_size' => $fontSize
76: ));
77: }
78:
79: return $totals;
80: }
81: }
82: