45 lines
2.4 KiB
Smarty
45 lines
2.4 KiB
Smarty
<script type="text/javascript">
|
|
<!--
|
|
var baseDir = '{$base_dir_ssl}';
|
|
-->
|
|
</script>
|
|
|
|
{capture name=path}<a href="{$base_dir_ssl}my-account.php">{l s='My account'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='Credit slips'}{/capture}
|
|
{include file=$tpl_dir./breadcrumb.tpl}
|
|
|
|
<h2>{l s='Credit slips'}</h2>
|
|
<p>{l s='Credit slips you received after canceled orders'}.</p>
|
|
<div class="block-center" id="block-history">
|
|
{if $ordersSlip && count($ordersSlip)}
|
|
<table id="order-list" class="std">
|
|
<thead>
|
|
<tr>
|
|
<th class="first_item">{l s='Credit slip'}</th>
|
|
<th class="item">{l s='Order'}</th>
|
|
<th class="item">{l s='Date issued'}</th>
|
|
<th class="last_item">{l s='View credit slip'}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$ordersSlip item=slip name=myLoop}
|
|
<tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{/if}">
|
|
<td class="bold"><span class="color-myaccount">{l s='#'}{$slip.id_order_slip|string_format:"%06d"}</span></td>
|
|
<td class="history_method"><a class="color-myaccount" href="javascript:showOrder(1, {$slip.id_order|intval}, 'order-detail');">{l s='#'}{$slip.id_order|string_format:"%06d"}</a></td>
|
|
<td class="bold">{dateFormat date=$slip.date_add full=0}</td>
|
|
<td class="history_invoice">
|
|
<a href="{$base_dir}pdf-order-slip.php?id_order_slip={$slip.id_order_slip|intval}" title="{l s='Credit slip'} {l s='#'}{$slip.id_order_slip|string_format:"%06d"}"><img src="{$img_dir}icon/pdf.gif" alt="{l s='Order slip'} {l s='#'}{$return.id_order_slip|string_format:"%06d"}" class="icon" /></a>
|
|
<a href="{$base_dir}pdf-order-slip.php?id_order_slip={$slip.id_order_slip|intval}" title="{l s='Credit slip'} {l s='#'}{$slip.id_order_slip|string_format:"%06d"}">{l s='PDF'}</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<div id="block-order-detail" class="hidden"> </div>
|
|
{else}
|
|
<p class="warning">{l s='You have not received any credit slips.'}</p>
|
|
{/if}
|
|
</div>
|
|
<ul class="footer_links">
|
|
<li><a href="{$base_dir_ssl}my-account.php"><img src="{$img_dir}icon/my-account.gif" alt="" class="icon" /></a><a href="{$base_dir_ssl}my-account.php">{l s='Back to Your Account'}</a></li>
|
|
<li><a href="{$base_dir}"><img src="{$img_dir}icon/home.gif" alt="" class="icon" /></a><a href="{$base_dir}">{l s='Home'}</a></li>
|
|
</ul> |