common/flash.html via INCLUDE und nicht PROCESS einbinden
[kivitendo-erp.git] / templates / webpages / dunning / search.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE L %][%- USE P -%]
4 <h1>[% title %]</h1>
5
6 [% INCLUDE 'common/flash.html' %]
7
8  <form method="post" name="search" action="dn.pl" id="form">
9
10   <table width="100%">
11    <tr>
12     <td>
13      <table>
14       <tr>
15        <th align="right">[% 'Customer' | $T8 %]</th>
16        <td colspan="3">[% P.input_tag("customer", "", size="35", class="initial_focus") %]</td>
17       </tr>
18
19       [% IF SHOW_DUNNING_LEVELS %]
20        <tr>
21         <th align="right" nowrap>[% 'Dunning Level' | $T8 %]</th>
22         <td colspan="3">
23          <select name="dunning_level">
24           <option value=""></option>
25           [% FOREACH row = DUNNING %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>
26           [% END %]
27          </select>
28         </td>
29        </tr>
30       [% END %]
31
32       [% IF ALL_DEPARTMENTS.as_list.size %]
33        <tr>
34         <th align="right" nowrap>[% 'Department' | $T8 %]</th>
35         <td colspan="3">
36          <select name="department_id">
37           <option value=""></option>
38           [% FOREACH row = ALL_DEPARTMENTS %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.description) %]</option>
39           [% END %]
40          </select>
41         </td>
42        </tr>
43       [% END %]
44
45       <tr>
46        <th align="right" nowrap>[% 'Invoice Number' | $T8 %]</th>
47        <td colspan="3"><input name="invnumber" size="20"></td>
48       </tr>
49
50       <tr>
51        <th align="right" nowrap>[% 'Order Number' | $T8 %]</th>
52        <td colspan="3"><input name="ordnumber" size="20"></td>
53       </tr>
54
55       <tr>
56        <th align="right" nowrap>[% 'Notes' | $T8 %]</th>
57        <td colspan="3"><input name="notes" size="40"></td>
58       </tr>
59
60       <tr>
61        <th align="right" nowrap>[% 'Invdate from' | $T8 %]</th>
62        <td>
63          [% L.date_tag('transdatefrom') %]
64        </td>
65        <th align="right" nowrap>[% 'To (time)' | $T8 %]</th>
66        <td>
67          [% L.date_tag('transdateto') %]
68        </td>
69       </tr>
70
71       <tr>
72        <th align="right" nowrap>[% 'Dunning Date from' | $T8 %]</th>
73        <td>
74         [% L.date_tag('dunningfrom') %]
75        </td>
76        <th align="right" nowrap>[% 'To (time)' | $T8 %]</th>
77        <td>
78         [% L.date_tag('dunningto') %]
79        </td>
80       </tr>
81       <tr>
82        <th align="right">[% 'Salesman' | $T8 %]</th>
83        <td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, style = 'width:250px') %]</td>
84       </tr>
85      </table>
86     </td>
87    </tr>
88
89    <tr><td><hr size="3" noshade></td></tr>
90
91    <tr>
92     <td>
93      <table>
94       <tr>
95        <th align="right" nowrap>[% 'Show old dunnings' | $T8 %]</th>
96        <td><input type="checkbox" value="1" name="showold"></td>
97        <th align="right" nowrap>[% 'Show Salesman' | $T8 %]</th>
98        <td><input type="checkbox" value="1" name="l_salesman"></td>
99       </tr>
100      </table>
101     </td>
102    </tr>
103   </table>
104  </form>