Kontoauszug verbuchen - Beschriftung verbessert.
authorG. Richardson <information@kivitendo-premium.de>
Wed, 20 Jul 2016 09:04:16 +0000 (11:04 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Fri, 22 Jul 2016 08:13:41 +0000 (10:13 +0200)
Übernommene Vorschläge zeigen die Rechnungsnummer und den offenen Betrag
der Rechnung an, die Beschriftung lautet nun auch "offener Betrag".

SL/Controller/BankTransaction.pm
templates/webpages/bank_transactions/invoices.html

index cb964f4..50c1519 100644 (file)
@@ -229,7 +229,7 @@ sub action_ajax_payment_suggestion {
   $html .= SL::Presenter->input_tag('invoice_ids.' . $::form->{bt_id} . '[]', $::form->{prop_id} , type => 'hidden');
   # 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->escape(t8('Open 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;
index aba030c..dfa1b6f 100644 (file)
@@ -5,7 +5,7 @@
   <div id="[% bt_id %].[% invoice.id %]">
     [% L.hidden_tag('invoice_ids.' _ bt_id _'[]', invoice.id) %]
     [% 'Invno.' | $T8 %]: [% invoice.invnumber %]
-    [% 'Amount' | $T8 %]: [% LxERP.format_amount(invoice.open_amount, 2) %]
+    [% 'Open amount' | $T8 %]: [% LxERP.format_amount(invoice.open_amount, 2) %]
     <a href=# onclick="delete_invoice([% bt_id %], [% invoice.id %])">x</a>
   </div>
 [% END %]