Primer commit del sistema avantika sin cambios
This commit is contained in:
74
templates/forms/search-facturas-gral.tpl
Executable file
74
templates/forms/search-facturas-gral.tpl
Executable file
@@ -0,0 +1,74 @@
|
||||
|
||||
<div class="clear"></div>
|
||||
<div id="portlets">
|
||||
<!--THIS IS A WIDE PORTLET-->
|
||||
<div class="portlet">
|
||||
|
||||
<div class="portlet-content nopadding">
|
||||
<form name="frmBusqueda" id="frmBusqueda" method="post" action="">
|
||||
<input type="hidden" name="type" id="type" value="buscar" />
|
||||
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a" summary="Employee Pay Sheet">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="76" scope="col"><div align="center">RFC</div></th>
|
||||
<th width="" scope="col"><div align="center">Nombre</div></th>
|
||||
<th width="129" scope="col"><div align="center">Mes</div></th>
|
||||
<th width="79" scope="col"><div align="center">Año</div></th>
|
||||
<th width="123" scope="col"><div align="center">Status</div></th>
|
||||
<th width="90" scope="col"><div align="center">Comprobante</div></th>
|
||||
<th width="90" scope="col"><div align="center">Sucursal</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<input type="text" size="12" name="rfc" id="rfc" class="smallInput" maxlength="12" onkeyup="CheckKey(event)" />
|
||||
</td>
|
||||
<td align="center">
|
||||
<input type="text" size="15" name="nombre" id="nombre" class="smallInput" maxlength="30" onkeyup="CheckKey(event)" />
|
||||
</td>
|
||||
<td align="center">
|
||||
<select name="mes" id="mes" class="smallInput">
|
||||
<option value="0">Todos</option>
|
||||
{foreach from=$meses item=item key=key}
|
||||
<option value="{$item.id}">{$item.nombre}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
<td align="center">
|
||||
<input type="text" size="4" name="anio" id="anio" maxlength="4" class="smallInput" onkeyup="CheckKey(event)" />
|
||||
</td>
|
||||
<td align="center">
|
||||
<select name="status" id="status" class="smallInput">
|
||||
<option value="">Todos</option>
|
||||
<option value="1">Activos</option>
|
||||
<option value="0">Cancelados</option>
|
||||
</select>
|
||||
</td>
|
||||
<td align="center">
|
||||
<select name="tiposComprobanteId" id="tiposComprobanteId" class="smallInput">
|
||||
<option value="0">Todos</option>
|
||||
{foreach from=$tiposComprobantes item=item key=key}
|
||||
<option value="{$item.tiposComprobanteId}">{$item.nombre}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
<td align="center">
|
||||
<select name="idSucursal" id="idSucursal" class="smallInput">
|
||||
<option value="">Seleccione</option>
|
||||
{foreach from=$sucursales item=item key=key}
|
||||
<option value="{$item.sucursalId}">{$item.nombre}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="7" align="center" style="border-top:none">
|
||||
<input type="button" name="btnSearch" value="Buscar" class="btnSearch" onclick="Buscar()" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user