94 lines
3.3 KiB
Smarty
94 lines
3.3 KiB
Smarty
{*
|
|
* 2007-2015 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-2015 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
<div class="table-responsive">
|
|
<table class="table" id="shipping_table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<span class="title_box ">{l s='Date'}</span>
|
|
</th>
|
|
<th>
|
|
<span class="title_box "> </span>
|
|
</th>
|
|
<th>
|
|
<span class="title_box ">{l s='Carrier'}</span>
|
|
</th>
|
|
<th>
|
|
<span class="title_box ">{l s='Weight'}</span>
|
|
</th>
|
|
<th>
|
|
<span class="title_box ">{l s='Shipping cost'}</span>
|
|
</th>
|
|
<th>
|
|
<span class="title_box ">{l s='Tracking number'}</span>
|
|
</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$order->getShipping() item=line}
|
|
<tr>
|
|
<td>{dateFormat date=$line.date_add full=true}</td>
|
|
<td> </td>
|
|
<td>{$line.carrier_name}</td>
|
|
<td class="weight">{$line.weight|string_format:"%.3f"} {Configuration::get('PS_WEIGHT_UNIT')}</td>
|
|
<td class="center">
|
|
{if $order->getTaxCalculationMethod() == $smarty.const.PS_TAX_INC}
|
|
{displayPrice price=$line.shipping_cost_tax_incl currency=$currency->id}
|
|
{else}
|
|
{displayPrice price=$line.shipping_cost_tax_excl currency=$currency->id}
|
|
{/if}
|
|
</td>
|
|
<td>
|
|
<span class="shipping_number_show">{if $line.url && $line.tracking_number}<a class="_blank" href="{$line.url|replace:'@':$line.tracking_number}">{$line.tracking_number}</a>{else}{$line.tracking_number}{/if}</span>
|
|
</td>
|
|
<td>
|
|
{if $line.can_edit}
|
|
<form method="post" action="{$link->getAdminLink('AdminOrders')|escape:'html':'UTF-8'}&vieworder&id_order={$order->id|intval}">
|
|
<span class="shipping_number_edit" style="display:none;">
|
|
<input type="hidden" name="id_order_carrier" value="{$line.id_order_carrier|htmlentities}" />
|
|
<input type="text" name="tracking_number" value="{$line.tracking_number|htmlentities}" />
|
|
<button type="submit" class="btn btn-default" name="submitShippingNumber">
|
|
<i class="icon-ok"></i>
|
|
{l s='Update'}
|
|
</button>
|
|
</span>
|
|
<a href="#" class="edit_shipping_number_link btn btn-default">
|
|
<i class="icon-pencil"></i>
|
|
{l s='Edit'}
|
|
</a>
|
|
<a href="#" class="cancel_shipping_number_link btn btn-default" style="display: none;">
|
|
<i class="icon-remove"></i>
|
|
{l s='Cancel'}
|
|
</a>
|
|
</form>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|