From: Moritz Bunkus Date: Fri, 2 Oct 2015 07:21:39 +0000 (+0200) Subject: SEPA: Nachrichten-ID-Filter in Zusammenfassung anzeigen X-Git-Tag: release-3.4.1~672 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=1206c3f6c69d774367856daa80d00f3369c62719;p=kivitendo-erp.git SEPA: Nachrichten-ID-Filter in Zusammenfassung anzeigen --- diff --git a/bin/mozilla/sepa.pl b/bin/mozilla/sepa.pl index 1b712a503..2e45511c7 100755 --- a/bin/mozilla/sepa.pl +++ b/bin/mozilla/sepa.pl @@ -256,6 +256,7 @@ sub bank_transfer_list { my @options = (); push @options, ($vc eq 'customer' ? $::locale->text('Customer') : $locale->text('Vendor')) . ' : ' . $form->{f_vc} if ($form->{f_vc}); push @options, $locale->text('Invoice number') . ' : ' . $form->{f_invnumber} if ($form->{f_invnumber}); + push @options, $locale->text('SEPA message ID') . ' : ' . $form->{f_message_id} if (length $form->{f_message_id}); push @options, $locale->text('Export date from') . ' : ' . $form->{f_export_date_from} if ($form->{f_export_date_from}); push @options, $locale->text('Export date to') . ' : ' . $form->{f_export_date_to} if ($form->{f_export_date_to}); push @options, $locale->text('Requested execution date from') . ' : ' . $form->{f_requested_execution_date_from} if ($form->{f_requested_execution_date_from});