b07d7f787c1ef470bbb69271eb9310cbf408a22f
[kivitendo-erp.git] / templates / webpages / shop_order / _filter.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE LxERP %]
4 [%- USE HTML %]
5  <form method="post" action="controller.pl" name="shop_orders" id="shoporders">
6  <table id='filter_table'>
7
8     <tr>
9      <th align="right">[% 'Shop' | $T8 %]</th>
10      <td>[% L.select_tag('filter.shop_id:eq_ignore_empty', SELF.shops, value_key = 'value', title_key = 'title', default=0) %]</td>
11     </tr>
12
13     <tr>
14      <th align="right">[% 'Status' | $T8 %]</th>
15      <td>[% L.select_tag('filter.transferred:eq_ignore_empty', SELF.transferred, value_key = 'value', title_key = 'title', default=0) %]</td>
16     </tr>
17
18
19     <tr>
20      <th align="right">[% 'from' | $T8 %]</th>
21      <td>[% L.date_tag('filter.order_date:date::ge', FORM.filter.order_date_date__ge) %]</td>
22     </tr>
23
24     <tr>
25      <th align="right">[% 'to' | $T8 %]</th>
26      <td>[% L.date_tag('filter.order_date:date::le', FORM.filter.order_date_date__le) %]</td>
27     </tr>
28
29     <tr>
30       <th align="right">[% 'Obsolete' | $T8 %]</th>
31       <td>[% L.yes_no_tag('filter.obsolete', FORM.filter.obsolete, default='0', with_empty=1, empty_title='---') %]</td>
32     </tr>
33
34  </table>
35
36
37 <a href='#' onClick='javascript:$("#filter_table input").val("");$("#filter_table input[type=checkbox]").prop("checked", 0);'>[% 'Reset' | $T8 %]</a>
38 <br>