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,42 @@
<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>