From 9ea3230225c9c020e6dc8d7d6bc66dd35c598521 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 21 Mar 2017 13:29:16 +0100 Subject: [PATCH] =?utf8?q?Rechnungssuchen=20Einkauf/Verkauf:=20Seitentitel?= =?utf8?q?=20an=20Men=C3=BCtitel=20anpassen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Damit wird klarer, dass nicht nur nach Debitorenbuchungen gesucht wird, sondern auch Verkaufsrechnungen und Gutschriften. --- bin/mozilla/ap.pl | 4 ++-- bin/mozilla/ar.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/mozilla/ap.pl b/bin/mozilla/ap.pl index 3599cbada..aad1fcaee 100644 --- a/bin/mozilla/ap.pl +++ b/bin/mozilla/ap.pl @@ -905,7 +905,7 @@ sub search { my %myconfig = %main::myconfig; my $locale = $main::locale; - $form->{title} = $locale->text('AP Transactions'); + $form->{title} = $locale->text('Vendor Invoices & AP Transactions'); $form->get_lists(projects => { "key" => "ALL_PROJECTS", "all" => 1 }); @@ -957,7 +957,7 @@ sub ap_transactions { AP->ap_transactions(\%myconfig, \%$form); - $form->{title} = $locale->text('AP Transactions'); + $form->{title} = $locale->text('Vendor Invoices & AP Transactions'); my $report = SL::ReportGenerator->new(\%myconfig, $form); diff --git a/bin/mozilla/ar.pl b/bin/mozilla/ar.pl index 408eb4ef4..ec9ea951d 100644 --- a/bin/mozilla/ar.pl +++ b/bin/mozilla/ar.pl @@ -913,7 +913,7 @@ sub search { my $locale = $main::locale; my $cgi = $::request->{cgi}; - $form->{title} = $locale->text('AR Transactions'); + $form->{title} = $locale->text('Invoices, Credit Notes & AR Transactions'); $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]); $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted; @@ -974,7 +974,7 @@ sub ar_transactions { AR->ar_transactions(\%myconfig, \%$form); - $form->{title} = $locale->text('AR Transactions'); + $form->{title} = $locale->text('Invoices, Credit Notes & AR Transactions'); my $report = SL::ReportGenerator->new(\%myconfig, $form); -- 2.20.1