20 lines
701 B
Smarty
20 lines
701 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="payment-tab" width="100%">
|
||
|
|
<tr>
|
||
|
|
<td class="payment center small grey bold" width="44%">{l s='Payment Method' d='Shop.Pdf' pdf='true'}</td>
|
||
|
|
<td class="payment left white" width="56%">
|
||
|
|
<table width="100%" border="0">
|
||
|
|
{foreach from=$order_invoice->getOrderPaymentCollection() item=payment}
|
||
|
|
<tr>
|
||
|
|
<td class="right small">{$payment->payment_method}</td>
|
||
|
|
<td class="right small">{displayPrice currency=$payment->id_currency price=$payment->amount}</td>
|
||
|
|
</tr>
|
||
|
|
{/foreach}
|
||
|
|
</table>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|