| Server IP : 162.214.74.102 / Your IP : 216.73.216.139 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/www/lrsys_apps/rodeio/ui/theme/lrsys/ |
Upload File : |
{include file="sections/header.tpl"}
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<a href="{$_url}orders/add/" class="md-btn md-btn-primary"><i class="fa fa-plus"></i> {$_L['Add New Order']}</a>
</div>
<div class="panel-body">
<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 table-hover sys_table footable" data-filter="#foo_filter" data-page-size="50">
<thead>
<tr>
<th>{$_L['Order']} #</th>
<th>{$_L['Date']}</th>
<th>{$_L['Customer']}</th>
<th>{$_L['Total']}</th>
<th>{$_L['Status']}</th>
<th class="text-right" data-sort-ignore="true">{$_L['Manage']}</th>
</tr>
</thead>
<tbody>
{foreach $d as $ds}
<tr>
<td><a href="{$_url}orders/view/{$ds['id']}/">{$ds['id']}</a> </td>
<td>
{date( $_c['df'], strtotime({$ds['sales_date']}))}
</td>
<td><a href="{$_url}contacts/view/{$ds['crm_accounts_id']}/">{$ds['account']}</a> </td>
<td class="">
{$_c['currency_code']} {number_format($ds['total'], 2, ',', '.')}
</td>
<td>
{if $ds['status'] eq 'Approved'}
<span class="label label-success">{ib_lan_get_line($_L[$ds['status']])}</span>
{else}
<span class="label label-danger">{ib_lan_get_line($_L[$ds['status']])}</span>
{/if}
</td>
<td class="text-right">
<a href="{$_url}orders/view/{$ds['id']}/" class="btn btn-primary btn-xs"><i class="fa fa-search"></i> </a>
<a href="#" class="btn btn-danger btn-xs cdelete" id="uid{$ds['id']}"><i class="fa fa-trash"></i> </a>
</td>
</tr>
{/foreach}
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination">
</ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
{include file="sections/footer.tpl"}