Files
ventas_php/templates/forms/agregar-nota.tpl

48 lines
1.7 KiB
Smarty
Executable File

<div id="divForm">
<form id="addNotaForm" name="addNotaForm" method="post">
<fieldset>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center">* No. Nota de Cr&eacute;dito:</td>
<td align="center"></td>
</tr>
<tr>
<td align="center">
<input class="largeInput" name="noNota" id="noNota" type="text" />
</td>
<td align="center">
</td>
</tr>
<tr>
<td align="center">* Cantidad:</td>
<td align="center">* Fecha:</td>
</tr>
<tr>
<td align="center">
<input class="largeInput" name="cantidad" id="cantidad" type="text" />
</td>
<td align="center">
<div class="r" style="float:left">
<input class="largeInput" name="fecha" id="fecha" type="text" />
</div>
<div style="float:left">
<a href="javascript:void(0)" onclick="NewCal('fecha','ddmmyyyy')">
<img src="{$WEB_ROOT}/images/icons/calendar.gif" border="0" /></a>
</div>
</td>
</tr>
</table>
<div style="clear:both"></div>
<hr />
<div class="formLine">* Campos requeridos</div>
<div class="formLine" style="text-align:center; margin-left:300px">
<a class="button_grey" id="btnAddNota"><span>Agregar</span></a>
</div>
<input type="hidden" id="type" name="type" value="saveAddNota"/>
<input type="hidden" id="pedidoId" name="pedidoId" value="{$info.pedidoId}"/>
</fieldset>
</form>
</div>