X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fgl.pl;h=50f209e5b44847af10a749a8e6a3a88df245dfd0;hb=b5c3b69626032bd48dfdce13d9795acf2eff89fd;hp=b8c2881184167d39bb1ac5ce0cae55f50917723b;hpb=4000272e5ea3a605f3625934f07033472832de49;p=kivitendo-erp.git diff --git a/bin/mozilla/gl.pl b/bin/mozilla/gl.pl index b8c288118..50f209e5b 100644 --- a/bin/mozilla/gl.pl +++ b/bin/mozilla/gl.pl @@ -349,7 +349,7 @@ sub search { $employeenumber - | . $locale->text('Date Sorting') . qq| + | . $locale->text('Filter date by') . qq|  | . $locale->text('Booking Date') . qq|  | . $locale->text('Invoice Date') . qq| @@ -511,7 +511,7 @@ sub generate_report { gldate transdate id reference description notes source debit debit_accno credit credit_accno debit_tax debit_tax_accno - credit_tax credit_tax_accno projectnumbers balance + credit_tax credit_tax_accno projectnumbers balance employee ); # add employee here, so that variable is still known and passed in url when choosing a different sort order in resulting table @@ -658,9 +658,9 @@ sub generate_report { $row->{balance}->{data} = $data; $row->{projectnumbers}->{data} = join ", ", sort { lc($a) cmp lc($b) } keys %{ $ref->{projectnumbers} }; - map { $row->{$_}->{data} = $ref->{$_} } qw(id reference description notes); + map { $row->{$_}->{data} = $ref->{$_} } qw(id reference description notes gldate employee); - map { $row->{$_}->{data} = \@{ $rows{$_} }; } qw(transdate gldate debit credit debit_accno credit_accno debit_tax_accno credit_tax_accno source); + map { $row->{$_}->{data} = \@{ $rows{$_} }; } qw(transdate debit credit debit_accno credit_accno debit_tax_accno credit_tax_accno source); foreach my $col (qw(debit_accno credit_accno debit_tax_accno credit_tax_accno)) { $row->{$col}->{link} = [ map { "${callback}&accno=" . E($_) } @{ $rows{$col} } ];