/home/smartonegroup/www/system/ui/theme/default/reports-expense.tpl
{extends file="$layouts_admin"}
{block name="content"}
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="panel">
<div class="panel-hdr">
<h2>{$_L['Expense Reports']} </h2>
</div>
<div class="panel-container">
<div class="panel-content">
<h4>{$_L['Expense Summary']}</h4>
<hr>
<h5>{$_L['Total Expense']}: {$config['currency_code']} {number_format($a,2,$config['dec_point'],$config['thousands_sep'])}</h5>
<h5>{$_L['Total Expense This Month']}: {$config['currency_code']} {number_format($m,2,$config['dec_point'],$config['thousands_sep'])}</h5>
<h5>{$_L['Total Expense This Week']}: {$config['currency_code']} {number_format($w,2,$config['dec_point'],$config['thousands_sep'])}</h5>
<h5>{$_L['Total Expense Last 30 days']}: {$config['currency_code']} {number_format($m3,2,$config['dec_point'],$config['thousands_sep'])}</h5>
<hr>
<h4>{$_L['Last 20 deposit Expense']}</h4>
<hr>
<table class="table table-striped table-bordered">
<th>{$_L['Date']}</th>
<th>{$_L['Account']}</th>
<th>{$_L['Type']}</th>
<th>{$_L['Category']}</th>
<th class="text-end">{$_L['Amount']}</th>
<th>{$_L['Payee']}</th>
<th>{$_L['Description']}</th>
<th class="text-end">{$_L['Dr']}</th>
<th class="text-end">{$_L['Balance']}</th>
{foreach $d as $ds}
<tr>
<td>{date( $config['df'], strtotime($ds['date']))}</td>
<td>{$ds['account']}</td>
<td>{ib_lan_get_line($ds['type'])}</td>
<td>{if $ds['category'] == 'Uncategorized'}{$_L['Uncategorized']} {else} {$ds['category']} {/if}</td>
<td class="text-end">{$config['currency_code']} {number_format($ds['amount'],2,$config['dec_point'],$config['thousands_sep'])}</td>
<td>{$ds['payee']}</td>
<td>{$ds['description']}</td>
<td class="text-end">{$config['currency_code']} {number_format($ds['dr'],2,$config['dec_point'],$config['thousands_sep'])}</td>
<td class="text-end"><span {if $ds['bal'] < 0}class="text-red"{/if}>{$config['currency_code']} {number_format($ds['bal'],2,$config['dec_point'],$config['thousands_sep'])}</span></td>
</tr>
{/foreach}
</table>
</div>
<hr>
<h4>{$_L['Monthly Expense Graph']}</h4>
<hr>
<div id="placeholder" class="flot-placeholder"></div>
<hr>
</div>
</div>
</div>
<!-- Widget-2 end-->
</div>
<!-- Row end-->
<!-- Row end-->
<!-- Row end-->
{/block}