X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3286128e8253b38ae4e996b327beaf243661a5ef..de8868c:/bin/mozilla/gl.pl
diff --git a/bin/mozilla/gl.pl b/bin/mozilla/gl.pl
index 6d2b0a559..6ef1ca3e3 100644
--- a/bin/mozilla/gl.pl
+++ b/bin/mozilla/gl.pl
@@ -218,7 +218,7 @@ sub search {
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
- my $cgi = $main::cgi;
+ my $cgi = $::request->{cgi};
$form->{title} = $locale->text('Journal');
@@ -342,14 +342,12 @@ sub search {
| . $locale->text('Project Number') . qq| |
$projectnumber |
-
- | | . $locale->text('From') . qq| |
| | . $locale->text('Employee') . qq| |
$employeenumber |
- | | . $locale->text('Date Sorting') . qq| |
+ | . $locale->text('Filter date by') . qq| |
| . $locale->text('Booking Date') . qq|
| . $locale->text('Invoice Date') . qq|
@@ -509,7 +507,7 @@ sub generate_report {
my @columns = qw(
gldate transdate id reference description
- notes source debit debit_accno
+ notes source debit debit_accno
credit credit_accno debit_tax debit_tax_accno
credit_tax credit_tax_accno projectnumbers balance employee
);
@@ -863,7 +861,7 @@ sub display_rows {
my $form = $main::form;
my %myconfig = %main::myconfig;
- my $cgi = $main::cgi;
+ my $cgi = $::request->{cgi};
$form->{debit_1} = 0 if !$form->{"debit_1"};
$form->{totaldebit} = 0;
@@ -1349,7 +1347,7 @@ sub form_footer {
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
- my $cgi = $main::cgi;
+ my $cgi = $::request->{cgi};
my $follow_ups_block;
if ($form->{id}) {
|