Primer commit del sistema avantika sin cambios
This commit is contained in:
61
templates/forms/search-inventario.tpl
Executable file
61
templates/forms/search-inventario.tpl
Executable file
@@ -0,0 +1,61 @@
|
||||
<form name="frmSearch" id="frmSearch">
|
||||
<input type="hidden" name="action" id="action" value="search" />
|
||||
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a" style="border-top:1px solid #999999">
|
||||
<thead>
|
||||
<tr>
|
||||
<th align="center"><div align="center">Proveedor</div></th>
|
||||
<th align="center"><div align="center">Departamento</div></th>
|
||||
<th align="center"><div align="center">Línea</div></th>
|
||||
<th align="center"><div align="center">Modelo</div></th>
|
||||
<th align="center"><div align="center">Disponible</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<select name="proveedorId2" id="proveedorId2" class="smallInput">
|
||||
<option value="">Seleccione</option>
|
||||
{foreach from=$proveedores item=item key=key}
|
||||
<option value="{$item.proveedorId}">{$item.nombre|truncate:28:"..."}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
<td align="center">
|
||||
<select name="prodCatId2" id="prodCatId2" class="smallInput" onchange="LoadSubcats()">
|
||||
<option value="">Seleccione</option>
|
||||
{foreach from=$categorias item=item key=key}
|
||||
<option value="{$item.prodCatId}">{$item.nombre|truncate:28:"..."}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
<td align="center">
|
||||
<div id="enumSubcats">
|
||||
{include file="{$DOC_ROOT}/templates/lists/enumProdSubcatSearch.tpl"}
|
||||
</div>
|
||||
</td>
|
||||
<td align="center">
|
||||
<input type="text" name="modelo2" id="modelo2" class="smallInput" onkeyup="CheckKey(event)" style="width:100px" />
|
||||
</td>
|
||||
<td align="center">
|
||||
<input type="checkbox" name="disponible2" id="disponible2" value="1" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="5" align="center">
|
||||
<input type="button" name="btnSearch" value="Buscar" class="btnSearch" onclick="Search()" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<div align="center">
|
||||
<div id="loadBusqueda" style="display:none">
|
||||
<br />
|
||||
<img src="http://www.facturase.com/images/loading.gif" width="16" height="16" />
|
||||
<br />Cargando...
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
Reference in New Issue
Block a user