Primer commit del sistema avantika sin cambios
This commit is contained in:
74
templates/forms/filtro-cliente.tpl
Executable file
74
templates/forms/filtro-cliente.tpl
Executable file
@@ -0,0 +1,74 @@
|
||||
{*}
|
||||
<form name="formVend" id="formVend">
|
||||
<input type="hidden" name="type" id="type" value="dependSuc" />
|
||||
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a" style="border-top:1px solid #999999">
|
||||
<thead>
|
||||
<tr>
|
||||
<th align="center" colspan="2" width="50%"><div align="center">Cliente</div></th>
|
||||
{*} <th align="center" colspan="1" width="25%"><div align="center">Sucursal</div></th>{*}
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
{*}<td>
|
||||
<div style="float:left">
|
||||
Inicial:<input style="text-align:center" type="text" name="fechaI" id="fechaI" class="smallInput" style="width:120px" maxlength="10" readonly="readonly" value="{$dateNow}" />
|
||||
</div>
|
||||
<div style="float:left; padding-left:10px; padding-top:5px">
|
||||
<a href="javascript:void(0)" onclick="NewCal('fechaI','ddmmyyyy')">
|
||||
<img src="{$WEB_ROOT}/images/icons/calendar.gif" /></a>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<div style="float:left">
|
||||
Final: <input style="text-align:center" type="text" name="fechaF" id="fechaF" class="smallInput" style="width:120px" maxlength="10" readonly="readonly" value="{$dateNow}"/>
|
||||
</div>
|
||||
<div style="float:left; padding-left:10px; padding-top:5px">
|
||||
<a href="javascript:void(0)" onclick="NewCal('fechaF','ddmmyyyy')">
|
||||
<img src="{$WEB_ROOT}/images/icons/calendar.gif" /></a>
|
||||
</div>
|
||||
</td>{*}
|
||||
<td>
|
||||
<div style="text-align:center">
|
||||
<select name="temporada" id="temporada" class="largeInput">
|
||||
<option selected="selected" value=""> Selecciona una temporada</option>
|
||||
{foreach from=$resTemp item=item key=key}
|
||||
<option value="{$item.temporadaId}"> {$item.nombre}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
<td>
|
||||
<div style="text-align:center">
|
||||
{if $tipo eq "admin"}
|
||||
<select name="sucursal" id="sucursal" class="largeInput">
|
||||
<option selected="selected" value=""> Selecciona una sucursal</option>
|
||||
{foreach from=$resSuc item=item key=key}
|
||||
<option value="{$item.sucursalId}"> {$item.nombre}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
{elseif $tipo eq "gerente"}
|
||||
{foreach from=$resSuc item=item key=key}
|
||||
<input type="text" disabled="disabled" style="text-align:center" class="smallInput" value="{$item.nombre}"/>
|
||||
<input type="hidden" name="sucursal" id="sucursal" value="{$item.sucursalId}"/>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
{*}<div id="selectVend">{include file="{$DOC_ROOT}/templates/forms/select-vend.tpl"}</div>{*}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" colspan="7">
|
||||
<input type="button" name="btnReporteTempo" id="btnReporteTempo" value="Generar" class="btnSearch" onclick="ReporteTempo()"/>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
{*}
|
||||
Reference in New Issue
Block a user