From 1206c3f6c69d774367856daa80d00f3369c62719 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 2 Oct 2015 09:21:39 +0200 Subject: [PATCH] SEPA: Nachrichten-ID-Filter in Zusammenfassung anzeigen --- bin/mozilla/sepa.pl | 1 + 1 file changed, 1 insertion(+) 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}); -- 2.20.1