From: Philip Reetz
Date: Mon, 18 May 2009 18:59:17 +0000 (+0000)
Subject: Ausrichtung der Textspalten im Buchungsjournal geaendert, Fix fuer Bug #994
X-Git-Tag: release-2.6.0rc1~27
X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=02411506bf141edeb1da54d260f7e23f92393f36;p=kivitendo-erp.git
Ausrichtung der Textspalten im Buchungsjournal geaendert, Fix fuer Bug #994
---
diff --git a/bin/mozilla/gl.pl b/bin/mozilla/gl.pl
index 0bb5274ec..7516cf8d1 100644
--- a/bin/mozilla/gl.pl
+++ b/bin/mozilla/gl.pl
@@ -511,7 +511,8 @@ sub generate_report {
my %column_alignment;
map { $column_alignment{$_} = 'right' } qw(balance id debit credit debit_tax credit_tax balance);
- map { $column_alignment{$_} = 'center' } qw(transdate reference description source notes debit_accno credit_accno debit_tax_accno credit_tax_accno);
+ map { $column_alignment{$_} = 'center' } qw(reference debit_accno credit_accno debit_tax_accno credit_tax_accno);
+ map { $column_alignment{$_} = 'left' } qw(description source notes);
map { $column_defs{$_}->{align} = $column_alignment{$_} } keys %column_alignment;
my $report = SL::ReportGenerator->new(\%myconfig, $form);