SideBar shopping cart file

樊琦
2023-12-01

app\design\frontend\default\theme130k\template\ajax\checkout\cart\sidebar\default.phtml

<?php

    $_item = $this->getItem();

    $isVisibleProduct = $_item->getProduct()->isVisibleInSiteVisibility();

    $canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage_Catalog_Model_Product_Attribute_Source_Msrp_Type::TYPE_BEFORE_ORDER_CONFIRM);

?>

<li class="item">

    <?php if ($this->hasProductUrl()): ?>

        <a href="<?php echo $this->getProductUrl()?>" title="<?php echo $this->htmlEscape($this->getProductName()) ?>" class="product-image"><img src="<?php echo $this->getProductThumbnail()->resize(84, 81)->setWatermarkSize('30x10'); ?>" width="84" height="81" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" /></a>

    <?php else: ?>

        <span class="product-image"><img src="<?php echo $this->getProductThumbnail()->resize(84, 81)->setWatermarkSize('30x10'); ?>" width="84" height="81" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" /></span>

    <?php endif; ?>

    <div class="product-details">

        <a href="<?php 

	        $params = $this->getRequest()->getParams();

			if($params['isAjax'] == 1){

				$refererUrl = Mage::registry('referrer_url');

		        if (empty($refererUrl)) {

		            $refererUrl = Mage::getBaseUrl();

		        }

				$deleteUrl = $this->getUrl(

		            'checkout/cart/delete',

		            array(

		                'id'=>$_item->getId()

		                //Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl($refererUrl)

		            )

		        );

			}else{

        		$deleteUrl = $this->getDeleteUrl();

			}

        	echo $deleteUrl; 

        ?>" title="<?php echo $this->__('Remove This Item') ?>" οnclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the shopping cart?') ?>');" class="btn-remove"><?php echo $this->__('Remove This Item') ?></a>

        <?php if ($isVisibleProduct): ?>

        <a href="<?php echo $this->getConfigureUrl() ?>" title="<?php echo $this->__('Edit item') ?>" class="btn-edit"><?php echo $this->__('Edit item')?></a>

        <?php endif ?>

        <p class="product-name"><?php if ($this->hasProductUrl()): ?><a href="<?php echo $this->getProductUrl() ?>"><?php endif; ?><?php echo $this->htmlEscape($this->getProductName()) ?><?php if ($this->hasProductUrl()): ?></a><?php endif; ?></p>

        <strong><?php echo $this->getQty() ?></strong> x



    <?php if ($canApplyMsrp): ?>



        <span class="map-cart-sidebar-item"><?php echo $this->__('See price before order confirmation.'); ?></span>



    <?php else: ?>



    <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>

        <?php if ($this->helper('tax')->displayCartBothPrices()): ?>

            <?php echo $this->__('Excl. Tax'); ?>:

        <?php endif; ?>

        <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales')): ?>

            <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>

        <?php else: ?>

            <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>

        <?php endif; ?>

        <?php if (Mage::helper('weee')->getApplied($_item)): ?>

            <br />

            <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales')): ?>

                <small>

                <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>

                    <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />

                <?php endforeach; ?>

                </small>

            <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>

                <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>

                    <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />

                <?php endforeach; ?>

            <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales')): ?>

                <small>

                <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>

                    <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />

                <?php endforeach; ?>

                </small>

            <?php endif; ?>

            <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>

                <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>

            <?php endif; ?>

        <?php endif; ?>

    <?php endif; ?>







    <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>

        <?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>

        <?php if ($this->helper('tax')->displayCartBothPrices()): ?>

            <br /><?php echo $this->__('Incl. Tax'); ?>:

        <?php endif; ?>

        <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales')): ?>

            <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?>

        <?php else: ?>

            <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>

        <?php endif; ?>

        <?php if (Mage::helper('weee')->getApplied($_item)): ?>

            <br />

            <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales')): ?>

                <small>

                <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>

                    <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />

                <?php endforeach; ?>

                </small>

            <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>

                <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>

                    <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />

                <?php endforeach; ?>

            <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales')): ?>

                <small>

                <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>

                    <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />

                <?php endforeach; ?>

                </small>

            <?php endif; ?>

            <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales')): ?>

                <span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?></span>

            <?php endif; ?>

        <?php endif; ?>

    <?php endif; ?>



    <?php endif; //Can apply MSRP ?>



        <?php if ($_options = $this->getOptionList()):?>

        <div class="truncated">

          <div class="truncated_full_value">

            <dl class="item-options">

                <?php foreach ($_options as $_option) : ?>
                <?php if(trim($this->htmlEscape($_option['label'])) != 'Latest Arrival Date Hidden'): ?>
                <?php if(trim($this->htmlEscape($_option['value'])) != 'US STANDARD SIZE HAS SELECTED'): ?>
                <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
                <?php endif ?>
                <?php endif ?>
            <?php if($this->htmlEscape($_option['label']) == 'The Same as Picture'): ?>

                <dd><img name="" src="<?php echo $_option['value'] ?>" width="60" height="90" alt="" /></dd>

                <?php elseif(trim($this->htmlEscape($_option['label'])) == 'Latest Arrival Date Hidden'): ?>

                <?php else: ?>
                <?php if(trim($this->htmlEscape($_option['value'])) != 'US STANDARD SIZE HAS SELECTED'): ?>
                <dd>

                    <?php if (is_array($_option['value'])): ?>

                    <?php echo htmlspecialchars_decode(nl2br(implode("\n", $_option['value']))) ?>

                    <?php else: ?>

                    <?php echo htmlspecialchars_decode($_option['value']) ?>

                    <?php endif ?>

                </dd>
                <?php endif ?>
				<?php endif ?>

                <?php endforeach; ?>

            </dl>

          </div>

        <a href="#" οnclick="return false;" class="details"><?php echo $this->__('Details') ?></a>

        </div>

        <?php endif; ?>

    </div>

</li>

<script>

	jQuery('.details').hover(function() {

	jQuery(this).find('.truncated_full_value').parent().children().addClass('show');

}, function() {

	jQuery(this).find('.truncated_full_value').parent().children().removeClass('show');

});



		jQuery('.truncated_full_value').hover(function() {

	jQuery(this).find('.truncated_full_value').addClass('show');

}, function() {

	jQuery(this).find('.truncated_full_value').removeClass('show');

});

</script>


 类似资料:

相关阅读

相关文章

相关问答