Primer commit del sistema avantika sin cambios

This commit is contained in:
2026-01-06 19:42:24 -06:00
commit 3ae4be5957
7127 changed files with 440072 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
<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&oacute;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&iacute;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>