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

26 lines
895 B
Smarty
Executable File

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