Files
prestashop/pdf/delivery-slip.payment-tab.tpl

24 lines
830 B
Smarty
Raw Permalink Normal View History

{**
* 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%" cellpadding="4" cellspacing="0">
<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>
{foreachelse}
<tr>
<td>{l s='No payment' d='Shop.Pdf' pdf='true'}</td>
</tr>
{/foreach}
</table>
</td>
</tr>
</table>