249 lines
9.9 KiB
Smarty
249 lines
9.9 KiB
Smarty
{*
|
|
* 2007-2017 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-2017 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{capture name=path}<a href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}" title="{l s='Manage my account' mod='loyalty'}" rel="nofollow">{l s='My account' mod='loyalty'}</a><span class="navigation-pipe">{$navigationPipe}</span><span class="navigation_page">{l s='My loyalty points' mod='loyalty'}</span>{/capture}
|
|
|
|
<h1 class="page-heading">{l s='My loyalty points' mod='loyalty'}</h1>
|
|
|
|
{if $orders}
|
|
<div class="block-center" id="block-history">
|
|
{if $orders && count($orders)}
|
|
<table id="order-list" class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th class="first_item">{l s='Order' mod='loyalty'}</th>
|
|
<th class="item">{l s='Date' mod='loyalty'}</th>
|
|
<th class="item">{l s='Points' mod='loyalty'}</th>
|
|
<th class="last_item">{l s='Points Status' mod='loyalty'}</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr class="alternate_item">
|
|
<td colspan="2" class="history_method bold" style="text-align:center;">{l s='Total points available:' mod='loyalty'}</td>
|
|
<td class="history_method" style="text-align:left;">{$totalPoints|intval}</td>
|
|
<td class="history_method"> </td>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
{foreach from=$displayorders item='order'}
|
|
<tr class="alternate_item">
|
|
<td class="history_link bold">{l s='#' mod='loyalty'}{$order.id|string_format:"%06d"}</td>
|
|
<td class="history_date">{dateFormat date=$order.date full=1}</td>
|
|
<td class="history_method">{$order.points|intval}</td>
|
|
<td class="history_method">{$order.state|escape:'html':'UTF-8'}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<div id="block-order-detail" class="unvisible"> </div>
|
|
{else}
|
|
<p class="alert alert-warning">{l s='You have not placed any orders.' mod='loyalty'}</p>
|
|
{/if}
|
|
</div>
|
|
<div class="bottom-pagination-content clearfix">
|
|
<div id="pagination" class="pagination clearfix">
|
|
{if $orders|@count > $nbpagination}
|
|
<form class="showall" action="{$pagination_link}" method="get">
|
|
<div>
|
|
<button type="submit" class="btn btn-default button exclusive-medium">
|
|
<span>{l s='Show all' mod='loyalty'}</span>
|
|
</button>
|
|
<input name="n" id="nb_item" class="hidden" value="{$orders|@count}" />
|
|
<input name="process" class="hidden" value="summary" />
|
|
</div>
|
|
</form>
|
|
{/if}
|
|
{if $nbpagination < $orders|@count}
|
|
<ul class="pagination">
|
|
{if $page != 1}
|
|
{assign var='p_previous' value=$page-1}
|
|
<li id="pagination_previous" class="pagination_previous">
|
|
<a href="{summarypaginationlink p=$p_previous n=$nbpagination}" title="{l s='Previous' mod='loyalty'}" rel="prev">
|
|
<i class="icon-chevron-left"></i> <b>{l s='Previous' mod='loyalty'}</b>
|
|
</a>
|
|
</li>
|
|
{else}
|
|
<li id="pagination_previous" class="disabled pagination_previous">
|
|
<span>
|
|
<i class="icon-chevron-left"></i> <b>{l s='Previous' mod='loyalty'}</b>
|
|
</span>
|
|
</li>
|
|
{/if}
|
|
{if $page > 2}
|
|
<li>
|
|
<a href="{summarypaginationlink p='1' n=$nbpagination}" rel="nofollow"><span>1</span></a>
|
|
</li>
|
|
{if $page > 3}
|
|
<li class="truncate">
|
|
<span>
|
|
<span>...</span>
|
|
</span>
|
|
</li>
|
|
{/if}
|
|
{/if}
|
|
{section name=pagination start=$page-1 loop=$page+2 step=1}
|
|
{if $page == $smarty.section.pagination.index}
|
|
<li class="active current">
|
|
<span>
|
|
<span>{$page|escape:'html':'UTF-8'}</span>
|
|
</span>
|
|
</li>
|
|
{elseif $smarty.section.pagination.index > 0 && $orders|@count+$nbpagination > ($smarty.section.pagination.index)*($nbpagination)}
|
|
<li>
|
|
<a href="{summarypaginationlink p=$smarty.section.pagination.index n=$nbpagination}">
|
|
<span>{$smarty.section.pagination.index|escape:'html':'UTF-8'}</span>
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
{/section}
|
|
{if $max_page-$page > 1}
|
|
{if $max_page-$page > 2}
|
|
<li class="truncate">
|
|
<span>
|
|
<span>...</span>
|
|
</span>
|
|
</li>
|
|
{/if}
|
|
<li>
|
|
<a href="{summarypaginationlink p=$max_page n=$nbpagination}">
|
|
<span>{$max_page}</span>
|
|
</a>
|
|
</li>
|
|
{/if}
|
|
{if $orders|@count > $page * $nbpagination}
|
|
{assign var='p_next' value=$page+1}
|
|
<li id="pagination_next" class="pagination_next">
|
|
<a href="{summarypaginationlink p=$p_next n=$nbpagination}" rel="next">
|
|
<b>{l s='Next' mod='loyalty'}</b> <i class="icon-chevron-right"></i>
|
|
</a>
|
|
</li>
|
|
{else}
|
|
<li id="pagination_next" class="pagination_next disabled">
|
|
<span>
|
|
<b>{l s='Next' mod='loyalty'}</b> <i class="icon-chevron-right"></i>
|
|
</span>
|
|
</li>
|
|
{/if}
|
|
</ul>
|
|
{/if}
|
|
</div>
|
|
<div class="product-count">
|
|
{if ($nbpagination*$page) < $orders|@count }
|
|
{assign var='itemShowing' value=$nbpagination*$page}
|
|
{else}
|
|
{assign var='itemShowing' value=($nbpagination*$page-$orders|@count-$nbpagination*$page)*-1}
|
|
{/if}
|
|
{if $page==1}
|
|
{assign var='itemShowingStart' value=1}
|
|
{else}
|
|
{assign var='itemShowingStart' value=$nbpagination*$page-$nbpagination+1}
|
|
{/if}
|
|
{if $orders|@count > 1}
|
|
{l s='Showing %1$d - %2$d of %3$d items' sprintf=[$itemShowingStart, $itemShowing, $orders|@count] mod='loyalty'}
|
|
{else}
|
|
{l s='Showing %1$d - %2$d of 1 item' sprintf=[$itemShowingStart, $itemShowing] mod='loyalty'}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
<p>{l s='Vouchers generated here are usable in the following categories : ' mod='loyalty'}
|
|
{if $categories}{$categories}{else}{l s='All' mod='loyalty'}{/if}</p>
|
|
|
|
{if $transformation_allowed}
|
|
<p class="text-center">
|
|
<a class="btn btn-default" href="{$link->getModuleLink('loyalty', 'default', ['process' => 'transformpoints'], true)|escape:'html':'UTF-8'}" onclick="return confirm('{l s='Are you sure you want to transform your points into vouchers?' mod='loyalty' js=1}');">{l s='Transform my points into a voucher of' mod='loyalty'} <span class="price">{convertPrice price=$voucher}</span>.</a>
|
|
</p>
|
|
{/if}
|
|
|
|
<h1 class="page-heading">{l s='My vouchers from loyalty points' mod='loyalty'}</h1>
|
|
|
|
{if $nbDiscounts}
|
|
<div class="block-center" id="block-history">
|
|
<table id="order-list" class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th class="first_item">{l s='Created' mod='loyalty'}</th>
|
|
<th class="item">{l s='Value' mod='loyalty'}</th>
|
|
<th class="item">{l s='Code' mod='loyalty'}</th>
|
|
<th class="item">{l s='Valid from' mod='loyalty'}</th>
|
|
<th class="item">{l s='Valid until' mod='loyalty'}</th>
|
|
<th class="item">{l s='Status' mod='loyalty'}</th>
|
|
<th class="last_item">{l s='Details' mod='loyalty'}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$discounts item=discount name=myLoop}
|
|
<tr class="alternate_item">
|
|
<td class="history_date">{dateFormat date=$discount->date_add}</td>
|
|
<td class="history_price"><span class="price">{if $discount->reduction_percent > 0}
|
|
{$discount->reduction_percent}%
|
|
{elseif $discount->reduction_amount}
|
|
{displayPrice price=$discount->reduction_amount currency=$discount->reduction_currency}
|
|
{else}
|
|
{l s='Free shipping' mod='loyalty'}
|
|
{/if}</span></td>
|
|
<td class="history_method bold">{$discount->code}</td>
|
|
<td class="history_date">{dateFormat date=$discount->date_from}</td>
|
|
<td class="history_date">{dateFormat date=$discount->date_to}</td>
|
|
<td class="history_method bold">{if $discount->quantity > 0}{l s='To use' mod='loyalty'}{else}{l s='Used' mod='loyalty'}{/if}</td>
|
|
<td class="history_method">
|
|
<a rel="#order_tip_{$discount->id|intval}" class="cluetip" title="{l s='Generated by these following orders' mod='loyalty'}" href="{$smarty.server.SCRIPT_NAME|escape:'html':'UTF-8'}">{l s='more...' mod='loyalty'}</a>
|
|
<div class="hidden" id="order_tip_{$discount->id|intval}">
|
|
<ul>
|
|
{foreach from=$discount->orders item=myorder name=myLoop}
|
|
<li>
|
|
{$myorder.id_order|string_format:{l s='Order #%d' mod='loyalty'}}
|
|
({displayPrice price=$myorder.total_paid currency=$myorder.id_currency}) :
|
|
{if $myorder.points > 0}{$myorder.points|string_format:{l s='%d points.' mod='loyalty'}}{else}{l s='Cancelled' mod='loyalty'}{/if}
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<div id="block-order-detail" class="unvisible"> </div>
|
|
</div>
|
|
|
|
{if $minimalLoyalty > 0}<p>{l s='The minimum order amount in order to use these vouchers is:' mod='loyalty'} {convertPrice price=$minimalLoyalty}</p>{/if}
|
|
|
|
{else}
|
|
<p class="alert alert-warning">{l s='No vouchers yet.' mod='loyalty'}</p>
|
|
{/if}
|
|
{else}
|
|
<p class="alert alert-warning">{l s='No reward points yet.' mod='loyalty'}</p>
|
|
{/if}
|
|
|
|
<ul class="footer_links clearfix">
|
|
<li>
|
|
<a class="btn btn-default button button-small" href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}" title="{l s='Back to Your Account' mod='loyalty'}" rel="nofollow"><span><i class="icon-chevron-left"></i>{l s='Back to Your Account' mod='loyalty'}</span></a>
|
|
</li>
|
|
<li>
|
|
<a class="btn btn-default button button-small" href="{if isset($force_ssl) && $force_ssl}{$base_dir_ssl}{else}{$base_dir}{/if}" title="{l s='Home' mod='loyalty'}"><span><i class="icon-chevron-left"></i>{l s='Home' mod='loyalty'}</span></a>
|
|
</li>
|
|
</ul>
|