X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fir%2Fform_header.html;h=362bd89576a85b0d10d8690f29192e75b41bd636;hb=332980848d088adfe7e1cd025c23452325134207;hp=6f6bf238dfc45a86b4236861610a3ecc4667c0f7;hpb=18b1b18015503fb46e8e1201f79e968f097f66e0;p=kivitendo-erp.git diff --git a/templates/webpages/ir/form_header.html b/templates/webpages/ir/form_header.html index 6f6bf238d..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,18 +23,18 @@ -

[% title %]

- [%- INCLUDE 'common/flash.html' %] +[%- INCLUDE 'generic/set_longdescription.html' %] -
+
@@ -48,6 +50,7 @@ id = 'vendor', name = 'vendor', style = 'width: 250px', + class = 'initial_focus', DATA = ALL_VENDORS, id_sub = 'vc_keys', label_key = 'name', @@ -77,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 %] @@ -147,7 +156,7 @@ [% 'Credit Note Date' | $T8 %] - [% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL', onChange='set_duedate(this)') %] + [% L.date_tag('invdate', invdate, onChange='set_duedate(this)') %] [%- ELSE %] @@ -156,11 +165,11 @@ [% 'Invoice Date' | $T8 %] - [% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL', onChange='set_duedate(this)') %] + [% L.date_tag('invdate', invdate, onChange='set_duedate(this)') %] [% 'Due Date' | $T8 %] - [% L.date_tag('duedate', duedate, onBlur='check_right_date_format(this)', cal_align='BL') %] + [% L.date_tag('duedate', duedate) %] [%- END %] @@ -170,11 +179,11 @@ [% 'Order Date' | $T8 %] - [% L.date_tag('orddate', orddate, onBlur='check_right_date_format(this)', cal_align='BL') %] + [% L.date_tag('orddate', orddate) %] [% 'Quotation Date' | $T8 %] - [% L.date_tag('quodate', quodate, onBlur='check_right_date_format(this)', cal_align='BL') %] + [% L.date_tag('quodate', quodate) %] [% 'Project Number' | $T8 %] @@ -210,18 +219,19 @@ [% 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); } //--> - - +