11735808d036d9ff6f8951cec2d9322c1c23ece8
[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 [%- IF SELF.all_departments.size %]
53           <tr>
54             <th align="right">[% 'Department' | $T8 %]</th>
55             <td>
56               [% L.select_tag('order.department_id', SELF.all_departments, default=SELF.order.department_id, title_key='description', with_empty=1, style='width:300px') %]
57             </td>
58           </tr>
59 [%- END %]
60
61           <tr>
62             <th align="right">[% 'Shipping Point' | $T8 %]</th>
63             <td>[% L.input_tag('order.shippingpoint', SELF.order.shippingpoint, style='width: 300px') %]</td>
64           </tr>
65
66           <tr>
67             <th align="right">[% 'Ship via' | $T8 %]</th>
68             <td>[% L.input_tag('order.shipvia', SELF.order.shipvia, style='width: 300px') %]</td>
69           </tr>
70
71           <tr>
72             <th align="right">[% 'Transaction description' | $T8 %]</th>
73             <td>[% L.input_tag('order.transaction_description', SELF.order.transaction_description, style='width: 300px') %]</td>
74           </tr>
75
76           <tr>
77             <th align="right">[% 'Project Number' | $T8 %]</th>
78             <td>[% P.project.picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %]</td>
79           </tr>
80
81         </table>
82       </td>
83
84       <td align="right">
85         <table>
86
87           <tr>
88             <td colspan="2" align="center">
89               [%- IF SELF.order.id %]
90                 <label for="order.delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
91                 [% L.yes_no_tag('order.delivered', SELF.order.delivered) %]
92                 <label for="order.closed">[% 'Closed' | $T8 %]</label>
93                 [% L.yes_no_tag('order.closed', SELF.order.closed) %]
94               [%- END %]
95             </td>
96           </tr>
97
98           <tr>
99             <th align="right">[% 'Employee' | $T8 %]</th>
100             <td>[% L.select_tag('order.employee_id',
101               SELF.all_employees,
102               default=(SELF.order.employee_id ? SELF.order.employee_id : SELF.current_employee_id),
103               title_key='safe_name') %]</td>
104           </tr>
105
106           [% IF SELF.cv == 'customer' %]
107           <tr>
108             <th align="right">[% 'Salesman' | $T8 %]</th>
109             <td>[% L.select_tag('order.salesman_id',
110               SELF.all_salesmen,
111               default=(SELF.order.salesman_id ? SELF.order.salesman_id : SELF.current_employee_id),
112               title_key='safe_name') %]</td>
113           </tr>
114           [% END %]
115
116           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
117           <tr>
118             <th width="70%" align="right" nowrap>[% 'Order Number' | $T8 %]</th>
119             <td>[% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %]</td>
120           </tr>
121           [%- END -%]
122
123           [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
124             [%- SET quo_nr_txt = 'Quotation Number' -%]
125           [%- ELSE -%]
126             [%- SET quo_nr_txt = 'RFQ Number' -%]
127           [%- END -%]
128           <tr>
129             <th width="70%" align="right" nowrap>[% quo_nr_txt | $T8 %]</th>
130             [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
131               <td>[% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %]</td>
132             [%- ELSE -%]
133               <td>[% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %]</td>
134             [%- END -%]
135           </tr>
136
137           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
138           <tr>
139             <th width="70%" align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
140             <td>[% L.input_tag('order.cusordnumber', SELF.order.cusordnumber, size = 11) %]</td>
141           </tr>
142           [%- END -%]
143
144           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
145             [%- SET transdate_txt = 'Order Date' -%]
146           [%- ELSIF SELF.type == "sales_quotation" -%]
147             [%- SET transdate_txt = 'Quotation Date' -%]
148           [%- ELSE -%]
149             [%- SET transdate_txt = 'RFQ Date' -%]
150           [%- END -%]
151           <tr>
152             <th width="70%" align="right" nowrap>[% transdate_txt | $T8 %]</th>
153             <td>[% L.date_tag('order.transdate_as_date', SELF.order.transdate_as_date) %]</td>
154           </tr>
155
156           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
157             [%- SET reqdate_txt = 'Reqdate' -%]
158           [%- ELSIF SELF.type == "sales_quotation" -%]
159             [%- SET reqdate_txt = 'Valid until' -%]
160           [%- ELSE -%]
161             [%- SET reqdate_txt = 'Required by' -%]
162           [%- END -%]
163           <tr>
164             <th width="70%" align="right" nowrap>[% reqdate_txt | $T8 %]</th>
165             <td>[% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date) %]</td>
166           </tr>
167
168           [%- IF SELF.type == "sales_quotation" -%]
169           <tr>
170             <th width="70%" align="right" nowrap>[% 'Order probability' | $T8 %]</th>
171             <td>[%- L.select_tag('order.order_probability', SELF.order_probabilities, title='title', default=SELF.order.order_probability) %]%</td>
172           </tr>
173           <tr>
174             <th width="70%" align="right" nowrap>[% 'Expected billing date' | $T8 %]</th>
175             <td>[%- L.date_tag('order.expected_billing_date_as_date', SELF.order.expected_billing_date_sa_date) %]</td>
176           </tr>
177           [%- END %]
178
179           <tr>
180             <th width="70%" align="right" nowrap>[% 'Insert Date' | $T8 %]</th>
181             <td>[% SELF.order.itime_as_date %]</td>
182           </tr>
183
184         </table>
185
186       </td>
187     </tr>
188   </table>
189
190   [%- PROCESS order/tabs/_item_input.html SELF=SELF %]
191
192   [% L.button_tag('kivi.Order.show_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
193
194   <table width="100%">
195     <tr>
196       <td>
197         [%- IF SELF.positions_scrollbar_height -%]
198           [%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%]
199         [%- ELSE -%]
200           [%- SET scroll_style = '' -%]
201         [%- END -%]
202         <div id="row_table_scroll_id" [%- scroll_style -%]>
203           <table id="row_table_id" width="100%">
204             <thead>
205               <tr class="listheading">
206                 <th class="listheading" style='text-align:center' nowrap width="1">
207                   [%- IF MYCONFIG.show_form_details %]
208                     [%- 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") %]
209                   [%- ELSE %]
210                     [%- L.img_tag(src="image/expand.svg", alt=LxERP.t8('Show all details'), title=LxERP.t8('Show all details'), id='expand_all') %]
211                   [%- END %]
212                 </th>
213                 <th class="listheading" nowrap width="3" >[%- 'position'     | $T8 %] </th>
214                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]"></th>
215                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/close.png" alt="[%- LxERP.t8('delete item') %]"></th>
216                 <th id="partnumber_header_id"   class="listheading" nowrap width="15"><a href='#' onClick='javascript:kivi.Order.reorder_items("partnumber")'> [%- 'Partnumber'  | $T8 %]</a></th>
217                 [%- IF SELF.search_cvpartnumber -%]
218                 <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>
219                 [%- END -%]
220                 <th id="partclass_header_id"    class="listheading" nowrap width="2">[%- 'Type'  | $T8 %]</th>
221                 <th id="description_header_id"  class="listheading" nowrap           ><a href='#' onClick='javascript:kivi.Order.reorder_items("description")'>[%- 'Description' | $T8 %]</a></th>
222                 [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
223                 <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>
224                 [%- END -%]
225                 <th id="qty_header_id"          class="listheading" nowrap width="5" ><a href='#' onClick='javascript:kivi.Order.reorder_items("qty")'>        [%- 'Qty'         | $T8 %]</a></th>
226                 <th class="listheading" nowrap width="5" >[%- 'Price Factor' | $T8 %] </th>
227                 <th class="listheading" nowrap width="5" >[%- 'Unit'         | $T8 %] </th>
228                 <th class="listheading" nowrap width="5" >[%- 'Price Source' | $T8 %] </th>
229                 <th id="sellprice_header_id"   class="listheading" nowrap width="15" ><a href='#' onClick='javascript:kivi.Order.reorder_items("sellprice")'> [%- 'Price'       | $T8 %]</a></th>
230                 <th id="discount_header_id"    class="listheading" nowrap width="15" ><a href='#' onClick='javascript:kivi.Order.reorder_items("discount")'>  [%- 'Discount'    | $T8 %]</a></th>
231                 <th class="listheading" nowrap width="10">[%- 'Extended'     | $T8 %] </th>
232               </tr>
233             </thead>
234
235             [%- FOREACH item = SELF.order.items_sorted %]
236               [%- PROCESS order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id) TYPE=SELF.type ALL_PRICE_FACTORS=SELF.all_price_factors SEARCH_CVPARTNUMBER=SELF.search_cvpartnumber %]
237             [%- END %]
238
239           </table>
240         </div>
241
242       </td>
243     </tr>
244
245     <tr>
246     </tr>
247
248     <tr>
249       <td colspan="100%" width="100%">
250         <table width="100%">
251           <tr>
252             <td>
253               <table>
254                 <tr>
255                   <th align="left">[% 'Notes' | $T8 %]</th>
256                   <th align="left">[% 'Internal Notes' | $T8 %]</th>
257                 </tr>
258                 <tr valign="top">
259                   <td>
260                     [% L.textarea_tag('order.notes', SELF.order.notes, wrap="soft", style="width: 350px; height: 150px", class="texteditor") %]
261                   </td>
262                   <td>
263                     [% L.textarea_tag('order.intnotes', SELF.order.intnotes, wrap="soft", style="width: 350px; height: 150px") %]
264                   </td>
265                 </tr>
266               </table>
267             </td>
268
269             <td>
270               <table>
271                 <tr>
272                   <th align="right">[% 'Payment Terms' | $T8 %]</th>
273                   <td>[% L.select_tag('order.payment_id',
274                                       SELF.all_payment_terms,
275                                       default = SELF.order.payment_id,
276                                       with_empty = 1,
277                                       title_key = 'description',
278                                       style = 'width: 250px') %]</td>
279                 </tr>
280                 <tr>
281                   <th align="right">[% 'Delivery Terms' | $T8 %]</th>
282                   <td>[% L.select_tag('order.delivery_term_id',
283                                       SELF.all_delivery_terms,
284                                       default = SELF.order.delivery_term_id,
285                                       with_empty = 1,
286                                       title_key = 'description',
287                                       style = 'width: 250px') %]</td>
288                 </tr>
289                 [%- IF SELF.type == "sales_order" %]
290                 <tr>
291                   <th align="right">[%- 'Periodic Invoices' | $T8 %]</th>
292                   <td>[% L.button_tag('kivi.Order.show_periodic_invoices_config_dialog()', LxERP.t8('Configure')) %]
293                     (<span id='periodic_invoices_status'>[%- SELF.periodic_invoices_status -%]</span>)
294                     <a href="doc/html/ch03.html#features.periodic-invoices.variables" target="_blank">?</a>
295                   </td>
296                 </tr>
297                 [%- END %]
298               </table>
299             </td>
300
301             [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
302             [%- SET marge_class = (SELF.order.marge_total < 0) ? 'plus0' : '' -%]
303             <td>
304               <table>
305                 <tr>
306                   <th  align="left">[% 'Ertrag' | $T8 %]</th>
307                   <td align="right">
308                     [%- L.div_tag(SELF.order.marge_total_as_number, id='marge_total_id', class=marge_class) %]
309                   </td>
310                 </tr>
311                 <tr>
312                   <th  align="left">[% 'Ertrag prozentual' | $T8 %]</th>
313                   <td align="right">
314                     [%- L.div_tag(LxERP.format_amount(SELF.order.marge_percent, 2), id='marge_percent_id', class=marge_class) %]
315                   </td>
316                   <td>[%- L.div_tag('%', id='marge_percent_sign_id', class=marge_class) %]</td>
317                 </tr>
318               </table>
319             </td>
320             [%- END %]
321
322             <td align="right">
323               <table>
324                 <tr id="taxincluded_row_id" [%- IF !SELF.taxes.size %]style="display:none"[%- END %]>
325                   <td align=right colspan="2">
326                     <label for="order.taxincluded"><b>[% 'Tax Included' | $T8 %]</b></label>
327                     [% L.yes_no_tag('order.taxincluded', SELF.order.taxincluded, class='recalc') %]
328                   </td>
329                 </tr>
330
331                 <tr id="subtotal_row_id" [%- IF SELF.order.taxincluded %]style="display:none"[%- END %]>
332                   <th align="right">[%- 'Subtotal' | $T8 %]</th>
333                   <td align="right">
334                     [%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
335                   </td>
336                 </tr>
337                 [%- FOREACH tax = SELF.taxes %]
338                   [%- PROCESS order/tabs/_tax_row.html TAX=tax TAXINCLUDED=SELF.order.taxincluded %]
339                 [%- END %]
340                 <tr id="amount_row_id">
341                   <th align="right">[%- 'Total' | $T8 %]</th>
342                   <td align="right">
343                     [%- L.div_tag(SELF.order.amount_as_number, id='amount_id') %]
344                   </td>
345                 </tr>
346               </table>
347             </td>
348
349           </tr>
350         </table>
351       </td>
352     </tr>
353
354   </table>
355
356 </div>
357
358 [% L.sortable_element('#row_table_id') %]