| 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/leve/ui/theme/lrsys/ |
Upload File : |
{include file="sections/header.tpl"}
<div class="row">
<div class="col-md-12">
<div class="panel">
<div class="panel-body">
<div class="row">
<div class="col-md-8">
<strong>Importar arquivo de retorno: </strong>
{foreach $banks as $bank}
<a href="#" class="btn btn-primary importar-arquivo-retorno">{$bank['name']}</a>
{/foreach}
</div>
<div class="col-md-4">
<form action="{U}invoices/bank-slips/" id="form-bankslips-filter" method="post">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" name="search"
value="{if isset($params['search']) && $params['search'] != ''}{$params['search']}{/if}"
placeholder="{$_L['Search']}...">
<div class="input-group-btn">
<button type="submit" id="form-bankslips-submit" class="btn btn-flat">
<span class="fa fa-search"></span>
</button>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="row transition dropzone-hidden" id="arquivo-retorno-container">
{*<form method="post" action="{U}invoices/import-return-files" class="dropzone">*}
<div class="col-md-12">
<div class="dropzone" id="upload_container">
<div class="dz-message">
<h3><i class="fa fa-cloud-upload">{$_L['Drop File Here']}</i></h3>
<br>
<span class="note">{$_L['Click to Upload']}</span>
</div>
</div>
<br>
<input type="hidden" name="return_files" id="return_files">
</div>
{*</form>*}
</div>
<table id="table-tickets" class="table table-bordered table-sm">
<thead>
<tr>
<th>#</th>
<th>{$_L['Customer']}</th>
<th>{$_L['Value']}</th>
<th>{$_L['Date']}</th>
<th>{$_L['Due Date']}</th>
<th>Ref Tran</th>
<th>Status</th>
<th>{$_L['Manage']}</th>
</tr>
</thead>
<tbody>
{if count($tickets) > 0}
{foreach $tickets as $item}
<tr>
<td>{$item['id']}</td>
<td>{$item['customer']}</td>
<td>{$item['value']}</td>
<td>{implode('/', array_reverse(explode('-', $item['emission_date'])))}</td>
<td>{implode('/', array_reverse(explode('-', $item['due_date'])))}</td>
<td>{$item['ref_tran']}</td>
<td>
{if $item['status'] == "AGUARDANDO PAGAMENTO"}
<span class="btn btn-warning btn-xs">{$item['status']|strtolower|ucwords}</span>
{else if $item['status'] == "PAGO"}
<span class="btn btn-success btn-xs">{$item['status']|strtolower|ucwords}</span>
{/if}
</td>
<td data-id_ticket="{$item['id']}"
data-id_invoice="{$item['id_invoice']}"
data-payment_method="{$item['payment_method']}">
{if $item['status'] != "PAGO"}
<a class="btn btn-primary btn-xs baixa-boleto">Dar baixa</a>
{/if}
</td>
</tr>
{/foreach}
{else}
<tr>
<td colspan="8">{$_L['Not found']}</td>
</tr>
{/if}
</tbody>
</table>
<div class="row">
<div class="col-md-12">
<ul class="pagination pagination-xs margin-10px0">
{assign var=url value="{U}invoices/bank-slips/"}
{$paginator->paginate($url)}
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
{include file="sections/footer.tpl"}