From 02411506bf141edeb1da54d260f7e23f92393f36 Mon Sep 17 00:00:00 2001
From: Philip Reetz
Date: Mon, 18 May 2009 18:59:17 +0000
Subject: [PATCH] Ausrichtung der Textspalten im Buchungsjournal geaendert, Fix
fuer Bug #994
---
bin/mozilla/gl.pl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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);
--
2.20.1