This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/discount/search_form.tpl
2008-11-26 14:50:40 -08:00

169 lines
6.3 KiB
Smarty

{ $method->exe("discount","search_form") }
{ if ($method->result == FALSE) }
{ $block->display("core:method_error") }
{else}
<form name="discount_search" method="post" action="">
<table width=100% border="0" cellspacing="0" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr valign="top">
<td width="65%" class="table_heading">
<center>
{translate module=discount}title_search{/translate}
</center>
</td>
</tr>
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
<tr valign="top">
<td width="35%">
{translate module=discount}
field_date_orig
{/translate}
</td>
<td width="65%">
{ $list->calender_search("discount_date_orig", $VAR.discount_date_orig, "form_field", "") }
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_date_start
{/translate}
</td>
<td width="65%">
{ $list->calender_search("discount_date_start", $VAR.discount_date_start, "form_field", "") }
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_date_expire
{/translate}
</td>
<td width="65%">
{ $list->calender_search("discount_date_expire", $VAR.discount_date_expire, "form_field", "") }
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_status
{/translate}
</td>
<td width="65%">
{ $list->bool("discount_status", "all", "form_menu") }
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_name
{/translate}
</td>
<td width="65%">
<input type="text" name="discount_name" value="{$VAR.discount_name}" {if $discount_name == true}class="form_field_error"{/if}>
&nbsp;&nbsp;
{translate}
search_partial
{/translate}
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_notes
{/translate}
</td>
<td width="65%">
<input type="text" name="discount_notes" value="{$VAR.discount_notes}" {if $discount_notes == true}class="form_field_error"{/if}>
&nbsp;&nbsp;
{translate}
search_partial
{/translate}
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_avail_account_id
{/translate}
</td>
<td width="65%">
{html_select_account name="discount_avail_account_id" default=$VAR.discount_avail_account_id}
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_new_status
{/translate}
</td>
<td width="65%">
{ $list->bool("discount_new_status", "all", "form_menu") }
</td>
</tr>
<tr valign="top">
<td width="35%">
{translate module=discount}
field_recurr_status
{/translate}
</td>
<td width="65%">
{ $list->bool("discount_recurr_status", "all", "form_menu") }
</td>
</tr>
<!-- Define the results per page -->
<tr class="row1" valign="top">
<td width="35%">
{translate}
search_results_per
{/translate}
</td>
<td width="65%">
<input type="text" name="limit" size="5" value="{$discount_limit}">
</td>
</tr>
<!-- Define the order by field per page -->
<tr class="row1" valign="top">
<td width="35%">
{translate}
search_order_by
{/translate}
</td>
<td width="65%">
<select name="order_by">
{foreach from=$discount item=record}
<option value="{$record.field}">
{$record.translate}
</option>
{/foreach}
</select>
</td>
</tr>
<tr class="row1" valign="top">
<td width="35%"></td>
<td width="65%">
<input type="submit" name="Submit" value="{translate}search{/translate}" class="form_button">
<input type="hidden" name="_page" value="core:search">
<input type="hidden" name="_escape" value="Y">
<input type="hidden" name="module" value="discount">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
{ $block->display("core:saved_searches") }
{ $block->display("core:recent_searches") }
{/if}