Primer commit del sistema avantika sin cambios
This commit is contained in:
46
templates/forms/filtro-reporte-faltantes.tpl
Executable file
46
templates/forms/filtro-reporte-faltantes.tpl
Executable file
@@ -0,0 +1,46 @@
|
||||
<form name="frmFaltantes" id="frmFaltantes" method="post" action="export/reporte-faltantes.php">
|
||||
<input type="hidden" name="type" value="search" />
|
||||
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a" style="border-top:1px solid #999999">
|
||||
<thead>
|
||||
<tr>
|
||||
<th align="center" width="150"></th>
|
||||
<th align="center"><div align="center">Proveedor</div></th>
|
||||
<th align="center"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center"></td>
|
||||
<td align="center">
|
||||
<select name="proveedorId" id="proveedorId" class="largeInput" style="width:250px;">
|
||||
<option value="">Todos</option>
|
||||
{foreach from=$proveedores2 item=item key=key}
|
||||
<option value="{$item.proveedorId}">{$item.nombre|truncate:50:"..."}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
<td align="center"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td align="center">
|
||||
<input type="button" name="btnSearch" value="Generar" class="btnSearch" onclick="Buscar()" />
|
||||
</td>
|
||||
<td align="center">
|
||||
<div style="float:right; padding-right:50px"><a href="#" onclick="ExportInv(); return false;"><img src="{$WEB_ROOT}/images/icons/excel.png" title="Exportar Reporte"/></a></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
<div align="center">
|
||||
<div id="loadBusqueda" style="display:none">
|
||||
<br />
|
||||
<img src="http://www.facturase.com/images/loading.gif" width="16" height="16" />
|
||||
<br />Cargando...
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
Reference in New Issue
Block a user