25 lines
855 B
Smarty
Executable File
25 lines
855 B
Smarty
Executable File
<hr />
|
|
<table width="600" cellpadding="0" cellspacing="0" border="1">
|
|
<tr>
|
|
<td width="150" align="center" height="30"><b>Código Barra</b></td>
|
|
<td width="" align="center" height="30"><b>Producto</b></td>
|
|
<td width="100" align="center"><b>Cantidad</b></td>
|
|
<td width="30" align="center"> </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.cantidad}</td>
|
|
<td align="center">
|
|
<a href="javascript:void(0)" onclick="DeleteProducto({$key})" title="Eliminar">
|
|
<img src="{$WEB_ROOT}/images/icons/cancel2.png" border="0" />
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{foreachelse}
|
|
<tr>
|
|
<td colspan="4" height="30" align="center">Ningún registro encontrado.</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table> |