X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fis%2Fform_header.html;h=b155850ababf14c22f4890a4e8d3e1b1d6abe5bf;hb=feb6f563968f53e59511578429b1dd61fda52008;hp=97561d15402ac9703a2357c47406295323666150;hpb=4780fc8426841be0838551dea12d8329f32ef65e;p=kivitendo-erp.git diff --git a/templates/webpages/is/form_header.html b/templates/webpages/is/form_header.html index 97561d154..b155850ab 100644 --- a/templates/webpages/is/form_header.html +++ b/templates/webpages/is/form_header.html @@ -1,31 +1,53 @@ [%- USE T8 %] [%- USE HTML %] [%- USE LxERP %] -[%- USE L %] -[%- SET follow_up_trans_info = invnumber _ ' (' _ customer_name _ ')' %] +[%- USE L %][%- USE P -%] +[%- SET follow_up_trans_info = invnumber _ ' (' _ customer_obj.name _ ')' %] - - -
+ [%- FOREACH key = HIDDENS %] - + [%- END %] - - - - + + + + + +

[% title %]

[% saved_message %]

-[%- PROCESS 'common/flash.html' %] +[%- INCLUDE 'common/flash.html' %] +[%- INCLUDE 'generic/set_longdescription.html' %] +
+ + +
[%- IF ALL_CONTACTS.size %] @@ -59,14 +70,27 @@ [%- END %] -[%- IF ALL_SHIPTO.size %] + + +[%- IF customer_obj.additional_billing_addresses.as_list.size %] + + + [%- END %] + -[%- IF max_dunning_level %] +[%- IF max_dunning_level || dunning_description %] - + + + +[%- END %] +[%- IF invoice_obj.sepa_exports.as_list.size %] + + [%- END %] @@ -98,17 +143,25 @@ -[%- IF all_departments %] +[%- IF ALL_LANGUAGES %] + + + + +[%- END %] +[%- IF ALL_DEPARTMENTS %] [%- END %] @@ -122,6 +175,8 @@ [%- IF show_exchangerate %] @@ -129,7 +184,7 @@ - +
@@ -33,22 +55,11 @@
[% 'Customer' | $T8 %] - [%- INCLUDE 'generic/multibox.html' - id = 'customer', - name = 'customer', - style = 'width: 250px', - DATA = ALL_CUSTOMERS, - id_sub = 'vc_keys', - label_key = 'name', - select = vc_select, - limit = vclimit, - allow_textbox = 1, - onChange = "document.getElementById('update_button').click();" -%] - - - - - + [% P.customer_vendor.picker("customer_id", customer_id, type="customer", style="width: 250px", class="initial_focus", onchange="\$('#update_button').click()") %] + [% L.button_tag("show_vc_details('customer')", LxERP.t8('Details (one letter abbreviation)')) %] + [% P.link_tag('controller.pl?action=CustomerVendor/edit&db=customer&id=' _ customer_id, LxERP.t8('Edit'), target="_blank", title=LxERP.t8('Open in new window')) %] + [% L.hidden_tag("previous_customer_id", customer_id) %] + [% L.hidden_tag("customer_pricegroup_id", customer_pricegroup_id) %]
[% '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();") %] + [%- IF ALL_SHIPTO.size %] + [% 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 %] + [% L.button_tag("kivi.SalesPurchase.edit_custom_shipto()", LxERP.t8("Custom shipto")) %] +
[% 'Custom Billing Address' | $T8 %] + [% L.select_tag('billing_address_id', customer_obj.additional_billing_addresses, + with_empty=1, default=billing_address_id, value_key='id', title_key='displayable_id', style='width: 250px') %]
[% 'Credit Limit' | $T8 %] @@ -74,11 +98,32 @@ [% LxERP.format_amount(creditremaining,0 ,'0') %]
[% 'Max. Dunning Level' | $T8 %]:[% 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 %] +
[% 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', ALL_TAXZONES, default = taxzone_id, title_key = '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 %]
[% 'Language' | $T8 %] + [% L.select_tag('language_id', ALL_LANGUAGES, default = language_id, title_key = 'description', with_empty = 1, style = 'width:250px') %] +
[% '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') %]
+ +
[% 'Exchangerate' | $T8 %] [%- IF forex %] - [% LxERP.format_amount(exchangerate, 2) %] + [% LxERP.format_amount(exchangerate, 5) %] [%- ELSE %] [%- END %] @@ -146,7 +201,7 @@
[% 'Transaction description' | $T8 %][% L.input_tag("transaction_description", transaction_description, size=35, "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %]
@@ -170,57 +225,84 @@ [%- IF is_type_credit_note %] [% 'Credit Note Number' | $T8 %] - + +[%- IF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %] + [% L.input_tag("invnumber", invnumber, size="11") %] +[%- ELSIF id %] + [% L.hidden_tag("invnumber", invnumber) %] + [% HTML.escape(invnumber) %] +[%- ELSE %] + [% LxERP.t8("will be set upon posting") %] +[%- END %] + [% 'Invoice Number' | $T8 %] - + [% 'Credit Note Date' | $T8 %] - [% L.date_tag('invdate', invdate, cal_align='BL', onchange='set_duedate()') %] + [% L.date_tag('invdate', invdate, onchange='kivi.SalesPurchase.set_duedate_on_reference_date_change("invdate")') %] [%- ELSE %] [% 'Invoice Number' | $T8 %] - + +[%- IF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %] + [% L.input_tag("invnumber", invnumber, size="11") %] +[%- ELSIF id %] + [% L.hidden_tag("invnumber", invnumber) %] + [% HTML.escape(invnumber) %] +[%- ELSE %] + [% LxERP.t8("will be set upon posting") %] +[%- END %] + [% 'Invoice Date' | $T8 %] - [% L.date_tag('invdate', invdate, cal_align='BL', onchange='set_duedate()') %] + [% L.date_tag('invdate', invdate, onchange='kivi.SalesPurchase.set_duedate_on_reference_date_change("invdate")') %] [% 'Due Date' | $T8 %] - [% L.date_tag('duedate', duedate, cal_align='BL') %] + + + + + +[%- END %] + + [% LxERP.t8('Tax point') %] + [% L.date_tag('tax_point', tax_point, id='tax_point') %] +[%- IF !is_type_credit_note %] - [% 'Delivery Order Number' | $T8 %] - + [% 'Delivery Order Number' | $T8 %] + [%- END %] [% 'Delivery Date' | $T8 %] - [% L.date_tag('deliverydate', deliverydate, cal_align='BL') %] + [% L.date_tag('deliverydate', deliverydate) %] [% 'Order Number' | $T8 %] - + [% 'Order Date' | $T8 %] - [% L.date_tag('orddate', orddate, cal_align='BL') %] + [% L.date_tag('orddate', orddate) %] [% 'Quotation Number' | $T8 %] - + [% 'Quotation Date' | $T8 %] - [% L.date_tag('quodate', quodate, cal_align='BL') %] + [% L.date_tag('quodate', quodate) %] [% 'Customer Order Number' | $T8 %] - + [% 'Project Number' | $T8 %] @@ -247,25 +329,19 @@ [% IF resubmit && is_format_html %] window.open('about:blank','Beleg'); document.invoice.target = 'Beleg'; - document.invoice.submit(); + kivi.SalesPurchase.show_print_dialog(); + kivi.SalesPurchase.print_record(); [% ELSIF resubmit %] - document.invoice.submit(); + if ($('#already_printed_flag').val() === "0") { + kivi.SalesPurchase.show_print_dialog(); + kivi.SalesPurchase.print_record(); + $('#already_printed_flag').val("1"); + } [% ELSIF creditwarning != '' %] alert('[% 'Credit Limit exceeded!!!' | $T8 %]'); [% ELSE %] [% END %] }); - function set_duedate() { - $.ajax({ - url: 'is.pl?action=set_duedate', - data: { - invdate: $('#invdate').val(), - payment_id: $('#payment_id').val(), - }, - dataType: 'text', - success: function (data) { $('#duedate').val(data); } - }) - } //-->