X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/0448fc15357e20ffb74e08f2a8459820494a6eef..464f44a:/templates/webpages/ir/form_header.html diff --git a/templates/webpages/ir/form_header.html b/templates/webpages/ir/form_header.html index c42139ea0..362bd8957 100644 --- a/templates/webpages/ir/form_header.html +++ b/templates/webpages/ir/form_header.html @@ -2,6 +2,8 @@ [%- USE HTML %] [%- USE LxERP %] [%- USE L %] +

[% title %]

+ [%- SET follow_up_trans_info = invnumber _ ' (' _ vendor_name _ ')' %] @@ -21,12 +23,10 @@ -

[% title %]

- [%- INCLUDE 'common/flash.html' %] [%- INCLUDE 'generic/set_longdescription.html' %] -
+
@@ -79,6 +80,12 @@ [% LxERP.format_amount(creditremaining,0 ,'0') %] +[%- IF business %] + + [% 'Vendor type' | $T8 %] + [% business %]; [% 'Trade Discount' | $T8 %] [% LxERP.format_amount(tradediscount * 100) %] % + +[%- END %] [% 'Record in' | $T8 %] @@ -212,16 +219,18 @@ [% END %] }); function set_duedate() { - $.ajax({ - url: 'ir.pl?action=get_duedate_vendor', - data: { - invdate: $('#invdate').val(), - vendor_id: $('input[name="vendor_id"]').val(), - old_duedate: $('#duedate').val(), - }, - dataType: 'text', - success: function (data) { $('#duedate').val(data); } - }) + setTimeout(function() { + $.ajax({ + url: 'ir.pl?action=get_duedate_vendor', + data: { + invdate: $('#invdate').val(), + vendor_id: $('input[name="vendor_id"]').val(), + old_duedate: $('#duedate').val(), + }, + dataType: 'text', + success: function (data) { $('#duedate').val(data); } + }) + }, 0); } //-->