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 @@
<table width="600" cellpadding="0" cellspacing="0" border="1">
<tr>
<td width="150" align="center" height="30"><b>C&oacute;digo Barra</b></td>
<td width="" align="center" height="30"><b>Producto</b></td>
<td width="80" align="center"><b>Disponible</b></td>
<td width="100" align="center"><b>Cantidad</b></td>
<td width="30" align="center">&nbsp;</td>
</tr>
{foreach from=$productos item=item key=key}
<tr>
<td align="center" height="30">{$item.codigoBarra}</td>
<td align="left" height="30">{$item.nombre}</td>
<td align="center">{$item.disponible}</td>
<td align="center">
<input type="text" name="cantidad_{$item.prodItemId}" class="smallInput" style="width:80px" />
</td>
<td align="center">
<input type="checkbox" name="idProds[]" value="{$item.prodItemId}" />
</td>
</tr>
{foreachelse}
<tr>
<td colspan="5" height="30" align="center">Ning&uacute;n registro encontrado.</td>
</tr>
{/foreach}
</table>