| Server IP : 162.214.74.102 / Your IP : 216.73.216.59 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/mundotennis/application/plugins/module_arbo/views/ |
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>
{if $type == 'proposals'}
{$_L['Listing of Rental Proposals']}
{else if $type == 'realestate'}
{$_L['Listing of real estate records']}
{/if}
</h4>
</div>
</div>
</form>
<br>
<div class="row">
<div class="col-md-12">
<table class="table table-bordered table-hover">
<thead>
<th>#</th>
<th>{$_L['Type']}</th>
<th>{$_L['Owner']}</th>
<th>{$_L['Sent']}</th>
<th>{$_L['Manage']}</th>
</thead>
<tbody>
{foreach $forms as $i => $item}
<tr>
<td>{$item->id}</td>
<td>{$item->type}</td>
<td>{$item->value}</td>
<td>{date('d/m/Y H:i', strtotime($item->submitted_at))}</td>
<td>
{if $item->sent_to_gaia == '1'}
ENVIADO PARA GAIA
{else}
{$dados_gaia = json_decode($item->sent_to_gaia)}
{if isset($dados_gaia->ref)}
<a class="btn btn-xs btn-success" target="_blank" href="http://app.valuegaia.com.br/admin/default.aspx#/modules/imoveis_beta/imovel-alterar.aspx?id={$dados_gaia->id}">
REF: {$dados_gaia->ref}
</a>
{else}
<a class="btn btn-xs btn-warning" href="{U}module_arbo/arbo/view/{$item->id}/{$type}">
<i class="fa fa-search"></i> Erro no envio
</a>
{/if}
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>