| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 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/hering/application/plugins/module_arbo/views/robologs/ |
Upload File : |
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<form name="form-import" action="{U}module_arbo/arbo/import" method="post">
<div class="row">
<div class="col-md-12">
<h4>{$_L['Robot Logs List']}</h4>
</div>
</div>
</form>
<br>
<div class="row">
<div class="col-md-12">
<table class="table table-bordered table-hover table-striped" id="logs-list">
<thead>
<th>#</th>
<th class="col-md-1">{$_L['Date']}</th>
<th>{$_L['Operation']}</th>
<th>{$_L['Owner']}</th>
<th>{$_L['Description']}</th>
<th>{$_L['Status']}</th>
<th>{$_L['Manage']}</th>
</thead>
<tbody>
{foreach $logs as $i => $item}
<tr>
<td data-id="{$item->id}">{$item->id}</td>
<td>{date('d/m H:i:s', strtotime($item->date))}</td>
<td>
{if $item->operation == "INPUT"}
<span class="label label-xs label-success col-md-12">{$_L['module_arbo_entry']}</span>
{else}
<span class="label label-xs label-danger col-md-12">{$_L['module_arbo_out']}</span>
{/if}
</td>
<td>{$item->owner|escape}</td>
<td>{$item->description|escape}</td>
<td class="td-fix">{$item->status|escape}</td>
<td class="col-md-2">
<a class="btn btn-xs btn-warning" href="{U}module_arbo/robologs/view/{$item->id}">
<i class="fa fa-search"></i> {$_L['Details']}</a>
{*"Enviando os dados do proprietário para o sistema da Gaia"*}
{*"Enviando os dados do imóvel para o sistema da Gaia"*}
{if in_array($item->description, ["Enviando os dados do imóvel para o sistema da Gaia"])}
<a class="btn btn-xs btn-primary" href="{U}module_arbo/robologs/edit/{$item->id}">
<i class="fa fa-pencil"></i> {$_L['Edit']}</a>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<a class="btn btn-lg btn-primary" id="load-logs">Ver mais</a>
</div>
</div>
</div>
</div>
</div>
</div>