shop-old/themes/admin/templates/widgets/paypal_money_back.tpl
2026-04-20 01:03:43 +02:00

42 lines
1.1 KiB
Smarty

{*
{extends file="widgets/big_widget_base.tpl"}
{block name=widget_name}dashboard_widget_paypal_money_back{/block}
{block name=widget_title}PayPal Rückzahlung{/block}
{block name=widget_content}
{if $money_back_orderes}
<table>
<thead>
<tr>
<th>Bestellung</th>
<th>Kunde</th>
<th>Bestelldatum</th>
<th>Bestellung</th>
<th>Zahlungsgeb&uuml;ren</th>
<th>Versandgeb&uuml;ren</th>
<th>Gesamte Geb&uuml;ren</th>
<th></th>
</tr>
</thead>
<tbody>
{foreach $money_back_orderes as $order}
<tr>
<td>{$order->order_number}{if $order->order_revision}-{$order->order_revision}{/if}</td>
<td>{$order->customer_name}</td>
<td>{$order->order_date}</td>
<td>{$order->order_total}</td>
<td>{$order->payment_method_charges}</td>
<td>{$order->shipping_charges}</td>
<td>{$order->total_charges}</td>
<td><a href="./index.php?admin_modul=admin_paypal_transaction&order_id={$order->id}">Ansehen</a></td>
</tr>
{/foreach}
</tbody>
</table>
{else}
Keine PayPal R&uuml;ckzahlungen
{/if}
{/block}
*}