[-] MO : Fixed bug #PSTEST-663. 'template' was missing.

This commit is contained in:
vSchoener
2012-03-15 14:49:04 +00:00
parent 9d758694d4
commit ce9e7b07f8
2 changed files with 134 additions and 0 deletions
+108
View File
@@ -0,0 +1,108 @@
{*
* 2007-2012 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-2012 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 SE_RedirectTS = "{l s='Refreshing page and updating cart…' mod='carriercompare'}";
var SE_RefreshStateTS = "{l s='Checking available states…' mod='carriercompare'}";
var SE_RetrievingInfoTS = "{l s='Retrieving information…' mod='carriercompare'}";
var SE_RefreshMethod = {$refresh_method};
var txtFree = "{l s='Free!' mod='carriercompare'}";
PS_SE_HandleEvent();
//]]>
</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="SE_AjaxDisplay">
<img src="{$new_base_dir}loader.gif" /><br />
<p></p>
</div>
<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="SE_SubmitRefreshCard">
<input class="exclusive_large" id="carriercompare_submit" type="submit" name="carriercompare_submit" value="{l s='Update Cart' mod='carriercompare'}"/>
<input id="update_carriers_list" type="button" class="exclusive_large" value="{l s='Update carrier list'}" />
</p>
</fieldset>
</form>
{/if}
@@ -0,0 +1,26 @@
{if isset($display_error)}
{if $display_error}
<div class="error">{l s='An error occured during the form validation'}</div>
{else}
<div class="conf">{l s='Configuration updated'}</div>
{/if}
{/if}
<form method="post" action="{$smarty.server.REQUEST_URI}">
<fieldset>
<legend>{l s='Global Configuration'}</legend>
<label for="refresh_method">Refresh carrier list method</label>
<div class="margin-form">
<select id="refresh_method" name="refresh_method">
<option value="0" {if $refresh_method == 0}selected{/if}>{l s='Anytime'}</option>
<option value="1" {if $refresh_method == 1}selected{/if}>{l s='Required all information set'}</option>
</select>
<p>{l s='Set the way to refresh information for a customer'}</p>
</div>
<div class="margin-form">
<input name="setGlobalConfiguration" type="submit" class="button" value="{l s='Submit'}">
</div>
</fieldset>
</form>