X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6bf344a110af7cc9f8c880ee766cf0de0bf756d1..d735aab3fc2987d555c63ce0dc8e24626ca30654:/templates/webpages/is/form_header.html diff --git a/templates/webpages/is/form_header.html b/templates/webpages/is/form_header.html index 6b25e8a8d..2ccdf5f31 100644 --- a/templates/webpages/is/form_header.html +++ b/templates/webpages/is/form_header.html @@ -3,7 +3,6 @@ [%- USE LxERP %] [%- USE L %] [%- SET follow_up_trans_info = invnumber _ ' (' _ customer_name _ ')' %] -
@@ -20,13 +19,28 @@ +[% saved_message %]
[%- PROCESS 'common/flash.html' %] +[%- INCLUDE 'generic/set_longdescription.html' %] +| @@ -35,8 +49,10 @@ | [% 'Customer' | $T8 %] | [%- INCLUDE 'generic/multibox.html' + id = 'customer', name = 'customer', style = 'width: 250px', + class = 'initial_focus', DATA = ALL_CUSTOMERS, id_sub = 'vc_keys', label_key = 'name', @@ -55,7 +71,7 @@ | ||||
|---|---|---|---|---|---|---|
| [% 'Contact Person' | $T8 %] | - [% L.select_tag('cp_id', L.options_for_select(ALL_CONTACTS, default=cp_id, value='cp_id', title='full_name_dep', with_empty=1), style='width: 250px') %] + [% 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') %] | |||||
| [% 'Shipping Address' | $T8 %] | - [% 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();") %] + [% 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') %] | |||||
| [% LxERP.t8("Dunning status") %] | +
+ [% IF dunning_description %]
+ [% LxERP.t8("This invoice's dunning level: #1", dunning_description) %]
+ [% IF max_dunning_level %] [% END %] + [% END %] + [% IF max_dunning_level %] + + [% LxERP.t8("Customer's current maximum dunning level: #1", max_dunning_level) %] + + [% LxERP.t8("Dunned open amount: #1", LxERP.format_amount(dunning_amount, 2)) %] + + [% END %] + |
+ |||||
| [% 'Max. Dunning Level' | $T8 %]: | +[% LxERP.t8("SEPA exports") %] | - [% max_dunning_level %]; [% 'Dunning Amount' | $T8 %]: [% LxERP.format_amount(dunning_amount,2) %] + [% FOREACH export = invoice_obj.sepa_exports.as_list %] + [% HTML.escape(export.id) %] + [% UNLESS loop.last %], [% END %] + [% END %] | ||||
| [% 'Steuersatz' | $T8 %] | - [% L.select_tag('taxzone_id', L.options_for_select(ALL_TAXZONES, default=taxzone_id, title='description'), disabled=(id ? 1 : 0), style='width: 250px', onchange="document.getElementById('update_button').click();") %] + [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES) , default = taxzone_id, title_key = 'description', disabled = (id ? 1 : 0), style='width: 250px', onchange = "document.getElementById('update_button').click();") %] [%- IF id %] [%- END %] @@ -108,7 +146,7 @@ | |||||
| [% 'Department' | $T8 %] | - [% L.select_tag('department_id', L.options_for_select(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_sub = \department_labels, with_empty = 1, style = 'width:250px') %] | |||||
| [% 'Transaction description' | $T8 %] | -+ | |||||