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,26 @@
<div id="sugBox">
<div class="btnClose"><a href="javascript:void(0)" onclick="CloseSugProv()">X Cerrar</a></div>
<table width="100%" cellpadding="0" cellspacing="0" border="1" class="resTbl">
{foreach from=$proveedores item=item key=key}
<tr>
<td class="item" width="100" align="center" height="25" onclick="FillInfoProv({$item.proveedorId})">
{$item.noProv}
</td>
<td class="item" width="100" align="center" height="25" onclick="FillInfoProv({$item.proveedorId})">
{$item.rfc}
</td>
<td class="item" onclick="FillInfoProv({$item.proveedorId})">&nbsp;{$item.nombre}</td>
</tr>
{foreachelse}
<tr>
<td class="item" width="100" align="center" height="25" onclick="CloseSugProv()">
Ning&uacute;n registro encontrado.
</td>
</tr>
{/foreach}
</table>
</div>