From: Jan Büren Date: Mon, 13 Jun 2016 14:39:51 +0000 (+0200) Subject: BankTransactions GUI Hotfix Verbesserung X-Git-Tag: release-3.4.1~58 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=2a6cee7b9fa119e928c75bc2f73ac2290a21c11b;p=kivitendo-erp.git BankTransactions GUI Hotfix Verbesserung Wenn man über die Liste aller Rechnung jetzt auch den zu verbuchenden Betrag als Hilfestellung angezeigt bekommt, muss dieser entsprechend konsequent auch bei dem einfachen AJAX-Anklicken angezeigt werden. --- diff --git a/SL/Controller/BankTransaction.pm b/SL/Controller/BankTransaction.pm index 7a944e687..0d609959d 100644 --- a/SL/Controller/BankTransaction.pm +++ b/SL/Controller/BankTransaction.pm @@ -226,7 +226,9 @@ sub action_ajax_payment_suggestion { my $html; $html .= SL::Presenter->input_tag('invoice_ids.' . $::form->{bt_id} . '[]', $::form->{prop_id} , type => 'hidden'); - $html .= SL::Presenter->escape( $invoice->invnumber ); + # better in template code - but how to ajax this + $html .= SL::Presenter->escape(t8('Invno.') . ': ' . $invoice->invnumber . ' '); + $html .= SL::Presenter->escape(t8('Amount') . ': ' . $::form->format_amount(\%::myconfig, $invoice->open_amount, 2) . ' '); $html .= SL::Presenter->select_tag('invoice_skontos.' . $::form->{bt_id} . '[]', \@select_options, value_key => 'payment_type', title_key => 'display' ) if @select_options;