X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fbank_transactions%2F_payment_suggestion.html;h=ebc252b093ee9abbc1b26bd8f45abf1177374cc1;hb=d58b1a04c2facd0a4484cf2b801b27b9741cce26;hp=aba38af61aa3ce18a9ec8f74d3624181beecbe5a;hpb=07ff196fa5510308b3daa45681574abf23b919ca;p=kivitendo-erp.git diff --git a/templates/webpages/bank_transactions/_payment_suggestion.html b/templates/webpages/bank_transactions/_payment_suggestion.html index aba38af61..ebc252b09 100644 --- a/templates/webpages/bank_transactions/_payment_suggestion.html +++ b/templates/webpages/bank_transactions/_payment_suggestion.html @@ -1,10 +1,16 @@ [%- USE P -%][%- USE HTML -%][%- USE LxERP -%] - - [% P.hidden_tag("invoice_ids." _ bt_id _ "[]", prop_id) %] - [% LxERP.t8("Invno.") %]: [% HTML.escape(invoice.invnumber) %] - [% LxERP.t8("Open amount") %]: [% LxERP.format_amount(invoice.open_amount, 2) %] - [% IF SELECT_OPTIONS.size %] - [% P.select_tag("invoice_skontos." _ bt_id _ "[]", SELECT_OPTIONS, value_key="payment_type", title_key="display") %] - [% END %] - [% P.link_tag("#", "x", onclick="kivi.BankTransaction.delete_invoice(" _ bt_id _ "," _ prop_id _ ")") %] +[% SELECT_OPTIONS = invoice.get_payment_select_options_for_bank_transaction(bt_id) %] +[% is_skonto_pt = SELECT_OPTIONS.1.selected %] +[% formatted_skonto_amount = LxERP.format_amount(invoice.skonto_amount, 2) %] +[% formatted_skonto_amount_selected = is_skonto_pt ? formatted_skonto_amount : LxERP.format_amount(0, 2) %] + + [% P.hidden_tag("invoice_ids." _ bt_id _ "[]", invoice.id) %] + [% P.hidden_tag("skonto_pt." _ bt_id _ "." _ invoice.id _ "", is_skonto_pt) %] + [% LxERP.t8("Invno.") %]: [% HTML.escape(invoice.invnumber) %]
+ [% LxERP.t8("Open amount") %]: [% LxERP.format_amount(invoice.open_amount, 2) %]
+ [% P.select_tag("invoice_skontos." _ bt_id _ "[]", SELECT_OPTIONS, value_key="payment_type", title_key="display", onChange="kivi.BankTransaction.update_skonto(this, " _ bt_id _ ", " _ invoice.id _ ", '$formatted_skonto_amount')" ) %]
+ [% LxERP.t8("Skonto amount") %]: [% P.input_tag("free_skonto_amount." _ bt_id _ "." _ invoice.id _ "", "$formatted_skonto_amount_selected", default=0, style=style, disabled=1, size=4, class='numeric', onblur="kivi.BankTransaction.update_invoice_amount(" _ bt_id _ ", 0, this)") %] + [% P.link_tag("#", "x", onclick="kivi.BankTransaction.delete_invoice(" _ bt_id _ "," _ invoice.id _ ")") %]