Primer commit del sistema avantika sin cambios

This commit is contained in:
2026-01-06 19:42:24 -06:00
commit 3ae4be5957
7127 changed files with 440072 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
<form name="frmSaldos" id="frmSaldos" method="post" action="export/cuentas-pagar.php">
<input type="hidden" name="action" id="action" 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="280"></th>
<th align="center" width="200"><div align="center">Proveedor</div></th>
<th align="center" width="30"><div align="center">Global</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=$proveedores 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><input type="checkbox" name="global" id="global" value="1" /></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" colspan="2">
<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>