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,45 @@
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a">
<thead>
<tr>
<td align="right" colspan="6" style="border-top:none;">
<a href="#" onclick="ExportGral(); return false;">
<img src="{$WEB_ROOT}/images/icons/excel.png" title="Exportar Reporte"/>
</a>
</td>
</tr>
<tr>
<th width="150" scope="col"><div align="center">Sucursal</div></th>
<th width="200" scope="col"><div align="center">Proveedor</div></th>
<th width="" scope="col"><div align="center">Producto</div></th>
<th width="110" scope="col"><div align="center">Cantidad</div></th>
<th width="80" scope="col"><div align="center">No. Env&iacute;o</div></th>
<th width="100" scope="col"><div align="center">Fecha</div></th>
</tr>
</thead>
<tbody>
{foreach from=$productos item=item key=key}
<tr>
<td align="left">{$item.sucursal}</td>
<td align="left">{$item.proveedor}</td>
<td align="left">{$item.codigoBarra}<br />{$item.modelo}</td>
<td align="center">{$item.cantidad|number_format:0:'.':','}</td>
<td align="center">{$item.envioId}</td>
<td align="center">{$item.fecha|date_format:"%d-%m-%Y %H:%M:%S"}</td>
</tr>
{foreachelse}
<tr><td colspan="6" align="center">Ning&uacute;n registro encontrado.</td></tr>
{/foreach}
{if $productos|count > 0}
<tr>
<td></td>
<td></td>
<td><b>TOTAL</b></td>
<td align="center"><b>{$cantTotal|number_format:0:'.':','}</b></td>
<td></td>
<td></td>
</tr>
{/if}
</tbody>
</table>