X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/fc577cb1ed6f46e4779624b97dc87f30abbd8c1c..b293ff8ad52fc76ba0c44783e3982418114d6b08:/templates/webpages/oe/form_header.html diff --git a/templates/webpages/oe/form_header.html b/templates/webpages/oe/form_header.html index 9f1cc1b17..002fa5545 100644 --- a/templates/webpages/oe/form_header.html +++ b/templates/webpages/oe/form_header.html @@ -83,6 +83,17 @@ [% L.button_tag("kivi.SalesPurchase.edit_custom_shipto()", LxERP.t8("Custom shipto")) %] + +[%- IF is_sales && vc_obj.additional_billing_addresses.as_list.size %] + + [% 'Custom Billing Address' | $T8 %] + + [% L.select_tag('billing_address_id', vc_obj.additional_billing_addresses, + with_empty=1, default=billing_address_id, value_key='id', title_key='displayable_id', style='width: 250px') %] + + +[%- END %] + [%- IF is_order %] [% 'Credit Limit' | $T8 %] @@ -110,6 +121,14 @@ [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES), default=taxzone_id, title_key='description', style='width: 250px') %] +[%- IF ALL_LANGUAGES.size %] + + [% 'Language' | $T8 %] + + [% L.select_tag('language_id', ALL_LANGUAGES, default=language_id, title_key = 'description', with_empty=1, style='width:250px') %] + + +[%- END %] [%- IF ALL_DEPARTMENTS.size %] [% 'Department' | $T8 %] @@ -190,12 +209,30 @@ [%- IF is_order %] [% 'Order Number' | $T8 %] - + +[%- IF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %] + [% L.input_tag("ordnumber", ordnumber, size="11") %] +[%- ELSIF id %] + [% HTML.escape(ordnumber) %] + [% L.hidden_tag("ordnumber", ordnumber) %] +[%- ELSE %] + [% LxERP.t8("will be set upon saving") %] +[%- END %] + [%- END %] [% IF is_req_quo %][% 'RFQ Number' | $T8 %][% ELSE %][% 'Quotation Number' | $T8 %][% END %] - + +[%- IF is_order || INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %] + [% L.input_tag("quonumber", quonumber, size="11") %] +[%- ELSIF id %] + [% HTML.escape(quonumber) %] + [% L.hidden_tag("quonumber", quonumber) %] +[%- ELSE %] + [% LxERP.t8("will be set upon saving") %] +[%- END %] + [%- IF is_order %] @@ -217,6 +254,10 @@ [% L.date_tag('transdate', transdate, id='transdate') %] + + [% LxERP.t8('Tax point') %] + [% L.date_tag('tax_point', tax_point, id='tax_point') %] + [%- IF is_sales_quo %]