oe: lieferadresse in body verschoben
[kivitendo-erp.git] / templates / webpages / oe / form_header.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %][%- USE P -%]
5
6   <form method="post" id='form' name="oe" action="[% script %]">
7
8     <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
9     <script type="text/javascript" src="js/calculate_qty.js"></script>
10     <script type="text/javascript" src="js/follow_up.js"></script>
11     [%- IF is_sales_ord %]
12      [% L.javascript_tag("js/edit_periodic_invoices_config") %]
13     [%- END %]
14
15 [%- FOREACH row = HIDDENS %]
16    <input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
17 [%- END %]
18
19     <input type="hidden" name="convert_from_oe_ids" value="[% HTML.escape(convert_from_oe_ids) %]">
20
21     <input type="hidden" name="follow_up_trans_id_1" value="[% HTML.escape(id) %]">
22     <input type="hidden" name="follow_up_trans_type_1" value="[% HTML.escape(type) %]">
23     <input type="hidden" name="follow_up_trans_info_1" value="[% HTML.escape(follow_up_trans_info) %]">
24     <input type="hidden" name="follow_up_rowcount" value="1">
25     <input type="hidden" name="lastmtime" value="[% HTML.escape(lastmtime) %]">
26
27     <h1>[% title %]</h1>
28
29 [%- INCLUDE 'common/flash.html' %]
30 [%- INCLUDE 'generic/set_longdescription.html' %]
31
32     <div id="oe_tabs" class="tabwidget">
33      <ul>
34       <li><a href="#ui-tabs-basic-data">[% 'Basic Data' | $T8 %]</a></li>
35 [%- IF INSTANCE_CONF.get_webdav %]
36       <li><a href="#ui-tabs-webdav">[% 'WebDAV' | $T8 %]</a></li>
37 [%- END %]
38 [%- IF id AND INSTANCE_CONF.get_doc_storage %]
39       <li><a href="controller.pl?action=File/list&file_type=document&object_type=[% HTML.escape(type) %]&object_id=[% HTML.url(id) %]">[% 'Documents' | $T8 %]</a></li>
40       <li><a href="controller.pl?action=File/list&file_type=attachment&object_type=[% HTML.escape(type) %]&object_id=[% HTML.url(id) %]">[% 'Attachments' | $T8 %]</a></li>
41 [%- END %]
42 [%- IF id AND AUTH.assert('record_links', 1) %]
43       <li><a href="controller.pl?action=RecordLinks/ajax_list&object_model=Order&object_id=[% HTML.url(id) %]">[% 'Linked Records' | $T8 %]</a></li>
44 [%- END %]
45      </ul>
46
47      <div id="ui-tabs-basic-data">
48
49     <table width="100%">
50       <tr>
51         <td>
52           <table width="100%">
53             <tr valign="top">
54               <td width="50%">
55                 <table width="100%">
56                   <tr>
57                     <th align="right">[% IF vc == 'customer' %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %]</th>
58                     <td>
59                      [%- SET vc_id = vc _ "_id" %]
60                      [% P.customer_vendor_picker(vc_id, $vc_id, type=vc, style="width: 250px", class="initial_focus") %]
61                      [% P.button_tag("show_vc_details('" _ HTML.escape(vc) _  "')", LxERP.t8("Details (one letter abbreviation)")) %]
62                      [% P.hidden_tag("previous_" _ vc_id, $vc_id) %]
63                     </td>
64                   </tr>
65 [%- IF ALL_CONTACTS.size %]
66                   <tr>
67                     <th align="right">[% 'Contact Person' | $T8 %]</th>
68                     <td>
69                       [% 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') %]
70                     </td>
71                   </tr>
72 [%- END %]
73 [%- IF ALL_SHIPTO.size %]
74                   <tr>
75                     <th align="right">[% 'Shipping Address' | $T8 %]</th>
76                     <td>
77                       [% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ;
78                          L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %]
79                       [% L.submit_tag('action_ship_to', LxERP.t8('Ship to')) %]
80                     </td>
81                   </tr>
82 [%- END %]
83 [%- IF is_order %]
84                   <tr>
85                     <td align="right">[% 'Credit Limit' | $T8 %]</td>
86                     <td>[% LxERP.format_amount(creditlimit, 0) %]; [% 'Remaining' | $T8 %] <span class="plus[% is_credit_remaining_negativ %]">[% LxERP.format_amount(creditremaining, 0) %]</span></td>
87                   </tr>
88 [%- END %]
89 [%- IF business %]
90                   <tr>
91                     <th align="right">[% business_label %]</th>
92                     <td>[% HTML.escape(business) %]; [% 'Trade Discount' | $T8 %] [% LxERP.format_percent(tradediscount) %] %</td>
93                   </tr>
94 [%- END %]
95 [%- IF max_dunning_level %]
96                   <tr>
97                     <th align="right">[% 'Max. Dunning Level' | $T8 %]:</th>
98                     <td>
99                       <b>[% HTML.escape(max_dunning_level) %]</b>;
100                       [% 'Dunning Amount' | $T8 %]: <b>[% LxERP.format_amount(dunning_amount, 2) %]</b>
101                     </td>
102                   </tr>
103 [%- END %]
104                   <tr>
105                     <th align="right">[% 'Steuersatz' | $T8 %]</th>
106                     <td>
107                       [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES), default=taxzone_id, title_key='description', style='width: 250px') %]
108                     </td>
109                   </tr>
110 [%- IF ALL_DEPARTMENTS.size %]
111                   <tr>
112                     <th align="right" nowrap>[% 'Department' | $T8 %]</th>
113                     <td colspan="3">
114                       [% L.select_tag('department_id', ALL_DEPARTMENTS, default=department_id, title_key = 'description', with_empty=1, style='width:250px') %]
115                     </td>
116                   </tr>
117 [%- END %]
118                   <tr>
119                     <th align="right">[% 'Currency' | $T8 %]</th>
120                     <td>[% L.select_tag("currency", ALL_CURRENCIES, value_key="name", default=currency, onchange="document.getElementById('update_button').click();") %]</td>
121                   </tr>
122 [%- IF show_exchangerate %]
123                   <tr>
124                     <th align="right">[% 'Exchangerate' | $T8 %]</th>
125                     <td>
126                      [%- IF forex %]
127                       [% LxERP.format_amount(exchangerate, 2) %]
128                      [%- ELSE %]
129                       <input name="exchangerate" size="10" value="[% HTML.escape(LxERP.format_amount(exchangerate)) %]">
130                      [%- END %]
131                     </td>
132                   </tr>
133 [%- END %]
134                   <tr>
135                     <th align="right">[% 'Shipping Point' | $T8 %]</th>
136                     <td colspan="3"><input name="shippingpoint" size="35" value="[% HTML.escape(shippingpoint) %]"></td>
137                   </tr>
138                   <tr>
139                     <th align="right">[% 'Ship via' | $T8 %]</th>
140                     <td colspan="3"><input name="shipvia" size="35" value="[% HTML.escape(shipvia) %]"></td>
141                   </tr>
142                   <tr>
143                     <th align="right">[% 'Transaction description' | $T8 %]</th>
144                     <td colspan="3"><input name="transaction_description" id="transaction_description" size="35" value="[% HTML.escape(transaction_description) %]"></td>
145                   </tr>
146 [%- IF show_delivery_customer %]
147                   <tr>
148                     <td colspan="4">
149                       <table>
150                         <tr>
151                           <td colspan="2">
152                           <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">[% 'Choose Customer' | $T8 %]</button>
153                         </td>
154                           <td colspan="2"><input type="hidden" name="delivery_customer_id" value="[% HTML.escape(delivery_customer_id) %]">
155                           <input size="45" id="delivery_customer_string" name="delivery_customer_string" value="[% HTML.escape(delivery_customer_string) %]"></td>
156                         </tr>
157                         <tr>
158                           <td colspan="2">
159                             <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">[% 'Choose Vendor' | $T8 %]</button>
160                           </td>
161                           <td colspan="2"><input type="hidden" name="delivery_vendor_id" value="[% HTML.escape(delivery_vendor_id) %]">
162                           <input size="45" id="vendor_string" name="delivery_vendor_string" value="[% HTML.escape(delivery_vendor_string) %]"></td>
163                         </tr>
164                       </table>
165                     </td>
166                   </tr>
167 [%- END %]
168                 </table>
169               </td>
170               <td align="right">
171                 <table>
172               [% openclosed %]
173                   <tr>
174                     <th align="right">[% 'Employee' | $T8 %]</th>
175                     <td>
176                       [% L.select_tag('employee_id', ALL_EMPLOYEES, default=employee_id, title_key='safe_name') %]
177                     </td>
178                   </tr>
179 [%- IF is_sales and ALL_SALESMEN.size %]
180                   <tr>
181                     <th align="right">[% 'Salesman' | $T8 %]</th>
182                     <td>
183                       [% L.select_tag('salesman_id', ALL_SALESMEN, default=(salesman_id ? salesman_id : employee_id), title_key='safe_name') %]
184                     </td>
185                   </tr>
186 [%- END %]
187 [%- IF is_order %]
188                   <tr>
189                     <th width="70%" align="right" nowrap>[% 'Order Number' | $T8 %]</th>
190                     <td><input name="ordnumber" size="11" value="[% HTML.escape(ordnumber) %]"></td>
191                   </tr>
192 [%- END %]
193                   <tr>
194                     <th width="70%" align="right" nowrap>[% IF is_req_quo %][% 'RFQ Number' | $T8 %][% ELSE %][% 'Quotation Number' | $T8 %][% END %]</th>
195                     <td><input name="quonumber" size="11" value="[% HTML.escape(quonumber) %]"></td>
196                   </tr>
197 [%- IF is_order %]
198                   <tr>
199                     <th width="70%" align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
200                     <td><input name="cusordnumber" size="11" value="[% HTML.escape(cusordnumber) %]"></td>
201                   </tr>
202 [%- END %]
203                   <tr>
204                     <th align="right" nowrap>
205                      [%- IF is_order %]
206                       [% 'Order Date' | $T8 %]
207                      [%- ELSIF is_req_quo %]
208                       [% 'RFQ Date' | $T8 %]
209                      [%- ELSE %]
210                       [% 'Quotation Date' | $T8 %]
211                      [%- END %]
212                     </th>
213                     <td nowrap>
214                       [% L.date_tag('transdate', transdate, id='transdate') %]
215                     </td>
216                   </tr>
217                   <tr>
218                     <th align="right" nowrap>
219                      [%- IF is_sales_quo %]
220                       [% 'Valid until' | $T8 %]
221                      [%- ELSE %]
222                       [% 'Reqdate' | $T8 %]
223                      [%- END %]
224                     </th>
225                     <td nowrap>
226                       [% L.date_tag('reqdate', reqdate, id='reqdate') %]
227                     </td>
228                   </tr>
229                   [%- IF is_sales_ord %]
230                   <tr>
231                     <th align="right" nowrap>[% 'Insert Date' | $T8 %]</th>
232                     <td>[% oe_obj.itime_as_date %]</td>
233                   </tr>
234                   [%- END %]
235                   <tr>
236                     <th width="70%" align="right" nowrap>[% 'Project Number' | $T8 %]</th>
237                     <td>
238                       [%- L.select_tag('globalproject_id', ALL_PROJECTS, title_key='projectnumber', default=globalproject_id, with_empty='1', onChange="document.getElementById('update_button').click();") %]
239                     </td>
240                   </tr>
241 [%- IF type == 'sales_quotation' %]
242                   <tr>
243                     <th width="70%" align="right" nowrap>[% 'Order probability' | $T8 %]</th>
244                     <td nowrap>
245                       [%- L.select_tag('order_probability', ORDER_PROBABILITIES, title='title', default=order_probability) %]%
246                     </td>
247                   </tr>
248                   <tr>
249                     <th width="70%" align="right" nowrap>[% 'Expected billing date' | $T8 %]</th>
250                     <td nowrap>
251                       [%- L.date_tag('expected_billing_date', expected_billing_date 'BL') %]
252                     </td>
253                   </tr>
254 [%- END %]
255                 </table>
256               </td>
257             </tr>
258           </table>
259         </td>
260       </tr>