c71e60f6d2bd3ca1b6e6ccc56887cc08eda18afb
[kivitendo-erp.git] / templates / webpages / oe / search.html
1 [%- USE HTML %]
2 [%- USE T8 %]
3 [%- USE LxERP %]
4 [%- USE L %]
5 [%- SET vclabel = vc == 'customer' ? LxERP.t8('Customer') : LxERP.t8('Vendor') %]
6 [%- SET vcnumberlabel = vc == 'customer' ? LxERP.t8('Customer Number') : LxERP.t8('Vendor Number') %]
7 [%- SET vctypelabel = vc == 'customer' ? LxERP.t8('Customer type') : LxERP.t8('Vendor type') %]
8
9 <form method="post" action="oe.pl">
10
11  <p><div class="listtop">[% HTML.escape(title) %]</div></p>
12
13 <table width="100%">
14  <tr>
15   <td>
16    <table>
17     <tr>
18      <th align="right">[% HTML.escape(vclabel) %]</th>
19      <td colspan="3">
20             [%- INCLUDE 'generic/multibox.html'
21                  name          = vc,
22                  default       = vc == 'customer' ? oldcustomer : oldvendor,
23                  style         = 'width: 250px',
24                  DATA          = ALL_VC,
25                  id_sub        = 'vc_keys',
26                  label_key     = 'name',
27                  select        = vc_select,
28                  limit         = vclimit,
29                  show_empty    = 1,
30                  allow_textbox = 1,
31                  class         = 'initial_focus',
32                  -%]
33      </td>
34     </tr>
35 [%- IF ALL_DEPARTMENTS.size %]
36     <tr>
37      <th align="right" nowrap>[% 'Department' | $T8 %]</th>
38      <td colspan="3">
39             [%- INCLUDE 'generic/multibox.html'
40                  name          = 'department_id',
41                  style         = 'width: 250px',
42                  DATA          = ALL_DEPARTMENTS,
43                  id_key        = 'id',
44                  label_key     = 'description',
45                  limit         = vclimit,
46                  show_empty    = 1,
47                  allow_textbox = 1,
48             -%]
49      </td>
50     </tr>
51 [%- END %]
52     <tr>
53      <th align="right">[% HTML.escape(ordlabel) %]</th>
54      <td colspan="3"><input name="[% HTML.escape(ordnrname) %]" style="width: 250px"></td>
55     </tr>
56     <tr>
57      <th align="right">[% 'Employee' | $T8 %]</th>
58      <td>[% L.select_tag('employee_id', ALL_EMPLOYEES, title_key='safe_name', with_empty=1, style='width:250px') %]</td>
59     </tr>
60     <tr>
61      <th align="right">[% 'Salesman' | $T8 %]</th>
62      <td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key='safe_name', with_empty=1, style='width:250px') %]</td>
63     </tr>
64     <tr>
65      <th align="right">[% 'Transaction description' | $T8 %]</th>
66      <td colspan="3"><input name="transaction_description" style="width: 250px"></td>
67     </tr>
68     <tr>
69      <th align="right">[% 'Project Number' | $T8 %]</th>
70      <td colspan="3">
71             [%- INCLUDE 'generic/multibox.html'
72                  name          =  vclimit < ALL_PROJECTS.size ? 'projectnumber' : 'project_id',
73                  style         = "width: 250px",
74                  DATA          =  ALL_PROJECTS,
75                  id_key        = 'id',
76                  label_key     = 'projectnumber',
77                  limit         = vclimit,
78                  show_empty    = 1,
79                  allow_textbox = 1,
80             -%]
81      </td>
82     </tr>
83     [%- UNLESS ALL_BUSINESS_TYPES.size == 0 %]
84     <tr>
85      <th align="right" nowrap>[% vctypelabel %]</th>
86      <td colspan="3">
87       [% L.select_tag('business_id', ALL_BUSINESS_TYPES, title_key = 'description', with_empty = 1, style='width:250px') %]
88      </td>
89     </tr>
90     [%- END %]
91     <tr>
92      <th align="right">[% IF is_order %][% 'Order Date' | $T8 %][% ELSE %][% 'Quotation Date' | $T8 %][% END %] [% 'From' | $T8 %]</th>
93      <td>
94        [% L.date_tag('transdatefrom') %]
95      </td>
96      <th align="right">[% 'Bis' | $T8 %]</th>
97      <td>
98       [% L.date_tag('transdateto') %]
99      </td>
100     </tr>
101     <tr>
102      <th align="right">[% IF is_order %][% 'Delivery Date' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %] [% 'From' | $T8 %]</th>
103      <td>
104        [% L.date_tag('reqdatefrom') %]
105      </td>
106      <th align="right">[% 'Bis' | $T8 %]</th>
107      <td>
108        [% L.date_tag('reqdateto') %]
109      </td>
110     </tr>
111     <tr>
112      <th align="right">[% 'Include in Report' | $T8 %]</th>
113      <td colspan="5">
114       <table>
115        <tr>
116         <td>
117          <input type="checkbox" name="open" value="1" id="open" checked>
118          <label for="open">[% 'Open' | $T8 %]</label>
119         </td>
120         <td>
121          <input type="checkbox" name="closed" value="1" id="closed">
122          <label for="closed">[% 'Closed' | $T8 %]</label>
123         </td>
124        </tr>
125 [%- IF type == 'sales_order' OR type == 'purchase_order' %]
126        <tr>
127         <td>
128          <input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
129          <label for="notdelivered">[% 'Not delivered' | $T8 %]</label>
130         </td>
131         <td>
132          <input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
133          <label for="delivered">[% 'Delivery Order created' | $T8 %]</label>
134         </td>
135        </tr>
136 [%- END %]
137 [%- IF type == 'sales_order' %]
138        <tr>
139         <td>
140          [% L.checkbox_tag("periodic_invoices_active", label => LxERP.t8("Periodic invoices active")) %]
141         </td>
142         <td>
143          [% L.checkbox_tag("periodic_invoices_inactive", label => LxERP.t8("Periodic invoices inactive")) %]
144         </td>
145        </tr>
146 [%- END %]
147        <tr>
148         <td>
149          <input name="l_id" id="l_id" class="checkbox" type="checkbox" value="Y">
150          <label for="l_id">[% 'ID' | $T8 %]</label>
151         </td>
152         <td>
153          <input name="l_[% HTML.escape(ordnrname) %]" id="l_[% HTML.escape(ordnrname) %]" class="checkbox" type="checkbox" value="Y" checked>
154          <label for="l_[% HTML.escape(ordnrname) %]">[% HTML.escape(ordlabel) %]</label>
155         </td>
156        </tr>
157        <tr>
158         <td>
159          <input name="l_transdate" id="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
160          <label for="l_transdate">[% 'Date' | $T8 %]</label>
161         </td>
162         <td>
163          <input name="l_reqdate" id="l_reqdate" class="checkbox" type="checkbox" value="Y" checked>
164          <label for="l_reqdate">[% IF is_order %][% 'Required by' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %]</label>
165         </td>
166        </tr>
167        <tr>
168         <td>
169          <input name="l_name" id="l_name" class="checkbox" type="checkbox" value="Y" checked>
170          <label for="l_name">[% HTML.escape(vclabel) %]
171         </td>
172         <td>
173          <input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y" checked>
174          <label for="l_employee">[% 'Employee' | $T8 %]</label>
175         </td>
176         <td>
177          <input name="l_shipvia" id="l_shipvia" class="checkbox" type="checkbox" value="Y">
178          <label for="l_shipvia">[% 'Ship via' | $T8 %]</label>
179         </td>
180        </tr>
181        <tr>
182         <td>
183          <input name="l_customernumber" id="l_customernumber" class="checkbox" type="checkbox" value="Y">
184          <label for="l_customernumber">[% 'Customer Number' | $T8 %]</label>
185         </td>
186        </tr>
187        <tr>
188         <td>
189          <input name="l_netamount" id="l_netamount" class="checkbox" type="checkbox" value="Y">
190          <label for="l_netamount">[% 'Amount' | $T8 %]</label>
191         </td>
192         <td>
193          <input name="l_tax" id="l_tax" class="checkbox" type="checkbox" value="Y">
194          <label for="l_tax">[% 'Tax' | $T8 %]</label>
195         </td>
196         <td>
197          <input name="l_amount" id="l_amount" class="checkbox" type="checkbox" value="Y" checked>
198          <label for="l_amount">[% 'Total' | $T8 %]</label>
199         </td>
200        </tr>
201        <tr>
202         <td>
203          <input name="l_marge_total" id="l_marge_total" class="checkbox" type="checkbox" value="Y">
204          <label for="l_marge_total">[% 'Ertrag' | $T8 %]</label>
205         </td>
206         <td>
207          <input name="l_marge_percent" id="l_marge_percent" class="checkbox" type="checkbox" value="Y">
208          <label for="l_marge_percent">[% 'Ertrag prozentual' | $T8 %]</label>
209         </td>
210        </tr>
211        <tr>
212         <td>
213          <input name="l_globalprojectnumber" id="l_globalprojectnumber" class="checkbox" type="checkbox" value="Y">
214          <label for="l_globalprojectnumber">[% 'Project Number' | $T8 %]</label>
215         </td>
216         <td>
217          <input name="l_transaction_description" id="l_transaction_description" class="checkbox" type="checkbox" value="Y">
218          <label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label>
219         </td>
220        </tr>
221        <tr>
222         <td>
223          <input name="l_subtotal" id="l_subtotal" class="checkbox" type="checkbox" value="Y">
224          <label for="l_subtotal">[% 'Subtotal' | $T8 %]</label>
225         </td>
226         <td>
227          <input name="l_salesman" id="l_salesman" class="checkbox" type="checkbox" value="Y">
228          <label for="l_salesman">[% 'Salesman' | $T8 %]</label>
229         </td>
230        </tr>
231        <tr>
232         <td colspan=4 align=left><b>[% HTML.escape(vclabel) %]</td>
233        </tr>
234        <tr>
235         <td>
236          <input name="l_vcnumber" id="l_vcnumber" class="checkbox" type="checkbox" value="Y">
237          <label for="l_vcnumber">[% HTML.escape(vcnumberlabel) %]</label>
238         </td>
239         <td>
240          <input name="l_country" id="l_country" class="checkbox" type="checkbox" value="Y">
241          <label for="l_country">[% 'Country' | $T8 %]</label>
242         </td>
243         <td>
244          <input name="l_ustid"  id="l_ustid" class="checkbox" type="checkbox" value="Y">
245          <label for="l_ustid">[% 'USt-IdNr.' | $T8 %]</label>
246         </td>
247        </tr>
248 [%- IF type == 'sales_order' %]
249        <tr><td colspan="3"><hr></td></tr>
250 [%- END %]
251       </table>
252      </td>
253     </tr>
254    </table>
255   </td>
256  </tr>
257 </table>
258
259 <br>
260 <input type="hidden" name="nextsub" value="orders">
261 <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
262 <input type="hidden" name="type" value="[% HTML.escape(type) %]">
263 <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
264 </form>