42 lines
1.3 KiB
Smarty
Executable File
42 lines
1.3 KiB
Smarty
Executable File
<form name="frmProdsTransito" id="frmProdsTransito" method="post" action="export/prods-transito.php">
|
|
<input type="hidden" name="type" id="type" value="prodsTransito" />
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a" style="border-top:1px solid #999999">
|
|
<thead>
|
|
<tr>
|
|
<th align="center"><div align="center">Sucursal</div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<select name="idSucursal" id="idSucursal" class="largeInput">
|
|
<option value="">Todas</option>
|
|
{foreach from=$sucursales item=item key=key}
|
|
<option value="{$item.sucursalId}">{$item.nombre}</option>
|
|
{/foreach}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
<input type="button" name="btnReporte" id="btnReporte" value="Generar" class="btnSearch" onclick="RepProdsTransito()"/>
|
|
<div style="float:right; padding-right:50px">
|
|
<a href="javascript:void(0)" onclick="ExportProdsTransito()">
|
|
<img src="{$WEB_ROOT}/images/icons/excel.png" title="Exportar Reporte" border="0"/>
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
<div id="loadBusqueda" style="display:none" align="center">
|
|
<br />
|
|
<img src="{$WEB_ROOT}/images/loading.gif" width="16" height="16" />
|
|
<br />Cargando...
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |