X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fis%2Fform_header.html;h=77133a805603af721c93a146819d4439e6f42c3c;hb=fc1ff1a03f56176d1e84bc0345443f561426a4a7;hp=a6c21975bbcbdd3103475bdbe3fa25f288061741;hpb=4856da7e20f5dba5c1ecca440869de3f6bb0a70a;p=kivitendo-erp.git diff --git a/templates/webpages/is/form_header.html b/templates/webpages/is/form_header.html index a6c21975b..77133a805 100644 --- a/templates/webpages/is/form_header.html +++ b/templates/webpages/is/form_header.html @@ -1,6 +1,7 @@ [%- USE T8 %] [%- USE HTML %] [%- USE LxERP %] +[%- USE L %] [%- SET follow_up_trans_info = invnumber _ ' (' _ customer_name _ ')' %] @@ -20,13 +21,11 @@ - -

[% title %]

[% saved_message %]

-[%- INCLUDE 'common/flash.html' %] +[%- PROCESS 'common/flash.html' %] @@ -56,13 +55,7 @@ [%- END %] @@ -70,14 +63,7 @@ [%- END %] @@ -110,13 +96,7 @@ [%- IF id %] @@ -126,13 +106,7 @@ [%- END %] @@ -175,23 +149,14 @@ [%- IF ALL_SALESMEN.size %] [%- END %] @@ -201,12 +166,13 @@ + + + + - + [%- ELSE %] @@ -215,17 +181,11 @@ - + - + @@ -233,10 +193,7 @@ - + [%- END %] @@ -246,8 +203,7 @@ - + @@ -255,8 +211,7 @@ - + @@ -265,13 +220,7 @@
[% 'Contact Person' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'cp_id', - style = 'width: 250px', - DATA = ALL_CONTACTS, - id_key = 'cp_id', - label_sub = 'contact_labels', - show_empty = 1 -%] + [% L.select_tag('cp_id', L.options_for_select(ALL_CONTACTS, default=cp_id, value='cp_id', title_sub=\contact_labels, with_empty=1), style='width: 250px') %]
[% 'Shipping Address' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'shipto_id', - style = 'width: 250px', - DATA = ALL_SHIPTO, - id_key = 'shipto_id', - label_sub = 'shipto_labels', - show_empty = 1, - onChange = "document.getElementById('update_button').click();" -%] + [% L.select_tag('shipto_id', L.options_for_select(ALL_SHIPTO, default=shipto_id, value='shipto_id', title_sub=\shipto_labels, with_empty=1), style='width: 250px', onChange="document.getElementById('update_button').click();") %]
[% 'Steuersatz' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'taxzone_id' - stype = '250px' - DATA = ALL_TAXZONES - id_key = 'id' - readonly = (id ? 1 : 0) - label_key = 'description' -%] + [% L.select_tag('taxzone_id', L.options_for_select(ALL_TAXZONES, default=taxzone_id, title='description'), readonly=(id ? 1 : 0), style='width: 250px') %]
[% 'Department' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'department_id', - style = 'width: 250px', - DATA = all_departments, - id_key = 'id', - label_sub = 'department_labels', - show_empty = 1 -%] + [% L.select_tag('department_id', L.options_for_select(all_departments, default=department_id, title_sub=\department_labels, with_empty=1), style='width:250px') %]
[% 'Employee' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'employee_id', - DATA = ALL_EMPLOYEES, - id_key = 'id', - label_sub = 'sales_employee_labels' -%] + [% L.select_tag('employee_id', L.options_for_select(ALL_EMPLOYEES, default=employee_id, title_sub=\sales_employee_labels)) %]
[% 'Salesman' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'salesman_id', - default = salesman_id ? salesman_id : employee_id, - DATA = ALL_SALESMEN, - id_key = 'id', - label_sub = 'sales_employee_labels' -%] + [% L.select_tag('salesman_id', L.options_for_select(ALL_SALESMEN, default=(salesman_id ? salesman_id : employee_id), title_sub=\sales_employee_labels)) %]
[% 'Credit Note Number' | $T8 %]
[% 'Invoice Number' | $T8 %]
[% 'Credit Note Date' | $T8 %] - - - [% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL', onChange='set_duedate()') %]
[% 'Invoice Date' | $T8 %] - - - [% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL', onChange='set_duedate()') %]
[% 'Due Date' | $T8 %] - - - [% L.date_tag('duedate', duedate, onBlur='check_right_date_format(this)', cal_align='BL') %]
[% 'Delivery Order Number' | $T8 %]
[% 'Delivery Date' | $T8 %] - - - [% L.date_tag('deliverydate', deliverydate, onBlur='check_right_date_format(this)', cal_align='BL') %]
[% 'Order Date' | $T8 %] - [% L.date_tag('orddate', orddate, onBlur='check_right_date_format(this)', cal_align='BL') %]
[% 'Quotation Number' | $T8 %]
[% 'Quotation Date' | $T8 %] - [% L.date_tag('quodate', quodate, onBlur='check_right_date_format(this)', cal_align='BL') %]
[% 'Customer Order Number' | $T8 %]
[% 'Project Number' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - name = 'globalproject_id', - DATA = ALL_PROJECTS, - id_key = 'id', - label_key = 'projectnumber', - show_empty = 1, - onChange = "document.getElementById('update_button').click();" -%] + [%- L.select_tag('globalproject_id', L.options_for_select(ALL_PROJECTS, title='projectnumber', default=globalproject_id, with_empty='1'), onChange="document.getElementById('update_button').click();") %]
@@ -289,13 +238,6 @@