23 lines
825 B
Smarty
23 lines
825 B
Smarty
{**
|
|
* For the full copyright and license information, please view the
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
|
*}
|
|
<table id="summary-tab" width="100%">
|
|
<tr>
|
|
<th class="header small" valign="middle">{l s='Order Reference' d='Shop.Pdf' pdf='true'}</th>
|
|
<th class="header small" valign="middle">{l s='Order date' d='Shop.Pdf' pdf='true'}</th>
|
|
{if $addresses.invoice->vat_number}
|
|
<th class="header small" valign="middle">{l s='VAT Number' d='Shop.Pdf' pdf='true'}</th>
|
|
{/if}
|
|
</tr>
|
|
<tr>
|
|
<td class="center small white">{$order->getUniqReference()}</td>
|
|
<td class="center small white">{dateFormat date=$order->date_add full=0}</td>
|
|
{if $addresses.invoice->vat_number}
|
|
<td class="center small white">
|
|
{$addresses.invoice->vat_number}
|
|
</td>
|
|
{/if}
|
|
</tr>
|
|
</table>
|