Files
ventas_php/templates/lists/enumMetodosPago.tpl

6 lines
305 B
Smarty
Executable File

<select name="metodoPagoId" id="metodoPagoId" class="largeInput">
<option value="">Seleccione</option>
{foreach from=$metodosPago item=item key=key}
<option value="{$item.metodoPagoId}" {if $info.metodoPagoId == $item.metodoPagoId}selected{/if}>{$item.nombre}</option>
{/foreach}
</select>