96 lines
3.4 KiB
Smarty
Executable File
96 lines
3.4 KiB
Smarty
Executable File
{*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* 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.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@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision: 9095 $
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
**}
|
|
|
|
{if !$opc}
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
var taxEnabled = "{$use_taxes}";
|
|
var displayPrice = "{$priceDisplay}";
|
|
var currencySign = '{$currencySign|html_entity_decode:2:"UTF-8"}';
|
|
var currencyRate = '{$currencyRate|floatval}';
|
|
var currencyFormat = '{$currencyFormat|intval}';
|
|
var currencyBlank = '{$currencyBlank|intval}';
|
|
var id_carrier = '{$id_carrier|intval}';
|
|
var id_state = '{$id_state|intval}';
|
|
|
|
var txtFree = "{l s='Free!' mod='carriercompare'}";
|
|
//]]>
|
|
</script>
|
|
<form class="std" id="compare_shipping_form" method="POST" action="#" >
|
|
<fieldset id="compare_shipping">
|
|
<h3>{l s='Estimate your shipping & taxes' mod='carriercompare'}</h3>
|
|
|
|
<p id="carriercompare_errors" style="display: none;">
|
|
<ul id="carriercompare_errors_list">
|
|
|
|
</ul>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="id_country">{l s='Country' mod='carriercompare'}</label>
|
|
<select name="id_country" id="id_country">
|
|
{foreach from=$countries item=country}
|
|
<option value="{$country.id_country}" {if $id_country == $country.id_country}selected="selected"{/if}>{$country.name|escape:'htmlall':'UTF-8'}</option>
|
|
{/foreach}
|
|
</select>
|
|
</p>
|
|
|
|
<p id="states" style="display: none;">
|
|
<label for="id_state">{l s='State' mod='carriercompare'}</label>
|
|
<select name="id_state" id="id_state">
|
|
|
|
</select>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="zipcode">{l s='Zipcode' mod='carriercompare'}</label>
|
|
<input type="text" name="zipcode" id="zipcode" value="{$zipcode|escape:'htmlall':'UTF-8'}"/> ({l s='Needed for certain carriers' mod='carriercompare'})
|
|
</p>
|
|
|
|
<div id="availableCarriers" style="display: none;">
|
|
<table cellspacing="0" cellpadding="0" id="availableCarriers_table" class="std">
|
|
<thead>
|
|
<tr>
|
|
<th class="carrier_action first_item"></th>
|
|
<th class="carrier_name item">{l s='Carrier' mod='carriercompare'}</th>
|
|
<th class="carrier_infos item">{l s='Information' mod='carriercompare'}</th>
|
|
<th class="carrier_price last_item">{l s='Price' mod='carriercompare'}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="carriers_list">
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<p class="warning center" id="noCarrier" style="display: none;">{l s='No carrier is available for this selection' mod='carriercompare'}</p>
|
|
|
|
<p class="center">
|
|
<input class="exclusive_large" id="carriercompare_submit" type="submit" name="carriercompare_submit" value="{l s='Refresh' mod='carriercompare'}"/>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
{/if}
|