42 lines
1.1 KiB
Smarty
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üren</th>
|
|
<th>Versandgebüren</th>
|
|
<th>Gesamte Gebü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ückzahlungen
|
|
{/if}
|
|
{/block}
|
|
*} |