82 lines
2.7 KiB
Smarty
Executable File
82 lines
2.7 KiB
Smarty
Executable File
<form name="frmInvFisico" id="frmInvFisico" method="post">
|
|
<input type="hidden" name="invFisicoId" id="invFisicoId" value="{$info.invFisicoId}" />
|
|
<input type="hidden" name="productoId" id="productoId" value="" />
|
|
<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>SELECCIONE LA SUCURSAL</b></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<select name="sucursalId" id="sucursalId" class="largeInput" onchange="UpdateSucursal()">
|
|
<option value="">Seleccione</option>
|
|
{foreach from=$sucursales item=item key=key}
|
|
{if $item.checked}
|
|
<option value="{$item.sucursalId}" {if $info.sucursalId == $item.sucursalId}selected{/if}>{$item.nombre}</option>
|
|
{/if}
|
|
{/foreach}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br />
|
|
<div align="center" id="txtSucMsg" style="display:none"></div>
|
|
<div align="center" id="txtErrMsg" style="display:none"></div>
|
|
<br />
|
|
|
|
<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 LA CANTIDAD FISICA</b></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td width="150"><div class="tblField">* Código de Barra:</div></td>
|
|
<td>
|
|
<input type="text" name="codigoBarra" id="codigoBarra" value="" class="largeInput" style="width:200px" onkeypress="CheckKey(event)" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><div class="tblField">Nombre del Producto:</div></td>
|
|
<td>
|
|
<div id="nomProd"></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><div class="tblField">* Cantidad Física:</div></td>
|
|
<td>
|
|
<input type="text" name="cantidad" id="cantidad" value="" class="largeInput" style="width:200px" onkeypress="CheckKey2(event)" />
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div align="left" style="margin-left:160px">* <b>Campos requeridos</b></div>
|
|
|
|
<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="Agregar Producto" class="btnGral" onclick="AgregarProducto()" style="width:150px" />
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
</form>
|
|
<br />
|
|
<div align="center" id="loader" style="display:none">
|
|
<img src="{$WEB_ROOT}/images/loading.gif">
|
|
<br>Cargando...
|
|
<br />Por favor, espere.
|
|
</div>
|
|
|
|
<div class="grid_15" id="contProds">
|
|
{include file="{$DOC_ROOT}/templates/lists/inventario-fisico-prods.tpl"}
|
|
</div> |