a24764b9b3
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10279 b9a71923-0436-4b27-9f14-aed3839534dd
122 lines
3.2 KiB
Smarty
Executable File
122 lines
3.2 KiB
Smarty
Executable File
{*
|
|
* 2007-2011 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-2011 PrestaShop SA
|
|
* @version Release: $Revision: 10055 $
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{extends file="helper/view/view.tpl"}
|
|
|
|
{block name="override_tpl"}
|
|
<div style="margin-top: 20px;">
|
|
<fieldset>
|
|
<legend>{l s='General informations'}</legend>
|
|
<table style="width: 400px;" classe="table">
|
|
<tr>
|
|
<td>{l s='Creation date:'}</td>
|
|
<td>{$supply_order_creation_date}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Supplier:'}</td>
|
|
<td>{$supply_order_supplier_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Last update:'}</td>
|
|
<td>{$supply_order_last_update}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Delivery expected:'}</td>
|
|
<td>{$supply_order_expected}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Warehouse:'}</td>
|
|
<td>{$supply_order_warehouse}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Currency:'}</td>
|
|
<td>{$supply_order_currency->name}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Global discount rate:'}</td>
|
|
<td>{$supply_order_discount_rate} %</td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div style="margin-top: 20px;">
|
|
<fieldset>
|
|
<legend>{l s='Products'}</legend>
|
|
{$supply_order_detail_content}
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div style="margin-top: 20px;">
|
|
<fieldset>
|
|
<legend>{l s='Summary'}</legend>
|
|
<table style="width: 400px;" classe="table">
|
|
<tr>
|
|
<th>{l s='Designation'}</th>
|
|
<th width="100px">{l s='Value'}</th>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#000000"></td>
|
|
<td bgcolor="#000000"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Total TE'}</td>
|
|
<td align="right">{$supply_order_total_te}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Discount'}</td>
|
|
<td align="right">{$supply_order_discount_value_te}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Total with discount TE'}</td>
|
|
<td align="right">{$supply_order_total_with_discount_te}</td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#000000"></td>
|
|
<td bgcolor="#000000"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Total Tax'}</td>
|
|
<td align="right">{$supply_order_total_tax}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='Total TI'}</td>
|
|
<td align="right">{$supply_order_total_ti}</td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#000000"></td>
|
|
<td bgcolor="#000000"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{l s='TOTAL TO PAY'}</td>
|
|
<td align="right">{$supply_order_total_ti}</td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
|
|
{/block}
|