38 lines
1.3 KiB
Smarty
Executable File
38 lines
1.3 KiB
Smarty
Executable File
<table width="100%" cellpadding="0" cellspacing="0" id="boxTblC" style="border-top:1px solid #CCCCCC">
|
|
<thead>
|
|
<tr>
|
|
<th width="90" align="center" height="30">Desc.</th>
|
|
<th width="" align="center">Descripción</th>
|
|
<th width="50" align="center" height="30">Cant.</th>
|
|
<th width="90" align="center">P. Unit.</th>
|
|
<th width="90" align="center">Total</th>
|
|
<th width="20" align="center"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$conceptos item=item key=key}
|
|
<tr>
|
|
<td align="center">{$item.descuento}</td>
|
|
<td align="left">
|
|
{$item.name}
|
|
{if $item.promocionId}
|
|
<br />
|
|
Promoción: {$item.promocion}
|
|
{/if}
|
|
</td>
|
|
<td align="center">{$item.cantidad}</td>
|
|
<td align="center">{$item.precio|number_format:2:".":","}</td>
|
|
<td align="center">{$item.total|number_format:2:".":","}</td>
|
|
<td align="center">
|
|
<a href="javascript:void(0)" onclick="DeleteProduct({$item.productoId})">
|
|
<img src="{$WEB_ROOT}/images/icons/delete.gif" border="0" />
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{foreachelse}
|
|
<tr>
|
|
<td colspan="6" align="center">Ningún producto encontrado.</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table> |