6   <form method="post" name="oe" action="[% script %]">
 
   8     <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
 
   9     <script type="text/javascript" src="js/vendor_selection.js"></script>
 
  10     <script type="text/javascript" src="js/calculate_qty.js"></script>
 
  11     <script type="text/javascript" src="js/customer_or_vendor_selection.js"></script>
 
  12     <script type="text/javascript" src="js/follow_up.js"></script>
 
  13     [%- IF is_sales_ord %]
 
  14      [% L.javascript_tag("js/edit_periodic_invoices_config") %]
 
  17 [%- FOREACH row = HIDDENS %]
 
  18    <input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
 
  21     <input type="hidden" name="convert_from_oe_ids" value="[% HTML.escape(convert_from_oe_ids) %]">
 
  23     <input type="hidden" name="follow_up_trans_id_1" value="[% HTML.escape(id) %]">
 
  24     <input type="hidden" name="follow_up_trans_type_1" value="[% HTML.escape(type) %]">
 
  25     <input type="hidden" name="follow_up_trans_info_1" value="[% HTML.escape(follow_up_trans_info) %]">
 
  26     <input type="hidden" name="follow_up_rowcount" value="1">
 
  30 [%- INCLUDE 'common/flash.html' %]
 
  31 [%- INCLUDE 'generic/set_longdescription.html' %]
 
  33     <div id="oe_tabs" class="tabwidget">
 
  35       <li><a href="#ui-tabs-basic-data">[% 'Basic Data' | $T8 %]</a></li>
 
  36 [%- IF INSTANCE_CONF.get_webdav %]
 
  37       <li><a href="#ui-tabs-webdav">[% 'WebDAV' | $T8 %]</a></li>
 
  40       <li><a href="controller.pl?action=RecordLinks/ajax_list&object_model=Order&object_id=[% HTML.url(id) %]">[% 'Linked Records' | $T8 %]</a></li>
 
  44      <div id="ui-tabs-basic-data">
 
  54                     <th align="right">[% IF vc == 'customer' %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %]</th>
 
  56                       [%- INCLUDE 'generic/multibox.html'
 
  58                            style         = 'width: 250px',
 
  59                            class         = 'initial_focus',
 
  60                            DATA          = vc == 'customer' ? ALL_CUSTOMERS : ALL_VENDORS,
 
  66                            onChange      = "document.getElementById('update_button').click();" -%]
 
  67                       <input type="button" value="[% 'Details (one letter abbreviation)' | $T8 %]" onclick="show_vc_details('[% HTML.escape(vc) %]')">
 
  70 [%- IF ALL_CONTACTS.size %]
 
  72                     <th align="right">[% 'Contact Person' | $T8 %]</th>
 
  74                       [% L.select_tag('cp_id', ALL_CONTACTS, default=cp_id, value_key='cp_id', title_key='full_name_dep', with_empty=1, style='width: 250px') %]
 
  78 [%- IF ALL_SHIPTO.size %]
 
  80                     <th align="right">[% 'Shipping Address' | $T8 %]</th>
 
  82                       [% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ;
 
  83                          L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %]
 
  89                     <td align="right">[% 'Credit Limit' | $T8 %]</td>
 
  90                     <td>[% LxERP.format_amount(creditlimit, 0) %]; [% 'Remaining' | $T8 %] <span class="plus[% is_credit_remaining_negativ %]">[% LxERP.format_amount(creditremaining, 0) %]</span></td>
 
  95                     <th align="right">[% business_label %]</th>
 
  96                     <td>[% HTML.escape(business) %]; [% 'Trade Discount' | $T8 %] [% LxERP.format_percent(tradediscount) %] %</td>
 
  99 [%- IF max_dunning_level %]
 
 101                     <th align="right">[% 'Max. Dunning Level' | $T8 %]:</th>
 
 103                       <b>[% HTML.escape(max_dunning_level) %]</b>;
 
 104                       [% 'Dunning Amount' | $T8 %]: <b>[% LxERP.format_amount(dunning_amount, 2) %]</b>
 
 109                     <th align="right">[% 'Steuersatz' | $T8 %]</th>
 
 111                       [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES), default=taxzone_id, title_key='description', style='width: 250px') %]
 
 114 [%- IF ALL_DEPARTMENTS %]
 
 116                     <th align="right" nowrap>[% 'Department' | $T8 %]</th>
 
 118                       [% L.select_tag('department_id', ALL_DEPARTMENTS, default=department_id, title_sub=\department_labels, with_empty=1, style='width:250px') %]
 
 124                     <th align="right">[% 'Currency' | $T8 %]</th>
 
 125                     <td>[% currencies %]</td>
 
 128 [%- IF show_exchangerate %]
 
 130                     <th align="right">[% 'Exchangerate' | $T8 %]</th>
 
 133                       [% LxERP.format_amount(exchangerate, 2) %]
 
 135                       <input name="exchangerate" size="10" value="[% HTML.escape(LxERP.format_amount(exchangerate)) %]">
 
 141                     <th align="right">[% 'Shipping Point' | $T8 %]</th>
 
 142                     <td colspan="3"><input name="shippingpoint" size="35" value="[% HTML.escape(shippingpoint) %]"></td>
 
 145                     <th align="right">[% 'Ship via' | $T8 %]</th>
 
 146                     <td colspan="3"><input name="shipvia" size="35" value="[% HTML.escape(shipvia) %]"></td>
 
 149                     <th align="right">[% 'Transaction description' | $T8 %]</th>
 
 150                     <td colspan="3"><input name="transaction_description" id="transaction_description" size="35" value="[% HTML.escape(transaction_description) %]"></td>
 
 152 [%- IF show_delivery_customer %]
 
 158                           <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">[% 'Choose Customer' | $T8 %]</button>
 
 160                           <td colspan="2"><input type="hidden" name="delivery_customer_id" value="[% HTML.escape(delivery_customer_id) %]">
 
 161                           <input size="45" id="delivery_customer_string" name="delivery_customer_string" value="[% HTML.escape(delivery_customer_string) %]"></td>
 
 165                             <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">[% 'Choose Vendor' | $T8 %]</button>
 
 167                           <td colspan="2"><input type="hidden" name="delivery_vendor_id" value="[% HTML.escape(delivery_vendor_id) %]">
 
 168                           <input size="45" id="vendor_string" name="delivery_vendor_string" value="[% HTML.escape(delivery_vendor_string) %]"></td>
 
 180                     <th align="right">[% 'Employee' | $T8 %]</th>
 
 182                       [% L.select_tag('employee_id', ALL_EMPLOYEES, default=employee_id, title_key='safe_name') %]
 
 185 [%- IF is_sales and ALL_SALESMEN.size %]
 
 187                     <th align="right">[% 'Salesman' | $T8 %]</th>
 
 189                       [% L.select_tag('salesman_id', ALL_SALESMEN, default=(salesman_id ? salesman_id : employee_id), title_key='safe_name') %]
 
 195                     <th width="70%" align="right" nowrap>[% 'Order Number' | $T8 %]</th>
 
 196                     <td><input name="ordnumber" size="11" value="[% HTML.escape(ordnumber) %]"></td>
 
 200                     <th width="70%" align="right" nowrap>[% IF is_req_quo %][% 'RFQ Number' | $T8 %][% ELSE %][% 'Quotation Number' | $T8 %][% END %]</th>
 
 201                     <td><input name="quonumber" size="11" value="[% HTML.escape(quonumber) %]"></td>
 
 205                     <th width="70%" align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
 
 206                     <td><input name="cusordnumber" size="11" value="[% HTML.escape(cusordnumber) %]"></td>
 
 210                     <th align="right" nowrap>
 
 212                       [% 'Order Date' | $T8 %]
 
 213                      [%- ELSIF is_req_quo %]
 
 214                       [% 'RFQ Date' | $T8 %]
 
 216                       [% 'Quotation Date' | $T8 %]
 
 220                       [% L.date_tag('transdate', transdate, id='transdate') %]
 
 224                     <th align="right" nowrap>
 
 225                      [%- IF is_sales_quo %]
 
 226                       [% 'Valid until' | $T8 %]
 
 228                       [% 'Reqdate' | $T8 %]
 
 232                       [% L.date_tag('reqdate', reqdate, id='reqdate') %]
 
 236                     <th width="70%" align="right" nowrap>[% 'Project Number' | $T8 %]</th>
 
 238                       [%- L.select_tag('globalproject_id', ALL_PROJECTS, title_key='projectnumber', default=globalproject_id, with_empty='1', onChange="document.getElementById('update_button').click();") %]
 
 241 [%- IF type == 'sales_quotation' %]
 
 243                     <th width="70%" align="right" nowrap>[% 'Order probability' | $T8 %]</th>
 
 245                       [%- L.select_tag('order_probability', ORDER_PROBABILITIES, title='title', default=order_probability) %]%
 
 249                     <th width="70%" align="right" nowrap>[% 'Expected billing date' | $T8 %]</th>
 
 251                       [%- L.date_tag('expected_billing_date', expected_billing_date 'BL') %]