2016-10-10 15:24:25 +02:00

241 lines
11 KiB
Smarty
Executable File

{*
* 2007-2013 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-2013 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
<link href="{$css_dir}{$page_name}es.css" rel="stylesheet" type="text/css" media="all" />
<div data-role="content" id="content" class="address">
<script type="text/javascript">
// <![CDATA[
var idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}{if isset($address->id_state)}{$address->id_state|intval}{else}false{/if}{/if};
var countries = new Array();
var countriesNeedIDNumber = new Array();
var countriesNeedZipCode = new Array();
{foreach from=$countries item='country'}
{if isset($country.states) && $country.contains_states}
countries[{$country.id_country|intval}] = new Array();
{foreach from=$country.states item='state' name='states'}
countries[{$country.id_country|intval}].push({ldelim}'id' : '{$state.id_state}', 'name' : '{$state.name|addslashes}'{rdelim});
{/foreach}
{/if}
{if $country.need_identification_number}
countriesNeedIDNumber.push({$country.id_country|intval});
{/if}
{if isset($country.need_zip_code)}
countriesNeedZipCode[{$country.id_country|intval}] = {$country.need_zip_code};
{/if}
{/foreach}
$(function(){ldelim}
$('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}{if isset($address->id_state)}{$address->id_state|intval}{/if}{/if}]').attr('selected', true);
{rdelim});
{literal}
$(document).ready(function() {
$('#company').blur(function(){
vat_number();
});
vat_number();
function vat_number()
{
if ($('#company').val() != '')
$('#vat_number').show();
else
$('#vat_number').hide();
}
});
{/literal}
//]]>
</script>
{capture name=path}<a href="{$link->getPageLink('my-account', true)}">{l s='Mon compte'}</a><span class="navigation-pipe">{$navigationPipe}</span><a href="{$link->getPageLink('addresses', true)}">{l s='Mes adresses'}</a><span class="navigation-pipe">{$navigationPipe}</span>{if isset($id_address) && (isset($smarty.post.alias) || isset($address->alias))}{l s='Modifier adresse'}{else}{l s='Ajouter une adresse'}{/if}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<div class="borderGreen auto">
<h1>[{if isset($id_address) && (isset($smarty.post.alias) || isset($address->alias))}{l s='Modifier adresse'}{else}{l s='Ajouter une adresse'}{/if}]</h1>
{include file="$tpl_dir./errors.tpl"}
<h2>{if isset($id_address)}{l s='Votre adresse'}{else}{l s='Nouvelle adresse'}{/if}</h2>
<form action="{$link->getPageLink('address', true)}" method="post" class="std" id="add_address">
<fieldset>
{*
<div class="required text dni">
<label for="dni">{l s='Identification number'}<sup>*</sup></label>
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{else}{if isset($address->dni)}{$address->dni}{/if}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
</div>
*}
{assign var="stateExist" value="false"}
<div class="required text" id="adress_alias">
<label for="alias" style="line-height:18px">{l s='Intitulé de'}<br/>{l s='l\'adresse'}<sup>*</sup></label>
<input class="inputText287" type="text" id="alias" name="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else if isset($address->alias)}{$address->alias}{elseif !$select_address}{l s='My address'}{/if}" />
</div>
<div class="text">
<input type="hidden" name="token" value="{$token}" />
<label for="company">{l s='Société'}</label>
<input class="inputText287" type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{else}{if isset($address->company)}{$address->company}{/if}{/if}" />
</div>
{foreach from=$ordered_adr_fields item=field_name}
{if $field_name eq 'company'}
{/if}
{if $field_name eq 'vat_number'}
<div id="vat_area">
<div id="vat_number">
<div class="text">
<label for="vat_number">{l s='VAT number'}</label>
<input class="inputText287" type="text" class="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{else}{if isset($address->vat_number)}{$address->vat_number}{/if}{/if}" />
</div>
</div>
</div>
{/if}
{if $field_name eq 'firstname'}
<div class="required text">
<label for="firstname">{l s='First name'}<sup>*</sup></label>
<input class="inputText287" type="text" name="firstname" id="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{else}{if isset($address->firstname)}{$address->firstname}{/if}{/if}" />
</div>
{/if}
{if $field_name eq 'lastname'}
<div class="required text">
<label for="lastname">{l s='Last name'}<sup>*</sup></label>
<input class="inputText287" type="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{else}{if isset($address->lastname)}{$address->lastname}{/if}{/if}" />
</div>
{/if}
{if $field_name eq 'address1'}
<div class="required text">
<label for="address1" style="line-height:18px">{l s='Adresse'}<br/>{l s='ligne 1'}<sup>*</sup></label>
<input class="inputText287" type="text" id="address1" name="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{else}{if isset($address->address1)}{$address->address1}{/if}{/if}" />
</div>
{/if}
{if $field_name eq 'address2'}
<div class="required text">
<label for="address2" style="line-height:18px">{l s='Adresse'}<br/>{l s='ligne 2'}</label>
<input class="inputText287" type="text" id="address2" name="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{else}{if isset($address->address2)}{$address->address2}{/if}{/if}" />
</div>
{/if}
{if $field_name eq 'postcode'}
<div class="required postcode text">
<label for="postcode">{l s='Code postal'}<sup>*</sup></label>
<input class="inputText287" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode}{/if}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
</div>
{/if}
{if $field_name eq 'city'}
<div class="required text">
<label for="city">{l s='Ville'}<sup>*</sup></label>
<input class="inputText287" type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{else}{if isset($address->city)}{$address->city}{/if}{/if}" maxlength="64" />
</div>
{*
if customer hasn't update his layout address, country has to be verified
but it's deprecated
*}
{/if}
{if $field_name eq 'Country:name' || $field_name eq 'country'}
<div class="required select">
<label for="id_country" style=" line-height: 18px; padding: 0;">{l s='Pays'}<br/>{l s='ou DOM-TOM'}<sup>*</sup></label>
<select id="id_country" name="id_country" class="selectBox selectBox287">{$countries_list}</select>
</div>
{if $vatnumber_ajax_call}
<script type="text/javascript">
var ajaxurl = '{$ajaxurl}';
{literal}
$(document).ready(function(){
$('#id_country').change(function() {
$.ajax({
type: "GET",
url: ajaxurl+"vatnumber/ajax.php?id_country="+$('#id_country').val(),
success: function(isApplicable){
if(isApplicable == "1")
{
$('#vat_area').show();
$('#vat_number').show();
}
else
{
$('#vat_area').hide();
}
}
});
});
});
{/literal}
</script>
{/if}
{/if}
{if $field_name eq 'State:name'}
{assign var="stateExist" value="true"}
<div class="required id_state select">
<label for="id_state" style="line-height:18px">{l s='État / Région'}<br/>{l s='/ Canton'}<br/><small>(si approprié)</small></label>
<select name="id_state" id="id_state" class="selectBox selectBox287">
<option value="">-</option>
</select>
</div>
{/if}
{/foreach}
{if $stateExist eq "false"}
<div class="required id_state select">
<label for="id_state">{l s='State'}<sup>*</sup></label>
<select name="id_state" id="id_state" class="selectBox selectBox287">
<option value="">-</option>
</select>
</div>
{/if}
<div class="text">
<label for="phone" style="line-height:18px">{l s='Numéro'}<br/>{l s='de téléphone'}<sup>*</sup></label>
<input class="inputText287" type="text" id="phone" name="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{else}{if isset($address->phone)}{$address->phone}{/if}{/if}" />
<br class="clear" /><small class="grey" style="color:#b2b2b2;font-size:14px;font-style:italic;">{l s='Destiné au Laboratoire Garancia, uniquement en cas de problème de livraison'}
</small>
<br class="clear"/><a href="#" class="savoir_plus" style="float:right;font-size:14px;color:#000000;text-decoration:underline;">{l s='En savoir plus'}</a>
</div>
<div style="display:none">
<div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
<label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least}{/if}</label>
<input class="inputText287" type="text" id="phone_mobile" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile}{/if}{/if}" />
</div>
</div>
<br class="clear" />
<br class="clear" />
<h2 class="clear">{l s='Complément d\'adresse (facultatif)'}</h2>
<div class="text">
<label for="other">{l s='Code d\'accès'}</label>
<input class="inputText287" type="text" id="other" name="other" value="{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other}{/if}{/if}" />
<br class="clear"/><a href="#" class="savoir_plus" style="float:right;font-size:14px;color:#000000;text-decoration:underline;">{l s='En savoir plus'}</a>
</div>
<p><small class="grey" style="color:#b2b2b2;font-size:14px"><sup style="color:#b2b2b2;font-size:14px">*</sup>{l s='Champ obligatoire'}</small></p>
</fieldset>
<div class="submit fleche_off align_center ">
{if isset($id_address)}<input type="hidden" name="id_address" value="{$id_address|intval}" />{/if}
{if isset($back)}<input type="hidden" name="back" value="{$back}" />{/if}
{if isset($mod)}<input type="hidden" name="mod" value="{$mod}" />{/if}
{if isset($select_address)}<input type="hidden" name="select_address" value="{$select_address|intval}" />{/if}
<input type="submit" name="submitAddress" id="submitAddress" value="{l s='Enregistrer l\'adresse'}" class="button simple" />
</div>
<div class="submit align_center fleche_left">
<a href="{$link->getPageLink('my-account', true)}" class="button back"><span>{l s='Retour à mon compte'}</span></a>
</div>
<br class="clear"/>
</form>
</div>
</div>