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,30 @@
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a">
<thead>
<tr>
<th width="70" style="background-color:#99CCFF"><div align="center">Sucursal</div></th>
<th width="" style="background-color:#99CCFF"><div align="center">Proveedor</div></th>
<th width="60" style="background-color:#99CCFF"><div align="center">C&oacute;digo Barra</div></th>
<th width="200" style="background-color:#99CCFF"><div align="center">Producto</div></th>
<th width="60" style="background-color:#99CCFF"><div align="center">Cantidad</div></th>
<th width="60" style="background-color:#99CCFF"><div align="center">Costo</div></th>
<th width="60" style="background-color:#99CCFF"><div align="center">Total</div></th>
</tr>
</thead>
<tbody>
{foreach from=$item.productos item=itP key=kP}
<tr>
<td align="center">{$itP.sucursal|urldecode}</td>
<td align="center">{$itP.proveedor}</td>
<td align="center">{$itP.codigoBarra}</td>
<td align="center">{$itP.producto}</td>
<td align="center">{$itP.cantidad}</td>
<td align="center">${$itP.costo|number_format:2:'.':','}</td>
<td align="center">${$itP.total|number_format:2:'.':','}</td>
</tr>
{foreachelse}
<tr>
<td colspan="6" align="center">Ning&uacute;n registro encontrado.</td>
</tr>
{/foreach}
</tbody>
</table>