From: Moritz Bunkus Date: Tue, 21 Mar 2017 12:29:16 +0000 (+0100) Subject: Rechnungssuchen Einkauf/Verkauf: Seitentitel an MenĂ¼titel anpassen X-Git-Tag: release-3.5.4~1193 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=9ea3230225c9c020e6dc8d7d6bc66dd35c598521;p=kivitendo-erp.git Rechnungssuchen Einkauf/Verkauf: Seitentitel an MenĂ¼titel anpassen Damit wird klarer, dass nicht nur nach Debitorenbuchungen gesucht wird, sondern auch Verkaufsrechnungen und Gutschriften. --- 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);