Files
ventas_php/templates/lists/suggest-cliente.tpl

22 lines
743 B
Smarty
Executable File

<div id="sugBox">
<div class="btnClose"><a href="javascript:void(0)" onclick="CloseSugClte()">X Cerrar</a></div>
<table width="100%" cellpadding="0" cellspacing="0" border="1" class="resTbl">
{foreach from=$clientes item=item key=key}
<tr>
<td class="item" width="100" align="center" height="25" onclick="FillInfoClte({$item.clienteId})">
{$item.rfc}
</td>
<td class="item" onclick="FillInfoClte({$item.clienteId})">&nbsp;{$item.nombre}</td>
</tr>
{foreachelse}
<tr>
<td class="item" width="100" align="center" height="25" onclick="CloseSugClte()">
Ning&uacute;n registro encontrado.
</td>
</tr>
{/foreach}
</table>
</div>