| 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/imobles/ui/theme/lrsys/ |
Upload File : |
<a href="{$_url}invoices/add/1/{$cid}/" class="btn btn-primary waves-effect waves-light"><i class="fa fa-plus"></i> {$_L['New Invoice']}</a>
<hr>
<table class="table table-bordered table-hover sys_table">
<thead>
<tr>
<th>#</th>
<th>{$_L['Account']}</th>
<th>{$_L['Amount']}</th>
<th>{$_L['Invoice Date']}</th>
<th>{$_L['Due Date']}</th>
<th>{$_L['Status']}</th>
<th class="text-right">{$_L['Manage']}</th>
</tr>
</thead>
<tbody>
{foreach $i as $is}
<tr>
<td>{$is['invoicenum']}{if $is['cn'] neq ''} {$is['cn']} {else} {$is['id']} {/if}</td>
<td>{$is['account']}</td>
<td class="amount" data-a-dec="{$_c['dec_point']}" data-a-sep="{$_c['thousands_sep']}" data-a-pad="{$_c['currency_decimal_digits']}" data-p-sign="{$_c['currency_symbol_position']}" data-a-sign="{$_c['currency_code']} " data-d-group="{$_c['thousand_separator_placement']}">{$is['total']}</td>
<td>{date( $_c['df'], strtotime($is['date']))}</td>
<td>{date( $_c['df'], strtotime($is['duedate']))}</td>
<td>{ib_lan_get_line($is['status'])}</td>
<td>
<a href="{$_url}invoices/view/{$is['id']}/" class="btn btn-primary btn-xs"><i class="fa fa-check"></i> {$_L['View']}</a>
<a href="{$_url}invoices/edit/{$is['id']}/" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> {$_L['Edit']}</a>
</td>
</tr>
{/foreach}
</tbody>
</table>