| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/dialogo/ui/theme/lrsys/ |
Upload File : |
{include file="sections/header.tpl"}
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>{$_L['Payments']}</h5>
</div>
<div class="ibox-content">
<div class="table-responsive">
<form class="form-horizontal" method="post" action="{$_url}customers/list/">
<div class="form-group">
<div class="col-md-12">
<div class="input-group">
<div class="input-group-addon">
<span class="fa fa-search"></span>
</div>
<input type="text" name="name" id="foo_filter" class="form-control" placeholder="{$_L['Search']}..."/>
</div>
</div>
</div>
</form>
<table class="table table-bordered sys_table footable" data-filter="#foo_filter" data-page-size="50">
<thead>
<th>{$_L['Invoice']}#</th>
<th>{$_L['Date']}</th>
<th>{$_L['Account']}</th>
<th class="text-right">{$_L['Amount']}</th>
<th>{$_L['Transaction ID']}</th>
<th class="text-right">{$_L['Cr']}</th>
<th class="text-right">{$_L['Balance']}</th>
<th>{$_L['Manage']}</th>
</thead>
{foreach $d as $ds}
<tr class="{if $ds['cr'] eq '0.00'}warning {else}info{/if}">
<td>{$ds['iid']}</td>
<td>{date( $_c['df'], strtotime($ds['date']))}</td>
<td>{$ds['account']}</td>
<td class="text-right amount">{$ds['amount']}</td>
<td>{$ds['description']}</td>
<td class="text-right amount">{$ds['cr']}</td>
<td class="text-right"><span class="amount{if $ds['bal'] < 0} text-red{/if}" >{$ds['bal']}</span></td>
<td><a href="{$_url}transactions/manage/{$ds['id']}">{$_L['Manage']}</a></td>
</tr>
{/foreach}
<tfoot>
<tr>
<td colspan="8">
<ul class="pagination">
</ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
</div> <!-- Row end-->
<!-- Row end-->
<!-- Row end-->
{include file="sections/footer.tpl"}