64 lines
2.4 KiB
Smarty
Executable File
64 lines
2.4 KiB
Smarty
Executable File
<form name="frmSearch" id="frmSearch">
|
|
<input type="hidden" name="action" id="action" value="search" />
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0" id="box-table-a" style="border-top:1px solid #999999">
|
|
<thead>
|
|
<tr>
|
|
<th align="center" width="50"></th>
|
|
<th align="center" width="250"><div align="center">Sucursal</div></th>
|
|
<th width="200"><div align="center">No. Envío</div></th>
|
|
<th align="center" width="120"><div align="center">Código Barra</div></th>
|
|
<th align="center"><div align="center">Status</div></th>
|
|
<th align="center" width="50"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td></td>
|
|
<td align="center">
|
|
{if $Usr.type == "gerente"}
|
|
<div class="txtFrm" style="width:200px">{$info.sucursal}</div>
|
|
<input type="hidden" name="sucursalId2" id="sucursalId2" value="{$Usr.sucursalId}" />
|
|
{else}
|
|
<select name="sucursalId2" id="sucursalId2" class="largeInput" style="width:200px">
|
|
<option value="">Seleccione</option>
|
|
{foreach from=$sucursales item=item key=key}
|
|
<option value="{$item.sucursalId}" {if $post.sucursalId == $item.sucursalId}selected{/if}>{$item.nombre}</option>
|
|
{/foreach}
|
|
</select>
|
|
{/if}
|
|
</td>
|
|
<td align="center">
|
|
<input type="text" name="envioId2" id="envioId2" class="largeInput" style="width:70px" maxlength="10" onkeyup="CheckKey(event)" />
|
|
</td>
|
|
<td align="center">
|
|
<input type="text" name="codigoBarra2" id="codigoBarra2" class="largeInput" style="width:120px" maxlength="30" onkeyup="CheckKey(event)" />
|
|
</td>
|
|
<td align="center">
|
|
<select name="status2" id="status2" class="largeInput">
|
|
<option value="">Seleccione</option>
|
|
<option value="Autorizado">Autorizado</option>
|
|
<option value="Rechazado">Rechazado</option>
|
|
<option value="Pendiente">Pendiente</option>
|
|
</select>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center" colspan="6">
|
|
<input type="button" name="btnSearch" value="Buscar" class="btnSearch" onclick="Search()" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="6">
|
|
<div align="center">
|
|
<div id="loadBusqueda" style="display:none">
|
|
<br />
|
|
<img src="{$WEB_ROOT}/images/loading.gif" width="16" height="16" />
|
|
<br />Cargando...
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |