Primer commit del sistema avantika sin cambios
This commit is contained in:
70
templates/forms/inventario-ajustar.tpl
Executable file
70
templates/forms/inventario-ajustar.tpl
Executable file
@@ -0,0 +1,70 @@
|
||||
<form name="frmAjustar" id="frmAjustar" method="post">
|
||||
<input type="hidden" id="type" name="type" value=""/>
|
||||
<table width="620" cellpadding="0" cellspacing="0" border="1" class="boxTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="tblTh" colspan="2"><b>INTRODUZCA EL CODIGO DEL PRODUCTO Y SELECCIONE LA SUCURSAL</b></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="150"><div class="tblField">* Sucursal</div></td>
|
||||
<td>
|
||||
<select name="sucursalId" id="sucursalId" class="largeInput" onchange="BuscarProducto()">
|
||||
<option value="">Seleccione</option>
|
||||
{foreach from=$sucursales item=item key=key}
|
||||
<option value="{$item.sucursalId}" {if $sucursalId == $item.sucursalId}selected{/if}>{$item.nombre}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div class="tblField">* C.B. del Producto</div></td>
|
||||
<td>
|
||||
<input type="text" name="codigoBarra" id="codigoBarra" value="" class="largeInput" style="width:200px" onblur="BuscarProducto()" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div class="tblField">Nombre del Producto</div></td>
|
||||
<td>
|
||||
<div id="nomProd"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div class="tblField">Cant. en Inventario</div></td>
|
||||
<td>
|
||||
<div id="cantProd"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><div class="tblField">* Cantidad Real para Ajustar</div></td>
|
||||
<td>
|
||||
<input type="text" name="cantAjustar" id="cantAjustar" value="" class="largeInput" style="width:200px" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div align="left" style="margin-left:160px">* <b>Campos requeridos</b></div>
|
||||
|
||||
<div align="center" id="loader" style="display:none">
|
||||
<img src="{$WEB_ROOT}/images/loading.gif">
|
||||
<br>Cargando...
|
||||
<br />Por favor, espere.
|
||||
</div>
|
||||
|
||||
{if $errMsg}
|
||||
<div class="txtFailMsg">{$errMsg}</div>
|
||||
{/if}
|
||||
<br />
|
||||
<table width="620" cellpadding="0" cellspacing="0" border="1" class="boxTable">
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2" align="center" class="tblPages" height="22">
|
||||
<input type="button" name="btnNext" id="btnNext" value="Ajustar" class="btnGral" onclick="AjustarInventario()" style="width:100px" />
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
Reference in New Issue
Block a user