Files
ventas_php/templates/items/cuentas-notas-base.tpl

14 lines
617 B
Smarty
Executable File

{foreach from=$item.notas item=it key=ky}
<tr>
<td align="center" height="25">{$it.noNota}</td>
<td align="center">${$it.cantidad|number_format:2:".":","} {$it.currency}</td>
<td align="center">{$it.fecha}</td>
<td align="center">
<a href="javascript:void(0)" onclick="DeleteNota({$it.pedidoNotaId})" title="Eliminar">
<img src="{$WEB_ROOT}/images/icons/delete.gif" border="0" />
</a>
</td>
</tr>
{foreachelse}
<tr><td colspan="4" align="center" height="30">Ning&uacute;n registro encontrado.</td></tr>
{/foreach}