383f07554bead6326d9aa8aa25bcd6ba80c28e9a
[kivitendo-erp.git] / templates / webpages / order / tabs / basic_data.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5 [%- USE P %]
6
7 [%- INCLUDE 'generic/set_longdescription.html' %]
8
9 <div id="ui-tabs-basic-data">
10   <table width="100%">
11     <tr valign="top">
12       <td>
13         <table width="100%">
14           <tr>
15             <th align="right">[%- SELF.cv == "customer" ? LxERP.t8('Customer') : LxERP.t8('Vendor') -%]</th>
16             [% SET cv_id = SELF.cv _ '_id' %]
17             <td>
18               [% P.customer_vendor.picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, style='width: 300px') %]
19               [% P.button_tag("kivi.Order.show_vc_details_dialog()", LxERP.t8("Details (one letter abbreviation)")) %]
20             </td>
21           </tr>
22
23           <tr id='cp_row' [%- IF !SELF.order.${SELF.cv}.contacts.size %]style='display:none'[%- END %]>
24             <th align="right">[% 'Contact Person' | $T8 %]</th>
25             <td>[% L.select_tag('order.cp_id',
26                                 SELF.order.${SELF.cv}.contacts,
27                                 default=SELF.order.cp_id,
28                                 title_key='full_name_dep',
29                                 value_key='cp_id',
30                                 with_empty=1,
31                                 style='width: 300px') %]</td>
32           </tr>
33
34           <tr id='shipto_row' [%- IF !SELF.order.${SELF.cv}.shipto.size %]style='display:none'[%- END %]>
35             <th align="right">[% 'Shipping Address' | $T8 %]</th>
36             <td>[% L.select_tag('order.shipto_id',
37                                 SELF.order.${SELF.cv}.shipto,
38                                 default=SELF.order.shipto_id,
39                                 title_key='displayable_id',
40                                 value_key='shipto_id',
41                                 with_empty=1,
42                                 style='width: 300px') %]</td>
43           </tr>
44
45           [%- PROCESS order/tabs/_business_info_row.html SELF=SELF %]
46
47           <tr>
48             <th align="right">[% 'Steuersatz' | $T8 %]</th>
49             <td>[% L.select_tag('order.taxzone_id', SELF.all_taxzones, default=SELF.order.taxzone_id, title_key='description', style='width: 300px', class='recalc') %]</td>
50           </tr>
51
52           [% SET currency_id = SELF.order.currency_id || INSTANCE_CONF.get_currency_id  # use default currency for new order %]
53           [% IF SELF.order.exchangerate %]
54             [% SET exchangerate = SELF.order.exchangerate_as_null_number %]
55           [% END %]
56           <tr id="currency_settings">
57             <th align="right">[% 'Currency' | $T8 %]</th>
58             <td>[% L.select_tag('order.currency_id', SELF.all_currencies, default=currency_id, value_key='id', title_key='name') %]</td>
59           </tr>
60           <tr id="exchangerate_settings" [%- IF currency_id==INSTANCE_CONF.get_currency_id %]style='display:none'[%- END %]>
61             <th align="right">[% 'Exchangerate' | $T8 %]</th>
62             <td> 1 <span id="currency_name">[% SELF.order.currency.name %]</span> =
63               <span id="exchangerate_text">
64               [% IF exchangerate %]
65                 [% HTML.escape(exchangerate) %]
66               [% END %]
67               </span>
68               [% IF currency_id==INSTANCE_CONF.get_currency_id || SELF.order.exchangerate %]
69                 [% L.input_tag('order.exchangerate_as_null_number', '', size="15", class="reformat_number numeric", style='display:none', disabled=1) %]
70               [% ELSE %]
71                 [% L.input_tag('order.exchangerate_as_null_number', 0, size="15", class="reformat_number numeric") %]
72               [% END %]
73               [% INSTANCE_CONF.default_currency %]
74               [% L.hidden_tag('old_currency_id', currency_id) %]
75               [% L.hidden_tag('old_exchangerate', exchangerate) %]
76             </td>
77           </tr>
78
79 [%- IF SELF.all_departments.size %]
80           <tr>
81             <th align="right">[% 'Department' | $T8 %]</th>
82             <td>
83               [% L.select_tag('order.department_id', SELF.all_departments, default=SELF.order.department_id, title_key='description', with_empty=1, style='width:300px') %]
84             </td>
85           </tr>
86 [%- END %]
87
88           <tr>
89             <th align="right">[% 'Shipping Point' | $T8 %]</th>
90             <td>[% L.input_tag('order.shippingpoint', SELF.order.shippingpoint, style='width: 300px') %]</td>
91           </tr>
92
93           <tr>
94             <th align="right">[% 'Ship via' | $T8 %]</th>
95             <td>[% L.input_tag('order.shipvia', SELF.order.shipvia, style='width: 300px') %]</td>
96           </tr>
97
98           <tr>
99             <th align="right">[% 'Transaction description' | $T8 %]</th>
100             <td>[% L.input_tag('order.transaction_description', SELF.order.transaction_description, style='width: 300px') %]</td>
101           </tr>
102
103           <tr>
104             <th align="right">[% 'Project Number' | $T8 %]</th>
105             <td>[% P.project.picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %]</td>
106           </tr>
107
108         </table>
109       </td>
110
111       <td align="right">
112         <table>
113
114           <tr>
115             <td colspan="2" align="center">
116               [%- IF SELF.order.id %]
117                 <label for="order.delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
118                 [% L.yes_no_tag('order.delivered', SELF.order.delivered) %]
119                 <label for="order.closed">[% 'Closed' | $T8 %]</label>
120                 [% L.yes_no_tag('order.closed', SELF.order.closed) %]
121               [%- END %]
122             </td>
123           </tr>
124
125           <tr>
126             <th align="right">[% 'Employee' | $T8 %]</th>
127             <td>[% L.select_tag('order.employee_id',
128               SELF.all_employees,
129               default=(SELF.order.employee_id ? SELF.order.employee_id : SELF.current_employee_id),
130               title_key='safe_name') %]</td>
131           </tr>
132
133           [% IF SELF.cv == 'customer' %]
134           <tr>
135             <th align="right">[% 'Salesman' | $T8 %]</th>
136             <td>[% L.select_tag('order.salesman_id',
137               SELF.all_salesmen,
138               default=(SELF.order.salesman_id ? SELF.order.salesman_id : SELF.current_employee_id),
139               title_key='safe_name') %]</td>
140           </tr>
141           [% END %]
142
143           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
144           <tr>
145             <th width="70%" align="right" nowrap>[% 'Order Number' | $T8 %]</th>
146             <td>[% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %]</td>
147           </tr>
148           [%- END -%]
149
150           [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
151             [%- SET quo_nr_txt = 'Quotation Number' -%]
152           [%- ELSE -%]
153             [%- SET quo_nr_txt = 'RFQ Number' -%]
154           [%- END -%]
155           <tr>
156             <th width="70%" align="right" nowrap>[% quo_nr_txt | $T8 %]</th>
157             [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
158               <td>[% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %]</td>
159             [%- ELSE -%]
160               <td>[% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %]</td>
161             [%- END -%]
162           </tr>
163
164           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
165           <tr>
166             <th width="70%" align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
167             <td>[% L.input_tag('order.cusordnumber', SELF.order.cusordnumber, size = 11) %]</td>
168           </tr>
169           [%- END -%]
170
171           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
172             [%- SET transdate_txt = 'Order Date' -%]
173           [%- ELSIF SELF.type == "sales_quotation" -%]
174             [%- SET transdate_txt = 'Quotation Date' -%]
175           [%- ELSE -%]
176             [%- SET transdate_txt = 'RFQ Date' -%]
177           [%- END -%]
178           <tr>
179             <th width="70%" align="right" nowrap>[% transdate_txt | $T8 %]</th>
180             <td>[% L.date_tag('order.transdate_as_date', SELF.order.transdate_as_date) %]</td>
181           </tr>
182
183           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
184             [%- SET reqdate_txt = 'Reqdate' -%]
185           [%- ELSIF SELF.type == "sales_quotation" -%]
186             [%- SET reqdate_txt = 'Valid until' -%]
187           [%- ELSE -%]
188             [%- SET reqdate_txt = 'Required by' -%]
189           [%- END -%]
190           <tr>
191             <th width="70%" align="right" nowrap>[% reqdate_txt | $T8 %]</th>
192             <td>[% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date) %]</td>
193           </tr>
194
195           [%- IF SELF.type == "sales_quotation" -%]
196           <tr>
197             <th width="70%" align="right" nowrap>[% 'Order probability' | $T8 %]</th>
198             <td>[%- L.select_tag('order.order_probability', SELF.order_probabilities, title='title', default=SELF.order.order_probability) %]%</td>
199           </tr>
200           <tr>
201             <th width="70%" align="right" nowrap>[% 'Expected billing date' | $T8 %]</th>
202             <td>[%- L.date_tag('order.expected_billing_date_as_date', SELF.order.expected_billing_date_sa_date) %]</td>
203           </tr>
204           [%- END %]
205
206           <tr>
207             <th width="70%" align="right" nowrap>[% 'Insert Date' | $T8 %]</th>
208             <td>[% SELF.order.itime_as_date %]</td>
209           </tr>
210
211         </table>
212
213       </td>
214     </tr>
215   </table>
216
217   [%- PROCESS order/tabs/_item_input.html SELF=SELF %]
218
219   [% L.button_tag('kivi.Order.show_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
220
221   <table width="100%">
222     <tr>
223       <td>
224         [%- IF SELF.positions_scrollbar_height -%]
225           [%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%]
226         [%- ELSE -%]
227           [%- SET scroll_style = '' -%]
228         [%- END -%]
229         <div id="row_table_scroll_id" [%- scroll_style -%]>
230           <table id="row_table_id" width="100%">
231             <thead>
232               <tr class="listheading">
233                 <th class="listheading" style='text-align:center' nowrap width="1">
234                   [%- IF MYCONFIG.show_form_details %]
235                     [%- L.img_tag(src="image/collapse.svg", alt=LxERP.t8('Hide all details'), title=LxERP.t8('Hide all details'), id='expand_all', "data-expanded"="1") %]
236                   [%- ELSE %]
237                     [%- L.img_tag(src="image/expand.svg", alt=LxERP.t8('Show all details'), title=LxERP.t8('Show all details'), id='expand_all') %]
238                   [%- END %]
239                 </th>
240                 <th class="listheading" nowrap width="3" >[%- 'position'     | $T8 %] </th>
241                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]"></th>
242                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/close.png" alt="[%- LxERP.t8('delete item') %]"></th>
243                 [%- IF SELF.show_update_button -%]
244                 <th class="listheading" style='text-align:center' nowrap width="1">
245                   [%- L.img_tag(src="image/rotate_cw.svg",
246                                 alt=LxERP.t8('Update from master data'),
247                                 title= LxERP.t8('Update from master data'),
248                                 onclick="if (!confirm('" _ LxERP.t8("Are you sure to update all positions from master data?") _ "')) return false; kivi.Order.update_all_rows_from_master_data();",
249                                 id='update_from_master') %]
250                 </th>
251                 [%- END %]
252                 <th id="partnumber_header_id"   class="listheading" nowrap width="15"><a href='#' onClick='javascript:kivi.Order.reorder_items("partnumber")'> [%- 'Partnumber'  | $T8 %]</a></th>
253                 [%- IF SELF.search_cvpartnumber -%]
254                 <th id="cvpartnumber_header_id" class="listheading" nowrap width="15"><a href='#' onClick='javascript:kivi.Order.reorder_items("cvpartnumber")' > [%- SELF.cv == "customer" ? LxERP.t8('Customer Part Number') : LxERP.t8('Model') %]</a></th>
255                 [%- END -%]
256                 <th id="partclass_header_id"    class="listheading" nowrap width="2">[%- 'Type'  | $T8 %]</th>
257                 <th id="description_header_id"  class="listheading" nowrap           ><a href='#' onClick='javascript:kivi.Order.reorder_items("description")'>[%- 'Description' | $T8 %]</a></th>
258                 [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
259                 <th id="shipped_qty_header_id"  class="listheading" nowrap width="5" ><a href='#' onClick='javascript:kivi.Order.reorder_items("shipped_qty")'>[%- 'Delivered'   | $T8 %]</a></th>
260                 [%- END -%]
261                 <th id="qty_header_id"          class="listheading" nowrap width="5" ><a href='#' onClick='javascript:kivi.Order.reorder_items("qty")'>        [%- 'Qty'         | $T8 %]</a></th>
262                 <th class="listheading" nowrap width="5" >[%- 'Price Factor' | $T8 %] </th>
263                 <th class="listheading" nowrap width="5" >[%- 'Unit'         | $T8 %] </th>
264                 <th class="listheading" nowrap width="5" >[%- 'Price Source' | $T8 %] </th>
265                 <th id="sellprice_header_id"   class="listheading" nowrap width="15" ><a href='#' onClick='javascript:kivi.Order.reorder_items("sellprice")'> [%- 'Price'       | $T8 %]</a></th>
266                 <th id="discount_header_id"    class="listheading" nowrap width="15" ><a href='#' onClick='javascript:kivi.Order.reorder_items("discount")'>  [%- 'Discount'    | $T8 %]</a></th>
267                 <th class="listheading" nowrap width="10">[%- 'Extended'     | $T8 %] </th>
268               </tr>
269             </thead>
270
271             [%- FOREACH item = SELF.order.items_sorted %]
272               [%- PROCESS order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id)  -%]
273             [%- END %]
274
275           </table>
276         </div>
277
278       </td>
279     </tr>
280
281     <tr>
282     </tr>
283
284     <tr>
285       <td colspan="100%" width="100%">
286         <table width="100%">
287           <tr>
288             <td>
289               <table>
290                 <tr>
291                   <th align="left">[% 'Notes' | $T8 %]</th>
292                   <th align="left">[% 'Internal Notes' | $T8 %]</th>
293                 </tr>
294                 <tr valign="top">
295                   <td>
296                     [% L.textarea_tag('order.notes', SELF.order.notes, wrap="soft", style="width: 350px; height: 150px", class="texteditor") %]
297                   </td>
298                   <td>
299                     [% L.textarea_tag('order.intnotes', SELF.order.intnotes, wrap="soft", style="width: 350px; height: 150px") %]
300                   </td>
301                 </tr>
302               </table>
303             </td>
304
305             <td>
306               <table>
307                 <tr>
308                   <th align="right">[% 'Payment Terms' | $T8 %]</th>
309                   <td>[% L.select_tag('order.payment_id',
310                                       SELF.all_payment_terms,
311                                       default = SELF.order.payment_id,
312                                       with_empty = 1,
313                                       title_key = 'description',
314                                       style = 'width: 250px') %]</td>
315                 </tr>
316                 <tr>
317                   <th align="right">[% 'Delivery Terms' | $T8 %]</th>
318                   <td>[% L.select_tag('order.delivery_term_id',
319                                       SELF.all_delivery_terms,
320                                       default = SELF.order.delivery_term_id,
321                                       with_empty = 1,
322                                       title_key = 'description',
323                                       style = 'width: 250px') %]</td>
324                 </tr>
325                 [%- IF SELF.type == "sales_order" %]
326                 <tr>
327                   <th align="right">[%- 'Periodic Invoices' | $T8 %]</th>
328                   <td>[% L.button_tag('kivi.Order.show_periodic_invoices_config_dialog()', LxERP.t8('Configure')) %]
329                     (<span id='periodic_invoices_status'>[%- SELF.periodic_invoices_status -%]</span>)
330                     <a href="doc/html/ch03.html#features.periodic-invoices.variables" target="_blank">?</a>
331                   </td>
332                 </tr>
333                 [%- END %]
334               </table>
335             </td>
336
337             [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
338             [%- SET marge_class = (SELF.order.marge_total < 0) ? 'plus0' : '' -%]
339             <td>
340               <table>
341                 <tr>
342                   <th  align="left">[% 'Ertrag' | $T8 %]</th>
343                   <td align="right">
344                     [%- L.div_tag(SELF.order.marge_total_as_number, id='marge_total_id', class=marge_class) %]
345                   </td>
346                 </tr>
347                 <tr>
348                   <th  align="left">[% 'Ertrag prozentual' | $T8 %]</th>
349                   <td align="right">
350                     [%- L.div_tag(LxERP.format_amount(SELF.order.marge_percent, 2), id='marge_percent_id', class=marge_class) %]
351                   </td>
352                   <td>[%- L.div_tag('%', id='marge_percent_sign_id', class=marge_class) %]</td>
353                 </tr>
354               </table>
355             </td>
356             [%- END %]
357
358             <td align="right">
359               <table>
360                 <tr id="taxincluded_row_id" [%- IF !SELF.taxes.size %]style="display:none"[%- END %]>
361                   <td align=right colspan="2">
362                     <label for="order.taxincluded"><b>[% 'Tax Included' | $T8 %]</b></label>
363                     [% L.yes_no_tag('order.taxincluded', SELF.order.taxincluded, class='recalc') %]
364                   </td>
365                 </tr>
366
367                 <tr id="subtotal_row_id" [%- IF SELF.order.taxincluded %]style="display:none"[%- END %]>
368                   <th align="right">[%- 'Subtotal' | $T8 %]</th>
369                   <td align="right">
370                     [%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
371                   </td>
372                 </tr>
373                 [%- FOREACH tax = SELF.taxes %]
374                   [%- PROCESS order/tabs/_tax_row.html TAX=tax TAXINCLUDED=SELF.order.taxincluded %]
375                 [%- END %]
376                 <tr id="amount_row_id">
377                   <th align="right">[%- 'Total' | $T8 %]</th>
378                   <td align="right">
379                     [%- L.div_tag(SELF.order.amount_as_number, id='amount_id') %]
380                   </td>
381                 </tr>
382               </table>
383             </td>
384
385           </tr>
386         </table>
387       </td>
388     </tr>
389
390   </table>
391
392 </div>
393
394 [% L.sortable_element('#row_table_id') %]