X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Foe%2Fform_header.html;h=497be459fe1f76b95452d7ea92af3717af6d2e7e;hb=b592435b709841b65441d5fef5c41e3ad2c91413;hp=c68d6c9653a00db35325d0ed6c6103f0b5c1794e;hpb=648c1ad77f5c9c512b89783e8c8af13b29280c63;p=kivitendo-erp.git diff --git a/templates/webpages/oe/form_header.html b/templates/webpages/oe/form_header.html index c68d6c965..497be459f 100644 --- a/templates/webpages/oe/form_header.html +++ b/templates/webpages/oe/form_header.html @@ -24,19 +24,20 @@ +

[% title %]

[%- INCLUDE 'common/flash.html' %] [%- INCLUDE 'generic/set_longdescription.html' %] -
+
@@ -79,7 +80,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,14 +109,14 @@ [% '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 %] @@ -146,7 +148,7 @@ [% 'Transaction description' | $T8 %] - + [%- IF show_delivery_customer %] @@ -231,12 +233,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 %]