Lieferscheinbericht: Suchmöglichkeit nach Seriennummer
[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">[% 'Serial Number' | $T8 %]</th>
103      <td colspan="3"><input name="serialnumber" class="fixed_width"></td>
104     </tr>
105
106     <tr>
107      <th align="right">[% 'From' | $T8 %]</th>
108      <td>
109       [% L.date_tag('transdatefrom') %]
110      </td>
111      <th align="right">[% 'Bis' | $T8 %]</th>
112      <td>
113       [% L.date_tag('transdateto') %]
114      </td>
115     </tr>
116
117     <tr>
118      <th align="right">[% 'Include in Report' | $T8 %]</th>
119      <td colspan="5">
120       <table>
121        <tr>
122         <td>
123          <input type="checkbox" name="open" value="1" id="open" checked>
124          <label for="open">[% 'Open' | $T8 %]</label>
125         </td>
126         <td>
127          <input type="checkbox" name="closed" value="1" id="closed">
128          <label for="closed">[% 'Closed' | $T8 %]</label>
129         </td>
130        </tr>
131
132        <tr>
133         <td>
134          <input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
135          <label for="notdelivered">[% 'Not delivered' | $T8 %]</label>
136         </td>
137         <td>
138          <input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
139          <label for="delivered">[% 'Delivered' | $T8 %]</label></td>
140        </tr>
141
142        <tr>
143         <td>
144          <input name="l_id" id="l_id" class="checkbox" type="checkbox" value="Y">
145          <label for="l_id">[% 'ID' | $T8 %]</label>
146         </td>
147
148         <td>
149          <input name="l_donumber" id="l_donumber" class="checkbox" type="checkbox" value="Y" checked>
150          <label for="l_donumber">[% 'Delivery Order Number' | $T8 %]</label>
151         </td>
152        </tr>
153
154        <tr>
155         <td>
156          <input name="l_ordnumber" id="l_ordnumber" class="checkbox" type="checkbox" value="Y" checked>
157          <label for="l_ordnumber">[% 'Order Number' | $T8 %]</label>
158         </td>
159
160         <td>
161          <input name="l_cusordnumber" id="l_cusordnumber" class="checkbox" type="checkbox" value="Y">
162          <label for="l_cusordnumber">[% 'Customer Order Number' | $T8 %]</label>
163         </td>
164        </tr>
165
166        <tr>
167         <td>
168          <input name="l_transdate" id="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
169          <label for="l_transdate">[% 'Date' | $T8 %]</label>
170         </td>
171         <td>
172          <input name="l_reqdate" id="l_reqdate" class="checkbox" type="checkbox" value="Y" checked>
173          <label for="l_reqdate">[% 'Reqdate' | $T8 %]</label>
174         </td>
175        </tr>
176
177        <tr>
178         <td>
179          <input name="l_name" id="l_name" class="checkbox" type="checkbox" value="Y" checked>
180          <label for="l_name">[% IF is_customer %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %]</label>
181         </td>
182
183         [% IF is_customer %]
184         <td>
185          <input name="l_customernumber" id="l_customernumber" class="checkbox" type="checkbox" value="Y">
186          <label for="l_customernumber">[% 'Customer Number' | $T8 %]</label>
187         </td>
188         [% END %]
189        </tr>
190
191        <tr>
192         <td>
193          <input name="l_department" id="l_department" class="checkbox" type="checkbox" value="Y">
194          <label for="l_department">[% "Department" | $T8 %]</label>
195         </td>
196
197         <td>
198          <input name="l_shipvia" id="l_shipvia" class="checkbox" type="checkbox" value="Y">
199          <label for="l_shipvia">[% 'Ship via' | $T8 %]</label>
200         </td>
201        </tr>
202
203        <tr>
204         <td>
205          <input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y" checked>
206          <label for="l_employee">[% 'Employee' | $T8 %]</label>
207         </td>
208
209         <td>
210          <input name="l_salesman" id="l_salesman" class="checkbox" type="checkbox" value="Y">
211          <label for="l_salesman">[% 'Salesman' | $T8 %]</label>
212         </td>
213        </tr>
214
215        <tr>
216         <td>
217          <input name="l_globalprojectnumber" id="l_globalprojectnumber" class="checkbox" type="checkbox" value="Y">
218          <label for="l_globalprojectnumber">[% 'Project Number' | $T8 %]</label>
219         </td>
220
221         <td>
222          <input name="l_transaction_description" id="l_transaction_description" class="checkbox" type="checkbox" value="Y">
223          <label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label>
224         </td>
225        </tr>
226
227       </table>
228      </td>
229     </tr>
230    </table>
231   </p>
232
233   <hr size="3" noshade>
234
235   <p>
236    <input type="hidden" name="nextsub" value="orders">
237    <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
238    <input type="hidden" name="type" value="[% HTML.escape(type) %]">
239
240    <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
241   </p>
242  </form>