on_load entfernt und in jquery.ready verwandelt
[kivitendo-erp.git] / templates / webpages / do / search.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE HTML %][%- USE LxERP %]
4  [%- IF vc == 'customer' %]
5  [%- SET is_customer = '1' %]
6  [%- ELSE %]
7  [%- SET is_customer = '0' %]
8  [%- END %]
9
10  <script type="text/javascript">
11    $(function(){ document.Form.donumber.focus(); });
12  </script>
13
14  <style type="text/css">
15   .fixed_width {
16     width: 250px;
17   }
18  </style>
19
20  <form method="post" action="do.pl" name="Form">
21
22   <div class="listtop">[% title %]</div>
23
24   <p>
25    <table>
26     <tr>
27      <th align="right">[% IF is_customer %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %]</th>
28      <td colspan="3">
29       [%- UNLESS SHOW_VC_DROP_DOWN %]
30       <input type="text" name="[% HTML.escape(vc) %]" class="fixed_width">
31       [%- ELSE %]
32       <select name="[% vc %]" class="fixed_width">
33        <option></option>
34        [%- FOREACH row = ALL_VC %]
35        <option>[% HTML.escape(row.name) %]--[% HTML.escape(row.id) %]</option>
36        [%- END %]
37       </select>
38       <input type="hidden" name="select[% vc %]" value="1">
39       [%- END %]
40      </td>
41     </tr>
42
43     <tr>
44      <th align="right">[% 'Delivery Order Number' | $T8 %]</th>
45      <td colspan="3"><input name="donumber" class="fixed_width"></td>
46     </tr>
47
48     <tr>
49      <th align="right">[% 'Order Number' | $T8 %]</th>
50      <td colspan="3"><input name="ordnumber" class="fixed_width"></td>
51     </tr>
52
53     [%- IF ALL_DEPARTMENTS.size %]
54     <tr>
55      <th align="right" nowrap>[% 'Department' | $T8 %]</th>
56      <td colspan="3">
57       <select name="department" class="fixed_width">
58        <option></option>
59        [%- FOREACH row = ALL_DEPARTMENTS %]
60        <option[% IF department == row.id %] selected[% END %]>[% HTML.escape(row.description) %]--[% HTML.escape(row.id) %]</option>
61        [%- END %]
62       </select>
63      </td>
64     </tr>
65     [%- END %]
66
67     <tr>
68      <th align="right">[% 'Employee' | $T8 %]</th>
69      <td>[% L.select_tag('employee_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, class = 'fixed_width') %]</td>
70     </tr>
71
72     [%- IF is_customer %]
73     <tr>
74      <th align="right">[% 'Salesman' | $T8 %]</th>
75      <td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, class = 'fixed_width') %]</td>
76     </tr>
77     [%- END %]
78
79     <tr>
80      <th align="right">[% 'Transaction description' | $T8 %]</th>
81      <td colspan="3"><input name="transaction_description" class="fixed_width"></td>
82     </tr>
83
84     <tr>
85      <th align="right">[% 'Customer Order Number' | $T8 %]</th>
86      <td colspan="3"><input name="cusordnumber" class="fixed_width"></td>
87     </tr>
88
89     <tr>
90      <th align="right">[% 'Project Number' | $T8 %]</th>
91      <td colspan="3">
92       <select name="project_id" class="fixed_width">
93        <option></option>
94        [%- FOREACH row = ALL_PROJECTS %]
95        <option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.projectnumber) %]</option>
96        [%- END %]
97       </select>
98      </td>
99     </tr>
100
101     <tr>
102      <th align="right">[% 'From' | $T8 %]</th>
103      <td>
104       [% L.date_tag('transdatefrom') %]
105      </td>
106      <th align="right">[% 'Bis' | $T8 %]</th>
107      <td>
108       [% L.date_tag('transdateto') %]
109      </td>
110     </tr>
111
112     <tr>
113      <th align="right">[% 'Include in Report' | $T8 %]</th>
114      <td colspan="5">
115       <table>
116        <tr>
117         <td>
118          <input type="checkbox" name="open" value="1" id="open" checked>
119          <label for="open">[% 'Open' | $T8 %]</label>
120         </td>
121         <td>
122          <input type="checkbox" name="closed" value="1" id="closed">
123          <label for="closed">[% 'Closed' | $T8 %]</label>
124         </td>
125        </tr>
126
127        <tr>
128         <td>
129          <input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
130          <label for="notdelivered">[% 'Not delivered' | $T8 %]</label>
131         </td>
132         <td>
133          <input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
134          <label for="delivered">[% 'Delivered' | $T8 %]</label></td>
135        </tr>
136
137        <tr>
138         <td>
139          <input name="l_id" id="l_id" class="checkbox" type="checkbox" value="Y">
140          <label for="l_id">[% 'ID' | $T8 %]</label>
141         </td>
142
143         <td>
144          <input name="l_donumber" id="l_donumber" class="checkbox" type="checkbox" value="Y" checked>
145          <label for="l_donumber">[% 'Delivery Order Number' | $T8 %]</label>
146         </td>
147        </tr>
148
149        <tr>
150         <td>
151          <input name="l_ordnumber" id="l_ordnumber" class="checkbox" type="checkbox" value="Y" checked>
152          <label for="l_ordnumber">[% 'Order Number' | $T8 %]</label>
153         </td>
154
155         <td>
156          <input name="l_cusordnumber" id="l_cusordnumber" class="checkbox" type="checkbox" value="Y">
157          <label for="l_cusordnumber">[% 'Customer Order Number' | $T8 %]</label>
158         </td>
159        </tr>
160
161        <tr>
162         <td>
163          <input name="l_transdate" id="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
164          <label for="l_transdate">[% 'Date' | $T8 %]</label>
165         </td>
166
167         <td>
168          <input name="l_name" id="l_name" class="checkbox" type="checkbox" value="Y" checked>
169          <label for="l_name">[% IF is_customer %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %]</label>
170         </td>
171
172         [% IF is_customer %]
173         <td>
174          <input name="l_customernumber" id="l_customernumber" class="checkbox" type="checkbox" value="Y">
175          <label for="l_customernumber">[% 'Customer Number' | $T8 %]</label>
176         </td>
177         [% END %]
178        </tr>
179
180        <tr>
181         <td>
182          <input name="l_department" id="l_department" class="checkbox" type="checkbox" value="Y">
183          <label for="l_department">[% "Department" | $T8 %]</label>
184         </td>
185
186         <td>
187          <input name="l_shipvia" id="l_shipvia" class="checkbox" type="checkbox" value="Y">
188          <label for="l_shipvia">[% 'Ship via' | $T8 %]</label>
189         </td>
190        </tr>
191
192        <tr>
193         <td>
194          <input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y" checked>
195          <label for="l_employee">[% 'Employee' | $T8 %]</label>
196         </td>
197
198         <td>
199          <input name="l_salesman" id="l_salesman" class="checkbox" type="checkbox" value="Y">
200          <label for="l_salesman">[% 'Salesman' | $T8 %]</label>
201         </td>
202        </tr>
203
204        <tr>
205         <td>
206          <input name="l_globalprojectnumber" id="l_globalprojectnumber" class="checkbox" type="checkbox" value="Y">
207          <label for="l_globalprojectnumber">[% 'Project Number' | $T8 %]</label>
208         </td>
209
210         <td>
211          <input name="l_transaction_description" id="l_transaction_description" class="checkbox" type="checkbox" value="Y">
212          <label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label>
213         </td>
214        </tr>
215
216       </table>
217      </td>
218     </tr>
219    </table>
220   </p>
221
222   <hr size="3" noshade>
223
224   <p>
225    <input type="hidden" name="nextsub" value="orders">
226    <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
227    <input type="hidden" name="type" value="[% HTML.escape(type) %]">
228
229    <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
230   </p>
231  </form>