Revision 3fc38171
Von Andreas Rudin vor etwa 6 Jahren hinzugefügt
templates/webpages/letter/search.html | ||
---|---|---|
7 | 7 |
<form action="controller.pl" method="post" name="Form" id="search_form"> |
8 | 8 |
<div class="wrapper"> |
9 | 9 |
|
10 |
<div class='filter_toggle'> |
|
11 |
<a href='#' onClick='javascript:$(".filter_toggle").toggle()' class="button toggle off neutral">[% 'Show Filter' | $T8 %]</a> |
|
12 |
[% SELF.filter_summary | html %] |
|
13 |
</div> |
|
14 |
|
|
15 |
<div class='filter_toggle' style='display:none'> |
|
16 |
<a href='#' onClick='javascript:$(".filter_toggle").toggle()' class="button toggle on neutral with-panel">[% 'Hide Filter' | $T8 %]</a> |
|
17 |
<div class="filter-toggle-panel"> |
|
18 |
|
|
19 |
<table id='filter_table' class="tbl-horizontal"> |
|
20 |
<tbody> |
|
21 |
<tr> |
|
22 |
<th>[% 'Letternumber' | $T8 %]</th> |
|
23 |
<td>[% L.input_tag('filter.letternumber:substr::ilike', filter.letternumber_substr__ilike, style='width:250px') %]</th> |
|
24 |
</tr> |
|
25 |
[% IF SELF.is_sales %] |
|
26 |
<tr> |
|
27 |
<td>[% 'Customer' | $T8 %]</td> |
|
28 |
<td>[% P.customer_vendor.picker('filter.customer_id', filter.customer_id, type='customer', style='width:250px') %]</td> |
|
29 |
</tr> |
|
30 |
[% ELSE %] |
|
31 |
<tr> |
|
32 |
<td>[% 'Vendor' | $T8 %]</td> |
|
33 |
<td>[% P.customer_vendor.picker('filter.vendor_id', filter.vendor_id, type='vendor', style='width:250px') %]</td> |
|
34 |
</tr> |
|
35 |
[% END %] |
|
36 |
<tr> |
|
37 |
<td>[% 'Contact' | $T8 %]</td> |
|
38 |
<td>[% L.input_tag('filter.contact.cp_name:substr::ilike', filter.contact.cp_name_substr__ilike, style='width:250px') %]</th> |
|
39 |
</tr> |
|
40 |
<tr> |
|
41 |
<td>[% 'Subject' | $T8 %]</td> |
|
42 |
<td>[% L.input_tag('filter.subject:substr::ilike', filter.subject_substr__ilike, style='width:250px') %]</th> |
|
43 |
</tr> |
|
10 |
[% BLOCK filter_toggle_panel %] |
|
11 |
<table id='filter_table' class="tbl-horizontal"> |
|
12 |
<tbody> |
|
13 |
<tr> |
|
14 |
<th>[% 'Letternumber' | $T8 %]</th> |
|
15 |
<td>[% L.input_tag('filter.letternumber:substr::ilike', filter.letternumber_substr__ilike, class='wi-lightwide') %]</td> |
|
16 |
</tr> |
|
17 |
[% IF SELF.is_sales %] |
|
44 | 18 |
<tr> |
45 |
<td>[% 'Body' | $T8 %]</td>
|
|
46 |
<td>[% L.input_tag('filter.body:substr::ilike', filter.body_substr__ilike, style='width:250px') %]</th>
|
|
19 |
<th>[% 'Customer' | $T8 %]</th>
|
|
20 |
<td class="wi-lightwide">[% P.customer_vendor.picker('filter.customer_id', filter.customer_id, type='customer') %]</td>
|
|
47 | 21 |
</tr> |
22 |
[% ELSE %] |
|
48 | 23 |
<tr> |
49 |
<td>[% 'From' | $T8 %]</td>
|
|
50 |
<td>[% L.date_tag('filter.date:date::ge', filter.date_date__ge) %] [% 'To (time)' | $T8 %] [% L.date_tag('filter.date:date::le', filter.date_date__le) %]</td>
|
|
24 |
<th>[% 'Vendor' | $T8 %]</th>
|
|
25 |
<td class="wi-lightwide">[% P.customer_vendor.picker('filter.vendor_id', filter.vendor_id, type='vendor') %]</td>
|
|
51 | 26 |
</tr> |
52 |
</tbody> |
|
53 |
</table> |
|
27 |
[% END %] |
|
28 |
<tr> |
|
29 |
<th>[% 'Contact' | $T8 %]</th> |
|
30 |
<td>[% L.input_tag('filter.contact.cp_name:substr::ilike', filter.contact.cp_name_substr__ilike, class='wi-lightwide') %]</td> |
|
31 |
</tr> |
|
32 |
<tr> |
|
33 |
<th>[% 'Subject' | $T8 %]</th> |
|
34 |
<td>[% L.input_tag('filter.subject:substr::ilike', filter.subject_substr__ilike, class='wi-lightwide') %]</td> |
|
35 |
</tr> |
|
36 |
<tr> |
|
37 |
<th>[% 'Body' | $T8 %]</th> |
|
38 |
<td>[% L.input_tag('filter.body:substr::ilike', filter.body_substr__ilike, class='wi-lightwide') %]</td> |
|
39 |
</tr> |
|
40 |
<tr> |
|
41 |
<th>[% 'Date' | $T8 %]</th> |
|
42 |
<td>[% L.date_tag('filter.date:date::ge', filter.date_date__ge, class='wi-date') %] [% 'To (time)' | $T8 %] [% L.date_tag('filter.date:date::le', filter.date_date__le, class='wi-date') %]</td> |
|
43 |
</tr> |
|
44 |
</tbody> |
|
45 |
</table> |
|
46 |
|
|
47 |
[% L.hidden_tag('is_sales', SELF.is_sales) %] |
|
48 |
[% L.hidden_tag('sort_by', FORM.sort_by) %] |
|
49 |
[% L.hidden_tag('sort_dir', FORM.sort_dir) %] |
|
50 |
[% L.hidden_tag('page', FORM.page) %] |
|
51 |
<div class="buttons"> |
|
52 |
[% L.button_tag("\$('#search_form').resetForm()", LxERP.t8("Reset"), class='neutral') %] |
|
53 |
</div> |
|
54 |
[% END # /BLOCK filter_toggle_panel %] |
|
54 | 55 |
|
55 |
[% L.hidden_tag('is_sales', SELF.is_sales) %] |
|
56 |
[% L.hidden_tag('sort_by', FORM.sort_by) %] |
|
57 |
[% L.hidden_tag('sort_dir', FORM.sort_dir) %] |
|
58 |
[% L.hidden_tag('page', FORM.page) %] |
|
59 |
<div class="buttons"> |
|
60 |
[% L.button_tag("\$('#search_form').resetForm()", LxERP.t8("Reset")) %] |
|
61 |
</div> |
|
62 |
|
|
63 |
</div><!-- /.filter-toggle-panel --> |
|
64 |
</div><!-- /.filter_toggle --> |
|
56 |
[% INCLUDE 'common/toggle_panel.html' %] |
|
65 | 57 |
|
66 | 58 |
</div> |
67 | 59 |
</form> |
Auch abrufbar als: Unified diff
HP Aenderungen bis Oktober 2018