67 lines
3.2 KiB
Smarty
67 lines
3.2 KiB
Smarty
{include file="sections/header.tpl"}
|
|
<!-- reports-daily -->
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="invoice-wrap">
|
|
<div class="clearfix invoice-head">
|
|
<h3 class="brand-logo text-uppercase text-bold left mt15">
|
|
<span class="text">{$_L['Daily_Report']}</span>
|
|
</h3>
|
|
</div>
|
|
<div class="clearfix invoice-subhead mb20">
|
|
<div class="group clearfix left">
|
|
<p class="text-bold mb5">{$_L['All_Transactions_at_Date']}:</p>
|
|
<p class="small">{date($_c['date_format'], strtotime($mdate))} {$mtime}</p>
|
|
</div>
|
|
<div class="group clearfix right">
|
|
<a href="{$_url}export/print-by-date" class="btn btn-default" target="_blank"><i
|
|
class="ion ion-printer"></i>{$_L['Export_for_Print']}</a>
|
|
<a href="{$_url}export/pdf-by-date" class="btn btn-default"><i
|
|
class="fa fa-file-pdf-o"></i>{$_L['Export_to_PDF']}</a>
|
|
</div>
|
|
</div>
|
|
<div class="table-container">
|
|
<table class="table table-bordered table-bordered invoice-table mb10">
|
|
<thead>
|
|
<tr>
|
|
<th>{$_L['Username']}</th>
|
|
<th>{$_L['Type']}</th>
|
|
<th>{$_L['Plan_Name']}</th>
|
|
<th>{$_L['Plan_Price']}</th>
|
|
<th>{$_L['Created_On']}</th>
|
|
<th>{$_L['Expires_On']}</th>
|
|
<th>{$_L['Method']}</th>
|
|
<th>{$_L['Routers']}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach $d as $ds}
|
|
<tr>
|
|
<td>{$ds['username']}</td>
|
|
<td>{$ds['type']}</td>
|
|
<td>{$ds['plan_name']}</td>
|
|
<td class="text-right">{$_c['currency_code']}
|
|
{number_format($ds['price'],2,$_c['dec_point'],$_c['thousands_sep'])}</td>
|
|
<td>{date($_c['date_format'], strtotime($ds['recharged_on']))} {$ds['time']}</td>
|
|
<td>{date($_c['date_format'], strtotime($ds['expiration']))} {$ds['time']}</td>
|
|
<td>{$ds['method']}</td>
|
|
<td>{$ds['routers']}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{$paginator['contents']}
|
|
|
|
<div class="clearfix text-right total-sum mb10">
|
|
<h4 class="text-uppercase text-bold">{$_L['Total_Income']}:</h4>
|
|
<h3 class="sum">{$_c['currency_code']} {number_format($dr,2,$_c['dec_point'],$_c['thousands_sep'])}</h3>
|
|
</div>
|
|
<p class="text-center small text-info">{$_L['All_Transactions_at_Date']}:
|
|
{date($_c['date_format'], strtotime($mdate))} {$mtime}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{include file="sections/footer.tpl"} |