Finanzcontrollingbericht implementiert
[kivitendo-erp.git] / templates / webpages / financial_controlling_report / _filter.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE LxERP %]
4 [%- USE HTML %]
5 <form action='controller.pl' method='post'>
6 <div class='filter_toggle'>
7 <a href='#' onClick='javascript:$(".filter_toggle").toggle()'>[% 'Show Filter' | $T8 %]</a>
8   [% SELF.filter_summary %]
9 </div>
10 <div class='filter_toggle' style='display:none'>
11 <a href='#' onClick='javascript:$(".filter_toggle").toggle()'>[% 'Hide Filter' | $T8 %]</a>
12  <table id='filter_table'>
13   <tr>
14    <th align="right">[% 'Customer' | $T8 %]</th>
15    <td>[% L.input_tag('filter.customer.name:substr::ilike', filter.customer.name_substr__ilike, size = 20) %]</td>
16   </tr>
17   <tr>
18    <th align="right">[% 'Customer Number' | $T8 %]</th>
19    <td>[% L.input_tag('filter.customer.customernumber:substr::ilike', filter.customer.customernumber_substr__ilike, size = 20) %]</td>
20   </tr>
21   <tr>
22    <th align="right">[% 'Order Number' | $T8 %]</th>
23    <td>[% L.input_tag('filter.ordnumber:substr::ilike', filter.ordnumber_substr__ilike, size = 20) %]</td>
24   </tr>
25   <tr>
26    <th align="right">[% 'Project Number' | $T8 %]</th>
27    <td>[% L.input_tag('filter.globalproject.projectnumber:substr::ilike', filter.globalproject.projectnumber_substr__ilike, size = 20) %]</td>
28   </tr>
29   <tr>
30    <th align="right">[% 'Order Date' | $T8 %] [% 'From Date' | $T8 %]</th>
31    <td>[% L.date_tag('filter.transdate:date::ge', filter.transdate_date__ge, cal_align = 'BR') %]</td>
32   </tr>
33   <tr>
34    <th align="right">[% 'Order Date' | $T8 %] [% 'To Date' | $T8 %]</th>
35    <td>[% L.date_tag('filter.transdate:date::le', filter.transdate_date__le, cal_align = 'BR') %]</td>
36   </tr>
37  </table>
38
39 [% L.hidden_tag('action', 'FinancialControllingReport/dispatch') %]
40 [% L.hidden_tag('sort_by', FORM.sort_by) %]
41 [% L.hidden_tag('sort_dir', FORM.sort_dir) %]
42 [% L.hidden_tag('page', FORM.page) %]
43 [% L.input_tag('action_list', LxERP.t8('Continue'), type = 'submit', class='submit')%]
44
45
46 <a href='#' onClick='javascript:$("#filter_table input").attr("value","");$("#filter_table option").attr("selected","")'>[% 'Reset' | $T8 %]</a>
47
48 </div>
49
50 </form>