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