<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-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   design_default
 * @package    Mage
 * @copyright  Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
?>

<?php
/**
 * Template for displaying product price in different places (products grid, product view page etc)
 *
 * @see Mage_Catalog_Block_Product_Abstract
 */
?>
<?php
    $_coreHelper 
$this->helper("core");
    
$_weeeHelper $this->helper("weee");
    
$_taxHelper  $this->helper("tax");
    
/* @var $_coreHelper Mage_Core_Helper_Data */
    /* @var $_weeeHelper Mage_Weee_Helper_Data */
    /* @var $_taxHelper Mage_Tax_Helper_Data */

    
$_product $this->getProduct();
    
$_id $_product->getId();
    
$_weeeSeparator "";
    
$_simplePricesTax = ($_taxHelper->displayPriceIncludingTax() || $_taxHelper->displayBothPrices());
    
$_minimalPriceValue $_product->getMinimalPrice();
    
$_minimalPrice $_taxHelper->getPrice($_product$_minimalPriceValue$_simplePricesTax);
?>

<?php if (!$_product->isGrouped()): ?>
    <?php $_weeeTaxAmount $_weeeHelper->getAmountForDisplay($_product); ?>
    <?php if ($_weeeHelper->typeOfDisplay($_product, array(1,2,4))): ?>
        <?php $_weeeTaxAmount $_weeeHelper->getAmount($_product); ?>
        <?php $_weeeTaxAttributes $_weeeHelper->getProductWeeeAttributesForDisplay($_product); ?>
    <?php endif; ?>

    <div class="price-box">
    <?php $_price $_taxHelper->getPrice($_product$_product->getPrice()) ?>
    <?php $_regularPrice $_taxHelper->getPrice($_product$_product->getPrice(), $_simplePricesTax?>
    <?php $_finalPrice $_taxHelper->getPrice($_product$_product->getFinalPrice()) ?>
    <?php $_finalPriceInclTax $_taxHelper->getPrice($_product$_product->getFinalPrice(), true?>
    <?php $_weeeDisplayType $_weeeHelper->getPriceDisplayType(); ?>
    <?php if ($_finalPrice == $_price): ?>
        <?php if ($_taxHelper->displayBothPrices() && $_finalPriceInclTax != $_finalPrice): ?>
            <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product0)): // including ?>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product1)): // incl. + weee ?>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                    </span>
                    <br />
                    <span class="weee">(<small>
                        <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                            <?php echo $_weeeSeparator?>
                            <?php echo $_weeeTaxAttribute->getName(); ?>:
                            <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), truetrue); ?>
                            <?php $_weeeSeparator " + "?>
                        <?php endforeach; ?>
                    </small>)</span>
                </span>
            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product4)): // incl. + weee ?>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                    </span>
                    <br />
                    <span class="weee">(<small>
                        <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                            <?php echo $_weeeSeparator?>
                            <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount()+$_weeeTaxAttribute->getTaxAmount(), truetrue); ?>
                            <?php $_weeeSeparator " + "?>
                        <?php endforeach; ?>
                    </small>)</span>
                </span>
            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product2)): // excl. + weee + final ?>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_price,true,false?>
                    </span>
                </span>
                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                    <span class="weee">
                        <small>
                        <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), truetrue); ?>
                        </small>
                    </span>
                    <br />
                <?php endforeach; ?>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
            <?php else: ?>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_price,true,false?>
                    </span>
                </span>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax,true,false?>
                    </span>
                </span>
            <?php endif; ?>
        <?php else: ?>
            <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product0)): // including ?>
                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true?>
                </span>
            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product1)): // incl. + weee ?>
                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true?>
                </span>
                <br />
                <span class="weee">(<small>
                    <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                        <?php echo $_weeeSeparator?>
                        <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), truetrue); ?>
                        <?php $_weeeSeparator " + "?>
                    <?php endforeach; ?>
                </small>)</span>
            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product4)): // incl. + weee ?>
                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true?>
                </span>
                <br />
                <span class="weee">(<small>
                    <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                        <?php echo $_weeeSeparator?>
                        <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount()+$_weeeTaxAttribute->getTaxAmount(), truetrue); ?>
                        <?php $_weeeSeparator " + "?>
                    <?php endforeach; ?>
                </small>)</span>
            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product2)): // excl. + weee + final ?>
                <span class="regular-price"><?php echo $_coreHelper->currency($_price,true,true?></span><br />
                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                    <span class="weee">
                        <small>
                        <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), truetrue); ?>
                        </small>
                    </span>
                    <br />
                <?php endforeach; ?>
                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true?>
                </span>
            <?php else: ?>
                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_price,true,true?>
                </span>
            <?php endif; ?>
        <?php endif; ?>
    <?php else: /* if ($_finalPrice == $_price): */ ?>
        <?php $_originalWeeeTaxAmount $_weeeHelper->getOriginalAmount($_product); ?>

        <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product0)): // including ?>
            <p class="old-price">
                <span class="price-label"><?php echo $this->__("Regular Price:"?></span>
                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_regularPrice+$_originalWeeeTaxAmount,true,false?>
                </span>
            </p>

            <?php if ($_taxHelper->displayBothPrices() && $_finalPriceInclTax != $_finalPrice): ?>
                <p class="special-price">
                    <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                    <span class="price-excluding-tax">
                        <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                        <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                            <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false?>
                        </span>
                    </span>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
                </p>
            <?php else: ?>
            <p class="special-price">
                <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false?>
                </span>
            </p>
            <?php endif; ?>

        <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product1)): // incl. + weee ?>
            <p class="old-price">
                <span class="price-label"><?php echo $this->__("Regular Price:"?></span>
                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_regularPrice+$_originalWeeeTaxAmount,true,false?>
                </span>
            </p>

            <p class="special-price">
                <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
            <span class="weee">(<small>
                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                    <?php echo $_weeeSeparator?>
                    <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), truetrue); ?>
                    <?php $_weeeSeparator " + "?>
                <?php endforeach; ?>
            </small>)</span>
            <span class="price-including-tax">
                <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                </span>
            </span>
            </p>
        <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product4)): // incl. + weee ?>
            <p class="old-price">
                <span class="price-label"><?php echo $this->__("Regular Price:"?></span>
                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_regularPrice+$_originalWeeeTaxAmount,true,false?>
                </span>
            </p>

            <p class="special-price">
                <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
            <span class="weee">(<small>
                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                    <?php echo $_weeeSeparator?>
                    <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount()+$_weeeTaxAttribute->getTaxAmount(), truetrue); ?>
                    <?php $_weeeSeparator " + "?>
                <?php endforeach; ?>
            </small>)</span>
            <span class="price-including-tax">
                <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                </span>
            </span>
            </p>
        <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product2)): // excl. + weee + final ?>
            <p class="old-price">
                <span class="price-label"><?php echo $this->__("Regular Price:"?></span>
                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_regularPrice,true,false?>
                </span>
            </p>

            <p class="special-price">
                <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPrice,true,false?>
                    </span>
                </span>
                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
                    <span class="weee">
                        <small>
                        <?php echo $_weeeTaxAttribute->getName(); ?><?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), truetrue); ?>
                        </small>
                    </span>
                    <br />
                <?php endforeach; ?>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false?>
                    </span>
                </span>
            </p>
        <?php else: // excl. ?>
            <p class="old-price">
                <span class="price-label"><?php echo $this->__("Regular Price:"?></span>
                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_regularPrice,true,false?>
                </span>
            </p>

            <?php if ($_taxHelper->displayBothPrices() && $_finalPriceInclTax != $_finalPrice): ?>
                <p class="special-price">
                    <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                    <span class="price-excluding-tax">
                        <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                        <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                            <?php echo $_coreHelper->currency($_finalPrice,true,false?>
                        </span>
                    </span>
                    <span class="price-including-tax">
                        <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                        <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                            <?php echo $_coreHelper->currency($_finalPriceInclTax,true,false?>
                        </span>
                    </span>
                </p>
            <?php else: ?>
            <p class="special-price">
                <span class="price-label"><?php echo $this->__("Special Price:"?></span>
                <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                    <?php echo $_coreHelper->currency($_finalPrice,true,false?>
                </span>
            </p>
            <?php endif; ?>
        <?php endif; ?>

    <?php endif; /* if ($_finalPrice == $_price): */ ?>

    <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue && $_minimalPriceValue $_product->getFinalPrice()): ?>

        <?php $_minimalPriceDisplayValue $_minimalPrice?>
        <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, array(014))): ?>
            <?php $_minimalPriceDisplayValue $_minimalPrice+$_weeeTaxAmount?>
        <?php endif; ?>

        <a href="<?php echo $_product->getProductUrl(); ?>" class="minimal-price-link">
            <span class="label"><?php echo $this->__("As low as:"?></span>
            <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                <?php echo $_coreHelper->currency($_minimalPriceDisplayValue,true,false?>
            </span>
        </a>
    <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>
    </div>

<?php else: /* if (!$_product->isGrouped()): */ ?>
    <?php
    $_exclTax 
$_taxHelper->getPrice($_product$_minimalPriceValue$includingTax null);
    
$_inclTax $_taxHelper->getPrice($_product$_minimalPriceValue$includingTax true);
    
?>
    <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue): ?>
        <div class="price-box">
            <span class="label"><?php echo $this->__("Starting at:"?></span>
            <?php if ($_taxHelper->displayBothPrices() && ($_exclTax !== $_inclTax)): ?>
                <span class="price-excluding-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Excl. Tax:"?></span>
                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_exclTaxtruefalse?>
                    </span>
                </span>
                <span class="price-including-tax">
                    <span class="label"><?php echo Mage::helper("tax")->__("Incl. Tax:"?></span>
                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                        <?php echo $_coreHelper->currency($_inclTaxtruefalse?>
                    </span>
                </span>
            <?php else: ?>
                <?php
                $_showPrice 
$_inclTax;
                if (!
$_taxHelper->displayPriceIncludingTax()) {
                    
$_showPrice $_exclTax;
                }
                
?>
            <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
                <?php echo $_coreHelper->currency($_showPricetruefalse?>
            </span>
            <?php endif; ?>
        </div>
    <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice): */ ?>
<?php 
endif; /* if (!$_product->isGrouped()): */ ?>;