Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 9ea32302

Von Moritz Bunkus vor etwa 8 Jahren hinzugefügt

Rechnungssuchen Einkauf/Verkauf: Seitentitel an Menütitel anpassen

Damit wird klarer, dass nicht nur nach Debitorenbuchungen gesucht
wird, sondern auch Verkaufsrechnungen und Gutschriften.

Unterschiede anzeigen:

bin/mozilla/ap.pl
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 });
......
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);
bin/mozilla/ar.pl
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;
......
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);

Auch abrufbar als: Unified diff