<?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 * @package base_default * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> <?php /** @var $this Mage_Checkout_Block_Cart_Shipping */ ?> <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne"> <?php echo $this->__('Estimate Shipping and Tax') ?> <i class="pull-right fa fa-plus-square-o"></i> </a> </h4> </div> <div id="collapseOne" class="panel-collapse collapse"> <div class="panel-body"> <form action="<?php echo $this->getUrl('checkout/cart/estimatePost') ?>" method="post" id="shipping-zip-form" role="form"> <fieldset> <p><?php echo $this->__('Enter your destination to get a shipping estimate.') ?></p> <ul> <li class="form-group"> <label for="country"><?php echo $this->__('Country') ?></label> <?php echo Mage::getBlockSingleton('directory/data')->getCountryHtmlSelect($this->getEstimateCountryId()) ?> </li> <?php //if($this->getStateActive()): ?> <li class="form-group"> <label for="region_id"<?php if ($this->isStateProvinceRequired()) echo ' class="required"' ?>><?php if ($this->isStateProvinceRequired()) echo '<em>*</em>' ?><?php echo $this->__('State/Province') ?></label> <select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" style="display:none;"<?php echo ($this->isStateProvinceRequired() ? ' class="validate-select form-control"' : 'class="form-control"') ?>> <option value=""><?php echo $this->__('Please select region, state or province') ?></option> </select> <script type="text/javascript"> //<![CDATA[ $('region_id').setAttribute('defaultValue', "<?php echo $this->getEstimateRegionId() ?>"); //]]> </script> <input type="text" id="region" name="region" value="<?php echo $this->htmlEscape($this->getEstimateRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="form-control" style="display:none;" /> </li> <?php //endif; ?> <?php if($this->getCityActive()): ?> <li class="form-group"> <label for="city"<?php if ($this->isCityRequired()) echo ' class="required"' ?>><?php if ($this->isCityRequired()) echo '<em>*</em>' ?><?php echo $this->__('City') ?></label> <input class="form-control<?php if ($this->isCityRequired()):?> required-entry<?php endif;?>" id="city" type="text" name="estimate_city" value="<?php echo $this->htmlEscape($this->getEstimateCity()) ?>" /> </li> <?php endif; ?> <li class="form-group"> <label for="postcode"<?php if ($this->isZipCodeRequired()) echo ' class="required"' ?>><?php if ($this->isZipCodeRequired()) echo '<em>*</em>' ?><?php echo $this->__('Zip/Postal Code') ?></label> <input class="form-control validate-postcode<?php if ($this->isZipCodeRequired()):?> required-entry<?php endif;?>" type="text" id="postcode" name="estimate_postcode" value="<?php echo $this->htmlEscape($this->getEstimatePostcode()) ?>" /> </li> </ul> <div class="buttons-set"> <button type="button" onclick="coShippingMethodForm.submit()" class="btn btn-primary"><span><span><?php echo $this->__('Get a Quote') ?></span></span></button> </div> </fieldset> </form> <script type="text/javascript"> //<![CDATA[ new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>); //]]> </script> <?php if (($_shippingRateGroups = $this->getEstimateRates())): ?> <form id="co-shipping-method-form" action="<?php echo $this->getUrl('checkout/cart/estimateUpdatePost') ?>" role="form"> <fieldset> <dl class="sp-methods"> <?php foreach ($_shippingRateGroups as $code => $_rates): ?> <dt><?php echo $this->getCarrierName($code) ?></dt> <dd> <ul class="form-group"> <?php foreach ($_rates as $_rate): ?> <li<?php if ($_rate->getErrorMessage()) echo ' class="error-msg"';?>> <?php if ($_rate->getErrorMessage()): ?> <?php echo $_rate->getErrorMessage() ?> <?php else: ?> <input name="estimate_method" type="radio" value="<?php echo $this->htmlEscape($_rate->getCode()) ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="form-control radio" /> <label for="s_method_<?php echo $_rate->getCode() ?>"><?php echo $_rate->getMethodTitle() ?> <?php $_excl = $this->getShippingPrice($_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?> <?php $_incl = $this->getShippingPrice($_rate->getPrice(), true); ?> <?php echo $_excl; ?> <?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?> (<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>) <?php endif; ?> </label> <?php endif ?> </li> <?php endforeach; ?> </ul> </dd> <?php endforeach; ?> </dl> <div class="buttons-set"> <button type="submit" class="btn btn-success" name="do" value="<?php echo $this->__('Update Total') ?>"><span><span><?php echo $this->__('Update Total') ?></span></span></button> </div> </fieldset> </form> <?php endif; ?> <script type="text/javascript"> //<![CDATA[ var coShippingMethodForm = new VarienForm('shipping-zip-form'); var countriesWithOptionalZip = <?php echo $this->helper('directory')->getCountriesWithOptionalZip(true) ?>; coShippingMethodForm.submit = function () { var country = $F('country'); var optionalZip = false; for (i=0; i < countriesWithOptionalZip.length; i++) { if (countriesWithOptionalZip[i] == country) { optionalZip = true; } } if (optionalZip) { $('postcode').removeClassName('required-entry'); } else { $('postcode').addClassName('required-entry'); } return VarienForm.prototype.submit.bind(coShippingMethodForm)(); } //]]> </script> <script type="text/javascript"> jQuery("#country").addClass("form-control"); </script> </div> </div> </div>