54 lines
1.9 KiB
Smarty
Executable File
54 lines
1.9 KiB
Smarty
Executable File
<form name="frmSaldos" id="frmSaldos" method="post" action="export/cuentas-pagar-saldos.php">
|
|
<input type="hidden" name="type" id="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"></th>
|
|
<th align="center"><div align="center">Proveedor</div></th>
|
|
<th align="center"><div align="center">Con Saldos Iniciales</div></th>
|
|
<th align="center"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center"></td>
|
|
<td align="center">
|
|
<select name="proveedorId2" id="proveedorId2" class="largeInput" style="width:250px;">
|
|
<option value="">Todos</option>
|
|
{foreach from=$suppliers item=item key=key}
|
|
<option value="{$item.proveedorId}">{$item.noProv|str_pad:3:"0":$smarty.const.STR_PAD_LEFT} {$item.nombre}</option>
|
|
{/foreach}
|
|
</select>
|
|
</td>
|
|
<td align="center">
|
|
<select name="saldoIni2" id="saldoIni2" class="largeInput" style="width:120px;">
|
|
<option value="">Todos</option>
|
|
<option value="1">Sí</option>
|
|
<option value="0">No</option>
|
|
</select>
|
|
</td>
|
|
<td align="center"></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td align="center" colspan="2">
|
|
<input type="button" name="btnSearch" value="Generar" class="btnSearch" onclick="Buscar()" />
|
|
</td>
|
|
<td align="center" colspan="1">
|
|
<div style="float:right; padding-right:50px"><a href="javascript:void(0)" onclick="ExportReport()"><img src="{$WEB_ROOT}/images/icons/excel.png" title="Exportar Reporte"/></a></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="5">
|
|
<div align="center">
|
|
<div id="loadBusqueda" style="display:none">
|
|
<br />
|
|
<img src="{$WEB_ROOT}/images/loading.gif" width="16" height="16" />
|
|
<br />Cargando...
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |