X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=templates%2Fwebpages%2Foe%2Fform_header.html;h=2f07668735c5280a53616820dde96247f7887c61;hb=8f7fe4a497b1fba104db0471fe6704c5625f5e89;hp=014663f8fcf132861b1c456abcf77f6b3c3b0ca5;hpb=6f77f9ef21dbea687c49b41052e9cc3381cd000d;p=kivitendo-erp.git diff --git a/templates/webpages/oe/form_header.html b/templates/webpages/oe/form_header.html index 014663f8f..2f0766873 100644 --- a/templates/webpages/oe/form_header.html +++ b/templates/webpages/oe/form_header.html @@ -1,14 +1,12 @@ [%- USE T8 %] [%- USE HTML %] [%- USE LxERP %] -[%- USE L %] +[%- USE L %][%- USE P -%]
- - [%- IF is_sales_ord %] [% L.javascript_tag("js/edit_periodic_invoices_config") %] @@ -24,6 +22,7 @@ +

[% title %]

@@ -36,7 +35,11 @@ [%- IF INSTANCE_CONF.get_webdav %]
  • [% 'WebDAV' | $T8 %]
  • [%- END %] -[%- IF id %] +[%- IF id AND INSTANCE_CONF.get_doc_storage %] +
  • [% 'Documents' | $T8 %]
  • +
  • [% 'Attachments' | $T8 %]
  • +[%- END %] +[%- IF id AND AUTH.assert('record_links', 1) %]
  • [% 'Linked Records' | $T8 %]
  • [%- END %] @@ -53,18 +56,10 @@ [% IF vc == 'customer' %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %] - [%- INCLUDE 'generic/multibox.html' - name = vc, - style = 'width: 250px', - class = 'initial_focus', - DATA = vc == 'customer' ? ALL_CUSTOMERS : ALL_VENDORS, - id_sub = 'vc_keys', - label_key = 'name', - select = vc_select, - limit = vclimit, - allow_textbox = 1, - onChange = "document.getElementById('update_button').click();" -%] - + [%- SET vc_id = vc _ "_id" %] + [% P.customer_vendor_picker(vc_id, $vc_id, type=vc, style="width: 250px", class="initial_focus") %] + [% P.button_tag("show_vc_details('" _ HTML.escape(vc) _ "')", LxERP.t8("Details (one letter abbreviation)")) %] + [% P.hidden_tag("previous_" _ vc_id, $vc_id) %] [%- IF ALL_CONTACTS.size %] @@ -79,7 +74,8 @@ [% 'Shipping Address' | $T8 %] - [% L.select_tag('shipto_id', ALL_SHIPTO, default=shipto_id, value_key='shipto_id', title_key='displayable_id', with_empty=1, style='width: 250px', onChange="document.getElementById('update_button').click();") %] + [% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ; + L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %] [%- END %] @@ -107,23 +103,21 @@ [% 'Steuersatz' | $T8 %] - [% L.select_tag('taxzone_id', ALL_TAXZONES, default=taxzone_id, title_key='description', style='width: 250px') %] + [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES), default=taxzone_id, title_key='description', style='width: 250px') %] -[%- IF ALL_DEPARTMENTS %] +[%- IF ALL_DEPARTMENTS.size %] [% 'Department' | $T8 %] - [% L.select_tag('department_id', ALL_DEPARTMENTS, default=department_id, title_sub=\department_labels, with_empty=1, style='width:250px') %] + [% L.select_tag('department_id', ALL_DEPARTMENTS, default=department_id, title_key = 'description', with_empty=1, style='width:250px') %] [%- END %] -[%- IF currencies %] [% 'Currency' | $T8 %] - [% currencies %] + [% L.select_tag("currency", ALL_CURRENCIES, value_key="name", default=currency, onchange="document.getElementById('update_button').click();") %] -[%- END %] [%- IF show_exchangerate %] [% 'Exchangerate' | $T8 %] @@ -146,7 +140,7 @@ [% 'Transaction description' | $T8 %] - + [%- IF show_delivery_customer %] @@ -231,12 +225,32 @@ [% L.date_tag('reqdate', reqdate, id='reqdate') %] + [%- IF is_sales_ord %] + + [% 'Insert Date' | $T8 %] + [% oe_obj.itime_as_date %] + + [%- END %] [% 'Project Number' | $T8 %] [%- L.select_tag('globalproject_id', ALL_PROJECTS, title_key='projectnumber', default=globalproject_id, with_empty='1', onChange="document.getElementById('update_button').click();") %] +[%- IF type == 'sales_quotation' %] + + [% 'Order probability' | $T8 %] + + [%- L.select_tag('order_probability', ORDER_PROBABILITIES, title='title', default=order_probability) %]% + + + + [% 'Expected billing date' | $T8 %] + + [%- L.date_tag('expected_billing_date', expected_billing_date 'BL') %] + + +[%- END %]